@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  --bg-color: #0b1120;
  --card-bg: rgba(30, 41, 59, 0.6);
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --primary: #3b82f6; 
  --primary-hover: #2563eb;
  --accent-teal: #14b8a6;
  --accent-purple: #8b5cf6;
  --border-color: rgba(255, 255, 255, 0.1);
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #fff;
}

/* Background glow effects */
.glow-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15), rgba(59, 130, 246, 0.1) 40%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  border-radius: 50%;
}
.glow-right { top: -10%; right: -10%; }
.glow-left { bottom: 10%; left: -20%; background: radial-gradient(circle, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1) 40%, transparent 70%); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Header */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 20px 0;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
}
header.scrolled {
  background: rgba(11, 17, 32, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-text { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 38px; filter: brightness(0) invert(1); }
.logo-icon { width: 32px; height: 32px; fill: var(--primary); }
.hero-logo-badge, .section-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}
.hero-logo-badge .hero-logo, .section-logo-badge .section-logo {
  height: 34px;
  filter: none;
}
.hero-logo-badge span, .section-logo-badge span {
  color: #091a2a;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--primary);
}
.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* Base Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  padding: 100px 0;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}
.hero-content {
  flex: 1;
  padding-right: 50px;
  animation: slideRight 1s ease forwards;
}
.hero p.tagline {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 20px;
  display: flex; align-items:center; gap: 10px;
}
.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 30px;
}
.hero-image {
  flex: 1;
  animation: slideLeft 1s ease forwards;
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

/* Ticker Server Stats */
.ticker-container {
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  padding: 20px 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.ticker-track {
  display: inline-flex;
  gap: 20px;
  animation: scroll-left 35s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.stat-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 25px;
  min-width: 280px;
  display: flex; flex-direction: column; gap: 15px;
  transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.stat-header { display: flex; align-items: center; gap: 15px; }
.stat-icon { width: 45px; height: 45px; background: rgba(59, 130, 246, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; }
.stat-info { display: flex; flex-direction: column; }
.stat-title { font-weight: 600; font-size: 1rem; color: #fff;}
.stat-sub { font-size: 0.8rem; color: var(--text-muted); }
.stat-values { display: flex; justify-content: space-between; align-items: flex-end;}
.stat-main-val { font-size: 1.5rem; font-weight: 700; color: #fff; font-family: 'Outfit';}
.stat-diff { font-size: 0.85rem; color: #10b981; } 

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Work / Capabilities Section */
.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.work-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.feature-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}
.feature-item p { font-size: 1.2rem; color: var(--text-muted); font-weight: 500;}
.work-image img { width: 100%; border-radius: 20px; }

/* Timeline Section */
.timeline-section {
  text-align: center;
}
.timeline-section > h2 { max-width: 800px; margin: 0 auto 60px; font-size: 2.5rem;}
.timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex; justify-content: center;
}
.timeline-img {
  width: 100%; max-width: 800px; border-radius: 20px;
}
.timeline-points {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.point {
  position: absolute;
  display: flex; align-items: center; gap: 20px;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  text-align: left;
}
.point-icon { font-size: 1.5rem; color: var(--primary); }
.point-1 { top: 10%; left: -5%; }
.point-2 { top: 35%; right: -5%; flex-direction: row-reverse; text-align: right;}
.point-3 { bottom: 35%; left: -5%; }
.point-4 { bottom: 10%; right: -5%; flex-direction: row-reverse; text-align: right;}
.point h5 { margin-bottom: 5px; font-size: 1.2rem; color: var(--text-main);}
.point p { font-size: 0.9rem; color: var(--text-muted); margin:0;}

/* Upgrade Section */
.upgrade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.upgrade-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px;}
.upgrade-list div { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size:1.1rem; }
.upgrade-list i { color: var(--primary); font-size: 1.2rem;}

/* Carousel Section */
.carousel-section {
  padding: 20px 0 40px;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll-marquee 30s linear infinite;
}
.carousel-section:hover .carousel-track {
  animation-play-state: paused;
}
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.carousel-card {
  width: 220px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.carousel-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}
.carousel-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.15), rgba(20, 184, 166, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}
.carousel-card h4 {
  font-size: 0.95rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.carousel-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
@media(max-width: 600px) {
  .carousel-card { width: 180px; padding: 16px 14px; }
  .carousel-section { padding: 15px 0 30px; }
}

.partners-section {
  padding: 60px 0 40px;
}
.partners-section .section-header h2 {
  color: #fff;
}
.partners-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  display: grid;
  gap: 16px;
}
.partners-track {
  display: flex;
  gap: 14px;
  width: max-content;
}
.partners-track.top {
  animation: partners-scroll 36s linear infinite;
}
.partners-track.bottom {
  animation: partners-scroll 28s linear infinite reverse;
}
.partners-section:hover .partners-track {
  animation-play-state: paused;
}
.partner-card {
  min-width: 180px;
  height: 130px;
  flex-shrink: 0;
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}
.partner-card.partner-small {
  min-width: 160px;
  height: 120px;
}
.partner-card img {
  width: 78%;
  height: 54px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}
.partner-card:hover img {
  transform: scale(1.04);
}
@keyframes partners-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media(max-width: 900px) {
  .partner-card { min-width: 150px; height: 110px; }
  .partner-card.partner-small { min-width: 140px; height: 100px; }
}
@media(max-width: 600px) {
  .partners-section { padding: 40px 0; }
  .partner-card { min-width: 135px; height: 95px; }
  .partner-card.partner-small { min-width: 120px; height: 88px; }
  .partners-track { gap: 10px; }
}

/* About Section */
.about-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-color) 0%, #0f172a 100%);
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: 20px;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 25% 30%, rgba(59, 130, 246, 0.1), transparent 30%),
                    radial-gradient(circle at 75% 70%, rgba(20, 184, 166, 0.1), transparent 30%);
  opacity: 0.5;
}
.text-center { text-align: center; position: relative; z-index: 2; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.about-card {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(15px);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.about-card:hover::before { opacity: 1; }
.about-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.about-card > * { position: relative; z-index: 1; }
.about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px; height: 70px;
  font-size: 2rem;
  color: #FFF;
  margin-bottom: 25px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--accent-purple));
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}
.about-card h3 { font-size: 1.6rem; margin-bottom: 15px; color: #FFF; }
.about-card p, .about-card ul { color: var(--text-muted); line-height: 1.7; font-size: 1.05rem; }
.about-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.about-card ul li { display: flex; align-items: center; gap: 12px; }
.about-card ul i { color: var(--accent-teal); font-size: 1.1rem; }

/* Animations */
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media(max-width: 992px) {
  .hero-content { padding-right: 20px; }
  .hero h1 { font-size: 3.5rem; }
  .work-grid { gap: 30px; }
  .point { padding: 10px 20px; gap: 15px; }
  .point h5 { font-size: 1.1rem; }
}

@media(max-width: 768px) {
  header.scrolled { padding: 10px 0; }
  .menu-toggle { display: block; z-index: 1001; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 70%; height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.5s ease;
    z-index: 1000;
    border-left: 1px solid var(--border-color);
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.2rem; }
  .header-actions { display: none; }

  .hero, .work-grid, .upgrade-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
    padding-top: 80px;
  }
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-content { padding-right: 0; order: 2; }
  .hero-image { order: 1; margin-bottom: 40px; }
  .hero h1 { font-size: 2.8rem; }
  .hero p.tagline { justify-content: center; }

  .ticker-container { margin-top: 0; }
  .work-grid { gap: 40px; }
  .work-features { margin-top: 20px; }
  .feature-item { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }

  .timeline-section > h2 { font-size: 2rem; margin-bottom: 40px; }
  .timeline-points {
    position: static;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 15px;
    align-items: center;
  }
  .point {
    position: static;
    margin-bottom: 0;
    width: 100%;
    max-width: 400px;
    flex-direction: row !important;
    text-align: left !important;
  }

  .upgrade-grid { gap: 40px; }
  .upgrade-list {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 300px;
    margin: 20px auto 0;
  }
}

@media(max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .stat-card { min-width: 250px; }
  .point {
    flex-direction: column !important;
    text-align: center !important;
    padding: 20px;
  }
}

/* Home redesign — phase 1: header and hero */
body.home {
  margin: 0;
  background: #f4f5f7;
  color: #082068;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}
.home *, .home *::before, .home *::after { box-sizing: border-box; }
.home-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.home .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 245, 247, 0.96);
  border-bottom: 1px solid #dfe2e7;
  box-shadow: 0 8px 22px rgba(8, 32, 104, .06);
  backdrop-filter: blur(12px);
}
.home .site-header::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, #082068 0%, #082068 58%, #9098a8 58%, #9098a8 100%); }
.home .navigation { min-height: 86px; display: flex; align-items: center; gap: 32px; }
.home .home-logo { position: relative; display: block; width: 214px; height: 62px; flex: 0 0 auto; overflow: hidden; }
.home .home-logo__shield { position: relative; z-index: 2; display: block; width: 53px; height: 62px; object-fit: contain; filter: none; }
.home .home-logo__wordmark { position: absolute; z-index: 1; top: 13px; left: 41px; display: block; width: 151px; overflow: hidden; }
.home .home-logo__wordmark img { display: block; width: 100%; height: auto; filter: none; animation: home-wordmark-reveal 1.85s cubic-bezier(.21,.8,.27,1) both; }
.home .site-header nav { margin-left: auto; }
.home .nav-links { display: flex; align-items: center; gap: 7px; list-style: none; padding: 0; margin: 0; }
.home .nav-links a { position: relative; display: block; padding: 11px 13px; color: #42506a; text-decoration: none; font-size: .83rem; font-weight: 700; letter-spacing: .01em; transition: color .2s ease, background .2s ease; }
.home .nav-links a::after { content: ""; position: absolute; right: 13px; bottom: 4px; left: 13px; height: 2px; background: #082068; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.home .nav-links a:hover, .home .nav-links a[aria-current="page"] { color: #082068; background: rgba(8,32,104,.055); }
.home .nav-links a:hover::after, .home .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.home .menu-toggle { display: none; background: transparent; border: 0; color: #082068; font: inherit; }
.home .home-button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; background: #082068; color: #fff; border: 1px solid #082068; text-decoration: none; font-size: 0.9rem; font-weight: 700; transition: background .2s ease, color .2s ease; }
.home .home-button:hover { background: #06184f; border-color: #06184f; }
.home .home-button--small { min-height: 43px; gap: 9px; padding: 0 18px; box-shadow: 4px 4px 0 rgba(144,152,168,.4); }
.home .home-button--small span { font-size: 1rem; line-height: 1; transition: transform .2s ease; }
.home .home-button--small:hover span { transform: translate(2px, -2px); }
.home .home-hero { position: relative; overflow: hidden; padding: 86px 0 96px; background: linear-gradient(113deg, #06184f 0%, #082068 56%, #12327a 100%); }
.home .home-hero::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(183,190,202,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(183,190,202,.14) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg, #000 0%, transparent 64%); animation: home-grid-move 11s linear infinite; }
.home .home-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr); align-items: center; gap: 64px; }
.home .home-hero__mark { position: absolute; z-index: 0; top: -62px; right: 10%; width: min(470px, 39vw); opacity: .17; pointer-events: none; transform-origin: center; animation: home-shield-float 12s ease-in-out infinite alternate; }
.home .home-hero__mark img { display: block; width: 100%; height: auto; filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 0 1px rgba(255,255,255,.95)) drop-shadow(0 0 15px rgba(183,190,202,.46)); }
.home .home-hero__content { position: relative; z-index: 1; }
.home .home-hero__content > * { animation: home-reveal .72s both; }
.home .home-hero__content .eyebrow { animation-delay: .06s; }
.home .home-hero__content h1 { animation-delay: .14s; }
.home .home-hero__content .home-lead { animation-delay: .22s; }
.home .home-hero__content .home-actions { animation-delay: .3s; }
.home .eyebrow { margin: 0 0 17px; color: #b7beca; font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.home .home-hero h1 { margin: 0; max-width: 680px; color: #fff; font-family: Outfit, Arial, sans-serif; font-size: clamp(2.65rem, 5vw, 4.8rem); line-height: 1.02; letter-spacing: -.045em; }
.home .home-lead { max-width: 570px; margin: 27px 0 0; color: #dceafa; font-size: 1.08rem; line-height: 1.7; }
.home .home-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 36px; }
.home .home-method { margin: 22px 0 0; color: #b7beca; font-size: .76rem; font-weight: 700; letter-spacing: .04em; }
.home .home-method span { margin: 0 5px; color: #8fe4c1; }
.home .home-text-link { color: #fff; font-size: .91rem; font-weight: 700; text-decoration: none; }
.home .home-text-link span { margin-left: 6px; }
.home .home-hero__visual { position: relative; z-index: 1; min-height: 420px; }
.home .home-hero__visual::before { content: ""; position: absolute; inset: 8% -18% -14% 14%; background: #9098a8; opacity: .24; filter: blur(70px); }
.home .home-hero__slides { position: absolute; inset: 0; overflow: hidden; box-shadow: -28px 28px 0 rgba(255,255,255,.08); }
.home .home-hero__slides::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(3,22,68,.25), rgba(3,22,68,.08) 56%, rgba(3,22,68,.17)); }
.home .home-hero__slides img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: 82% center; opacity: 0; transform: scale(1.1); transition: opacity .9s ease; }
.home .home-hero__slides img.is-active { opacity: 1; animation: home-hero-close 4.2s ease-out both; }
.home .home-hero__visual:hover .home-hero__slides img.is-active { animation-play-state: paused; }
@keyframes home-hero-close { from { transform: scale(1.08); } to { transform: scale(1.12); } }
.home .home-hero__pillars { position: absolute; z-index: 2; top: 178px; right: -16px; width: min(286px, 71%); color: #fff; animation: home-status-in .8s .68s both; }
.home .home-hero__pillars ul { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; }
.home .home-hero__pillars li { display: flex; align-items: center; gap: 10px; min-height: 38px; padding: 9px 14px; border: 1px solid rgba(183,190,202,.45); color: #fff; background: rgba(8,32,104,.68); box-shadow: 0 10px 24px rgba(0,0,0,.16); backdrop-filter: blur(8px); font-size: .73rem; font-weight: 700; line-height: 1.2; animation: home-pill-in .45s both; }
.home .home-hero__pillars li::before { content: ""; width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: #8fe4c1; box-shadow: 0 0 0 0 rgba(143,228,193,.48); animation: home-pulse 1.8s infinite; }
.home .home-hero__pillars a { color: inherit; text-decoration: none; }
.home .home-hero__pillars li:hover { background: rgba(17,49,126,.88); border-color: #fff; transform: translateX(-6px); cursor: pointer; }
.home .home-hero__pillars li:nth-child(1) { animation-delay: .84s; }
.home .home-hero__pillars li:nth-child(2) { animation-delay: .94s; }
.home .home-hero__pillars li:nth-child(3) { animation-delay: 1.04s; }
.home .home-hero__pillars li:nth-child(4) { animation-delay: 1.14s; }
.home .home-hero__pillars li:nth-child(5) { animation-delay: 1.24s; }
.home .solutions-section { padding: 110px 0 126px; background: #f4f5f7; }
.home .solutions-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .55fr); gap: 54px; align-items: end; padding-bottom: 44px; border-bottom: 1px solid #cdd3dc; }
.home .solutions-heading .eyebrow { color: #67758b; }
.home .solutions-heading h2 { max-width: 730px; margin: 0; color: #082068; font-family: Outfit, Arial, sans-serif; font-size: clamp(2.05rem, 3.8vw, 3.55rem); line-height: 1.04; letter-spacing: -.04em; }
.home .solutions-heading > p { max-width: 360px; margin: 0 0 4px; color: #53627a; font-size: .98rem; line-height: 1.7; }
.home .solutions-explorer { display: grid; grid-template-columns: minmax(255px, .46fr) minmax(0, 1fr); gap: 34px; margin-top: 48px; }
.home .solution-tabs { display: grid; align-content: start; border-top: 1px solid #cdd3dc; }
.home .solution-tabs button { display: grid; grid-template-columns: 35px 1fr; gap: 12px; align-items: center; width: 100%; padding: 19px 13px; color: #53627a; background: transparent; border: 0; border-bottom: 1px solid #cdd3dc; font: inherit; font-size: .86rem; font-weight: 800; line-height: 1.25; text-align: left; cursor: pointer; transition: color .2s ease, background .2s ease, padding .2s ease; }
.home .solution-tabs button span { color: #9098a8; font-size: .66rem; letter-spacing: .12em; }
.home .solution-tabs button:hover, .home .solution-tabs button.is-active { padding-left: 20px; color: #fff; background: #082068; }
.home .solution-tabs button.is-active span { color: #8fe4c1; }
.home .solution-panels { min-width: 0; }
.home .solution-panel { display: grid; grid-template-columns: minmax(260px, .88fr) minmax(285px, 1fr); min-height: 465px; background: #fff; box-shadow: 0 17px 35px rgba(8,32,104,.11); animation: solution-panel-in .45s ease both; scroll-margin-top: 110px; }
.home .solution-panel[hidden] { display: none; }
.home .solution-panel__image { position: relative; overflow: hidden; min-height: 100%; background: #082068; }
.home .solution-panel__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,32,104,.4), transparent 55%); }
.home .solution-panel__image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 4s ease; }
.home .solution-panel:hover .solution-panel__image img { transform: scale(1.05); }
.home .solution-panel__content { display: flex; flex-direction: column; padding: 42px 38px 34px; }
.home .solution-kicker { margin: 0 0 10px; color: #6b7a91; font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.home .solution-panel h3 { margin: 0; color: #082068; font-family: Outfit, Arial, sans-serif; font-size: clamp(1.8rem, 2.8vw, 2.5rem); line-height: 1.04; letter-spacing: -.035em; }
.home .solution-panel__content > p:not(.solution-kicker) { margin: 18px 0 0; color: #53627a; font-size: .92rem; line-height: 1.62; }
.home .solution-brands::before { flex-basis: 100%; padding: 12px 13px; color: #294366; background: #eef3f8; border-left: 3px solid #8fe4c1; font-size: .75rem; font-weight: 500; line-height: 1.48; }
.home .solution-brands::before { content: var(--solution-outcome); }
.home .solution-panel#infraestructura .solution-brands { --solution-outcome: "Resultado: una operación física más confiable, ordenada y protegida."; }
.home .solution-panel#ciberseguridad .solution-brands { --solution-outcome: "Resultado: menor exposición y mayor control sobre los riesgos tecnológicos."; }
.home .solution-panel#networking .solution-brands { --solution-outcome: "Resultado: comunicaciones estables preparadas para acompañar el crecimiento."; }
.home .solution-panel#data-center .solution-brands { --solution-outcome: "Resultado: servicios críticos disponibles y datos preparados para recuperarse."; }
.home .solution-panel#soporte .solution-brands { --solution-outcome: "Resultado: decisiones mejor informadas y una tecnología acompañada en el tiempo."; }
.home .solution-panel ul { display: grid; gap: 8px; padding: 0; margin: 23px 0 0; list-style: none; }
.home .solution-panel li { position: relative; padding-left: 17px; color: #243b5c; font-size: .82rem; line-height: 1.4; }
.home .solution-panel li::before { content: ""; position: absolute; top: .4rem; left: 0; width: 6px; height: 6px; border-radius: 50%; background: #8fe4c1; }
.home .solution-brands { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; margin-top: auto; padding-top: 26px; border-top: 1px solid #e0e4ea; }
.home .solution-brands > span { flex-basis: 100%; margin-bottom: 1px; color: #6b7a91; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.home .solution-brands a { display: grid; width: 116px; height: 64px; place-items: center; background: #fff; border: 1px solid #dfe2e7; box-shadow: 0 7px 15px rgba(8,32,104,.1); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.home .solution-brands a:hover { border-color: #8fe4c1; box-shadow: 0 12px 22px rgba(8,32,104,.17); transform: translateY(-4px); }
.home .solution-brands img { width: 102px; height: 52px; object-fit: contain; opacity: 1; }
.home .solution-brands b { color: #082068; font-size: .82rem; }
.home .solution-cta { display: inline-block; align-self: flex-start; margin-top: 23px; padding-bottom: 4px; color: #082068; border-bottom: 2px solid #8fe4c1; font-size: .77rem; font-weight: 800; text-decoration: none; }
.home .solution-cta:hover { color: #325ba0; }
@keyframes solution-panel-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.home .home-footer { padding: 34px 0; background: #071b34; color: #b7c9db; }
.home .home-footer .home-shell { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.home .home-footer img { width: 102px; height: auto; filter: brightness(0) invert(1); }
.home .home-footer p { margin: 0; font-size: .8rem; }
.home .home-footer p:last-child { margin-left: auto; }
.whatsapp-float { position: fixed; z-index: 30; right: 24px; bottom: 24px; display: inline-flex; align-items: center; gap: 10px; min-height: 58px; padding: 8px 17px 8px 9px; color: #fff; background: #082068; border: 1px solid rgba(255,255,255,.38); box-shadow: 5px 5px 0 rgba(144,152,168,.78), 0 12px 30px rgba(8,32,104,.26); font-family: "Plus Jakarta Sans", Arial, sans-serif; font-size: .7rem; line-height: 1.2; letter-spacing: .01em; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; animation: whatsapp-attention 2.4s ease-in-out infinite; }
.whatsapp-menu { position: fixed; z-index: 30; right: 24px; bottom: 24px; }
.whatsapp-menu > summary { list-style: none; cursor: pointer; }
.whatsapp-menu > summary::-webkit-details-marker { display: none; }
.whatsapp-menu .whatsapp-float { position: relative; right: auto; bottom: auto; }
.whatsapp-menu__options { position: absolute; right: 0; bottom: calc(100% + 15px); display: grid; gap: 8px; min-width: 230px; padding: 10px; background: rgba(244,245,247,.96); border: 1px solid #dfe2e7; box-shadow: 0 15px 34px rgba(8,32,104,.24); backdrop-filter: blur(10px); }
.whatsapp-menu__options a { display: block; padding: 12px 14px; color: #082068; background: #fff; border-left: 3px solid #8fe4c1; font-size: .78rem; font-weight: 800; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.whatsapp-menu__options a:hover { background: #e9edf2; transform: translateX(-4px); }
.whatsapp-float:hover { background: #12327a; transform: translateY(-4px); box-shadow: 7px 8px 0 rgba(144,152,168,.78), 0 16px 34px rgba(8,32,104,.31); animation-play-state: paused; }
.whatsapp-float strong { font-size: .82rem; }
.whatsapp-float__icon { display: grid; width: 38px; height: 38px; place-items: center; color: #082068; background: #dfe2e7; border-radius: 50%; }
.whatsapp-float__icon svg { width: 23px; height: 23px; overflow: visible; }
@keyframes whatsapp-attention { 0%, 72%, 100% { transform: scale(1); } 82% { transform: scale(1.055); } 91% { transform: scale(.985); } }
@media (prefers-reduced-motion: reduce) { .whatsapp-float { animation: none; } }


.home .partner-marquee { overflow: hidden; padding: 78px 0 84px; background: #fff; }
.home .partner-marquee__heading { display: grid; gap: 9px; margin-bottom: 32px; }
.inner-page .inner-main { min-height: calc(100vh - 144px); background: #f4f5f7; }
.inner-page .inner-hero { padding: 112px 0 78px; color: #fff; background: linear-gradient(120deg, #082068, #11317e); }
.inner-page .inner-hero, .about-page .about-hero { position: relative; overflow: hidden; }
.section-watermark { position: absolute; z-index: 0; top: -88px; right: 7%; width: min(430px, 38vw); opacity: .16; pointer-events: none; transform-origin: center; animation: home-shield-float 12s ease-in-out infinite alternate; }
.section-watermark img { display: block; width: 100%; height: auto; filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 0 1px rgba(255,255,255,.95)) drop-shadow(0 0 15px rgba(183,190,202,.46)); }
.inner-page .inner-hero .home-shell, .about-page .about-hero__grid { position: relative; z-index: 1; }
.inner-page .inner-hero .eyebrow { color: #8fe4c1; }
.inner-page .inner-hero h1 { max-width: 800px; margin: 0; font-family: Outfit, Arial, sans-serif; font-size: clamp(2.5rem, 5vw, 4.8rem); letter-spacing: -.05em; line-height: 1; }
.inner-page .inner-hero p:not(.eyebrow) { max-width: 640px; margin: 22px 0 0; color: #d7e0eb; font-size: 1rem; line-height: 1.7; }
.inner-page .inner-template-section { padding: 78px 0 112px; }
.inner-page .inner-template-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.inner-page .inner-template-grid article { min-height: 240px; padding: 30px; background: #fff; border-top: 3px solid #8fe4c1; box-shadow: 0 13px 28px rgba(8,32,104,.1); }
.inner-page .inner-template-grid span { color: #8c99aa; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.inner-page .inner-template-grid h2 { margin: 42px 0 11px; color: #082068; font-family: Outfit, Arial, sans-serif; font-size: 1.45rem; line-height: 1.08; }
.inner-page .inner-template-grid p { margin: 0; color: #53627a; font-size: .86rem; line-height: 1.65; }
.contact-entry-section { padding: 84px 0; background: #f4f5f7; }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.contact-card { position: relative; min-height: 360px; padding: 42px; overflow: hidden; color: #fff; background: linear-gradient(135deg, #082068, #11317e); box-shadow: 18px 18px 0 rgba(144,152,168,.22); }
.contact-card::after { content: ""; position: absolute; right: -36px; bottom: -78px; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.contact-card--technical { color: #082068; background: #fff; }
.contact-card--technical::after { border-color: rgba(8,32,104,.12); }
.contact-card__number { display: block; margin-bottom: 48px; color: #8fe4c1; font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.contact-card--technical .contact-card__number { color: #6d7c93; }
.contact-card .eyebrow { margin: 0; color: #c5d2e6; }
.contact-card--technical .eyebrow { color: #547099; }
.contact-card h2 { position: relative; z-index: 1; max-width: 410px; margin: 10px 0 14px; color: inherit; font-family: Outfit, Arial, sans-serif; font-size: clamp(1.7rem, 3vw, 2.45rem); letter-spacing: -.04em; }
.contact-card > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 420px; margin: 0; color: #d7e0eb; line-height: 1.7; }
.contact-card--technical > p:not(.eyebrow) { color: #53627a; }
.contact-card .home-button { position: relative; z-index: 1; margin-top: 29px; background: #fff; color: #082068; }
.contact-card--technical .home-button--outline { color: #082068; background: transparent; border-color: #082068; }
.contact-card--technical .home-button--outline:hover { color: #fff; background: #082068; }
.contact-card__phone { position: relative; z-index: 1; display: block; width: max-content; max-width: 100%; margin-top: 17px; color: #dceafa; font-size: .79rem; font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.48); }
.contact-card__phone:hover { color: #8fe4c1; }
.contact-card--technical .contact-card__phone { color: #082068; border-color: rgba(8,32,104,.4); }
@media (max-width: 800px) { .contact-entry-section { padding: 58px 0; } .contact-grid { grid-template-columns: 1fr; gap: 16px; } .contact-card { min-height: 0; padding: 34px 27px; } .contact-card__number { margin-bottom: 34px; } }
.contact-process { padding: 106px 0 118px; background: #f4f5f7; }
.contact-process__heading { display: grid; grid-template-columns: minmax(160px, .33fr) minmax(0, .8fr); gap: 42px; align-items: start; padding-bottom: 52px; border-bottom: 1px solid #d8dee7; }
.contact-process__heading .eyebrow { margin: 7px 0 0; color: #547099; }
.contact-process h2 { max-width: 640px; margin: 0; color: #082068; font-family: Outfit, Arial, sans-serif; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.01; letter-spacing: -.05em; }
.contact-process__steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; padding: 47px 0 0; margin: 0; list-style: none; counter-reset: none; }
.contact-process__steps li { position: relative; padding-left: 48px; }
.contact-process__steps span { position: absolute; top: 2px; left: 0; color: #8fe4c1; font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.contact-process__steps h3 { margin: 0 0 12px; color: #082068; font-family: Outfit, Arial, sans-serif; font-size: 1.25rem; }
.contact-process__steps p { margin: 0; color: #53627a; font-size: .88rem; line-height: 1.7; }
.contact-hours { display: inline-block; margin: 52px 0 0; padding: 12px 16px; color: #274363; background: rgba(143,228,193,.22); border-left: 3px solid #8fe4c1; font-size: .84rem; }
.contact-location { display: flex; align-items: center; gap: 13px; max-width: 470px; margin-top: 16px; padding: 16px; color: #082068; background: #fff; box-shadow: 0 10px 24px rgba(8,32,104,.09); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.contact-location:hover { transform: translateY(-3px); box-shadow: 0 16px 29px rgba(8,32,104,.15); }
.contact-location > span:first-child { display: grid; width: 35px; height: 35px; place-items: center; flex: 0 0 auto; color: #fff; background: #082068; font-size: 1.15rem; }
.contact-location span:nth-child(2) { display: grid; gap: 3px; }
.contact-location strong { font-size: .88rem; }
.contact-location small { color: #60708a; font-size: .74rem; }
.contact-location b { margin-left: auto; font-size: 1.05rem; }
.contact-form-section { padding: 112px 0; background: #fff; }
.contact-form-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(390px, 1fr); gap: 92px; align-items: start; }
.contact-form-grid > div > .eyebrow { margin: 0 0 15px; color: #547099; }
.contact-form-grid h2 { margin: 0; color: #082068; font-family: Outfit, Arial, sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.01; letter-spacing: -.05em; }
.contact-form-grid > div > p:last-child { max-width: 430px; margin: 24px 0 0; color: #53627a; line-height: 1.7; }
.contact-form { display: grid; gap: 18px; padding: 34px; background: #f4f5f7; border-top: 3px solid #8fe4c1; box-shadow: 15px 15px 0 rgba(8,32,104,.08); }
.contact-form label { display: grid; gap: 8px; color: #274363; font-size: .8rem; font-weight: 800; }
.contact-form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form input, .contact-form textarea { box-sizing: border-box; width: 100%; padding: 12px 13px; color: #082068; background: #fff; border: 1px solid #cdd5e0; border-radius: 0; font: inherit; font-size: .9rem; font-weight: 500; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid #8fe4c1; outline-offset: 1px; border-color: #082068; }
.contact-form .home-button { width: max-content; margin-top: 4px; border: 0; cursor: pointer; }
.contact-form__trap { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form__status { min-height: 1.4em; margin: 0; color: #274363; font-size: .84rem; line-height: 1.5; }
.contact-form__status.is-error { color: #a52a2a; }
@media (max-width: 800px) { .contact-form-section { padding: 72px 0; } .contact-form-grid { grid-template-columns: 1fr; gap: 38px; } .contact-form { padding: 25px 20px; } .contact-form__row { grid-template-columns: 1fr; } }
@media (max-width: 800px) { .contact-process { padding: 72px 0; } .contact-process__heading { grid-template-columns: 1fr; gap: 18px; padding-bottom: 35px; } .contact-process__heading .eyebrow { margin: 0; } .contact-process__steps { grid-template-columns: 1fr; gap: 28px; padding-top: 34px; } }
@media (max-width: 800px) { .inner-page .inner-hero { padding: 88px 0 60px; } .inner-page .inner-template-section { padding: 58px 0 76px; } .inner-page .inner-template-grid { grid-template-columns: 1fr; } .inner-page .inner-template-grid article { min-height: 0; } }
.about-page main { overflow: hidden; background: #fff; }
.about-page .about-hero { padding: 105px 0 100px; color: #fff; background: #082068; }
.about-page .about-hero__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, .82fr); gap: 64px; align-items: center; }
.about-page .about-hero .eyebrow, .about-page .about-section-heading .eyebrow, .about-page .about-method .eyebrow, .about-page .about-sectors .eyebrow, .about-page .about-cta .eyebrow { color: #8fe4c1; }
.about-page .about-hero h1 { max-width: 650px; margin: 0; font-family: Outfit, Arial, sans-serif; font-size: clamp(3rem, 5.2vw, 5.3rem); line-height: .97; letter-spacing: -.06em; }
.about-page .about-hero__content > p:not(.eyebrow) { max-width: 575px; margin: 25px 0 0; color: #d7e0eb; font-size: 1rem; line-height: 1.72; }
.about-page .about-hero__facts { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.about-page .about-hero__facts span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.27); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .04em; }
.about-page .about-hero__visual { position: relative; min-height: 475px; box-shadow: 22px 22px 0 rgba(144,152,168,.27); }
.about-page .about-hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,32,104,.48), transparent 50%); pointer-events: none; }
.about-page .about-hero__visual > img { width: 100%; height: 100%; min-height: 475px; object-fit: cover; object-position: 72% center; animation: about-image-close 9s ease-out both; }
@keyframes about-image-close { from { transform: scale(1.03); } to { transform: scale(1.1); } }
.about-page .about-intro { padding: 120px 0; background: #fff; }
.about-page .about-intro__grid, .about-page .about-sectors__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .74fr); gap: 80px; align-items: start; }
.about-page .about-intro h2, .about-page .about-section-heading h2, .about-page .about-method h2, .about-page .about-sectors h2, .about-page .about-cta h2 { margin: 0; color: #082068; font-family: Outfit, Arial, sans-serif; font-size: clamp(2rem, 3.6vw, 3.65rem); line-height: 1.04; letter-spacing: -.045em; }
.about-page .about-intro__text { display: grid; gap: 18px; padding-top: 7px; }
.about-page .about-intro__text p { margin: 0; color: #53627a; font-size: .96rem; line-height: 1.78; }
.about-page .about-principles { padding: 104px 0; background: #f4f5f7; }
.about-page .about-section-heading { max-width: 680px; }
.about-page .about-principles__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 45px; }
.about-page .about-principles article { min-height: 260px; padding: 30px; background: #fff; border-top: 3px solid #8fe4c1; box-shadow: 0 12px 25px rgba(8,32,104,.08); transition: transform .25s ease, box-shadow .25s ease; }
.about-page .about-principles article:hover { transform: translateY(-7px); box-shadow: 0 20px 34px rgba(8,32,104,.15); }
.about-page .about-principles span { color: #8c99aa; font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.about-page .about-principles h3 { margin: 53px 0 11px; color: #082068; font-family: Outfit, Arial, sans-serif; font-size: 1.6rem; }
.about-page .about-principles p { margin: 0; color: #53627a; font-size: .86rem; line-height: 1.7; }
.about-page .about-method { padding: 115px 0; color: #fff; background: #071b34; }
.about-page .about-method__grid { display: grid; grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr); gap: 82px; align-items: start; }
.about-page .about-method h2 { color: #fff; }
.about-page .about-method ol { display: grid; gap: 0; padding: 0; margin: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.about-page .about-method li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.about-page .about-method li > span { color: #8fe4c1; font-size: .72rem; font-weight: 800; }
.about-page .about-method h3 { margin: 0; color: #fff; font-size: 1rem; }
.about-page .about-method li p { margin: 8px 0 0; color: #c5d0dc; font-size: .85rem; line-height: 1.65; }
.about-page .about-sectors { padding: 110px 0; background: #fff; }
.about-page .about-sectors ul { display: grid; gap: 11px; padding: 0; margin: 0; list-style: none; }
.about-page .about-sectors__list > p { margin: 0 0 12px; color: #6b7a91; font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.about-page .about-sectors li { padding: 15px 0 15px 18px; color: #294366; border-bottom: 1px solid #dbe1e8; font-size: .95rem; font-weight: 700; }
.about-page .about-sectors li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin: 0 10px 1px -18px; border-radius: 50%; background: #8fe4c1; }
.about-page .about-cta { padding: 100px 0; color: #fff; background: linear-gradient(115deg, #11317e, #082068); }
.about-page .about-cta h2 { max-width: 800px; color: #fff; }
.about-page .about-cta .home-button { margin-top: 28px; background: #fff; color: #082068; }
@media (max-width: 800px) { .about-page .about-hero { padding: 82px 0 68px; } .about-page .about-hero__grid, .about-page .about-intro__grid, .about-page .about-method__grid, .about-page .about-sectors__grid { grid-template-columns: 1fr; gap: 40px; } .about-page .about-hero__visual, .about-page .about-hero__visual > img { min-height: 340px; } .about-page .about-intro, .about-page .about-method, .about-page .about-sectors { padding: 76px 0; } .about-page .about-principles { padding: 72px 0; } .about-page .about-principles__grid { grid-template-columns: 1fr; margin-top: 31px; } .about-page .about-principles article { min-height: 0; } .about-page .about-principles h3 { margin-top: 34px; } .about-page .about-method__grid { gap: 45px; } .section-watermark { top: -36px; right: -45px; width: 270px; opacity: .1; } }
.home .partner-marquee__heading .eyebrow { margin: 0; color: #6b7a91; }
.home .partner-marquee__heading h2 { margin: 0; color: #082068; font-family: Outfit, Arial, sans-serif; font-size: clamp(1.55rem, 2.5vw, 2.35rem); letter-spacing: -.035em; }
.home .partner-marquee__viewport { position: relative; width: 100%; overflow: hidden; perspective: 1000px; }
.home .partner-marquee__viewport::before, .home .partner-marquee__viewport::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: min(10vw, 160px); pointer-events: none; }
.home .partner-marquee__viewport::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.home .partner-marquee__viewport::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.home .partner-marquee__track { display: flex; width: max-content; padding: 13px 0 19px; transform-style: preserve-3d; animation: partner-marquee-scroll 46s linear infinite; }
.home .partner-marquee__set { display: flex; flex: 0 0 auto; gap: 14px; padding-right: 14px; }
.home .brand-marquee__item { position: relative; display: grid; width: 152px; height: 82px; flex: 0 0 auto; place-items: center; padding: 11px; background: linear-gradient(135deg, #fff, #f1f4f7); border: 1px solid #dfe4eb; box-shadow: 0 12px 25px rgba(8,32,104,.11), inset 0 1px rgba(255,255,255,.85); transform: translateZ(0); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; animation: partner-logo-float 5.4s ease-in-out infinite; }
.home .brand-marquee__item::after { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(8,32,104,.06); pointer-events: none; }
.home .brand-marquee__item:nth-child(3n+2) { animation-delay: -1.8s; }
.home .brand-marquee__item:nth-child(3n) { animation-delay: -3.6s; }
.home .brand-marquee__item:hover { z-index: 3; border-color: rgba(8,32,104,.28); transform: translateY(-8px) translateZ(26px) scale(1.045); box-shadow: 0 20px 34px rgba(8,32,104,.2), 0 0 0 5px rgba(143,228,193,.16); animation-play-state: paused; }
.home .brand-marquee__item img { display: block; width: 126px; height: 56px; object-fit: contain; }
.home .partner-marquee:hover .partner-marquee__track { animation-play-state: paused; }
@keyframes partner-marquee-scroll { to { transform: translateX(-50%); } }
@keyframes partner-logo-float { 0%, 100% { transform: translateY(0) translateZ(0); } 50% { transform: translateY(-6px) translateZ(14px); } }
@media (prefers-reduced-motion: reduce) { .home .partner-marquee__track { animation: none; transform: none; } }
@media (max-width: 800px) { .home .partner-marquee { padding: 62px 0 66px; } .home .partner-marquee__heading { display: grid; gap: 10px; margin-bottom: 24px; } .home .brand-marquee__item { width: 126px; height: 70px; } .home .brand-marquee__item img { width: 106px; height: 48px; } }

/* Las escenas tienen espacio editorial a la izquierda; aquí se prioriza el foco técnico al recortarlas. */
.home .home-hero__slides img { object-position: 82% center; }
.home .solution-panel__image img { object-position: 82% center; }
.home .solution-panel__image img {
  animation: solution-image-approach 5.8s cubic-bezier(.2,.8,.2,1) both;
  transform-origin: 80% center;
}
@keyframes solution-image-approach {
  from { transform: scale(1); }
  to { transform: scale(1.11); }
}
@media (max-width: 700px) {
  .home .home-hero__slides img { object-position: 76% center; }
  .home .solution-panel__image img { object-position: 72% center; }
}

/* Galería de referencias oficiales por fabricante. */
.home .solution-panel__image--gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: #0a1f51;
}
.home .solution-panel__image--gallery::after { display: none; }
.home .solution-panel__image--gallery figure {
  position: relative;
  min-height: 154px;
  margin: 0;
  overflow: hidden;
  background: #f4f6f8;
}
.home .solution-panel__image--gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}
.home .solution-panel__image--gallery figure:hover img { transform: scale(1.06); filter: saturate(1.08); }
.home .solution-panel__image--gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 11px;
  color: #fff;
  background: linear-gradient(0deg, rgba(8,32,104,.92), rgba(8,32,104,.08));
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .025em;
}
@media (max-width: 700px) {
  .home .solution-panel__image--gallery { min-height: 410px; }
  .home .solution-panel__image--gallery figure { min-height: 136px; }
}
@keyframes home-reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes home-wordmark-reveal { 0% { transform: translateX(-102%); } 76% { transform: translateX(18px); } 100% { transform: translateX(14px); } }
@keyframes home-image-in { from { opacity: 0; transform: translateX(26px) scale(.98); } to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes home-image-drift { from { object-position: 80% center; } to { object-position: 86% center; } }
@keyframes home-grid-move { from { background-position: 0 0, 0 0; } to { background-position: 54px 54px, 54px 54px; } }
@keyframes home-shield-float { from { transform: translateY(0) rotate(-4deg) scale(1); } to { transform: translateY(28px) rotate(4deg) scale(1.05); } }
@keyframes home-status-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes home-pill-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes home-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(143,228,193,.48); } 60% { box-shadow: 0 0 0 7px rgba(143,228,193,0); } }
@media (prefers-reduced-motion: reduce) {
  .home *, .home *::before, .home *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
@media (max-width: 800px) {
  .home-shell { width: min(100% - 32px, 600px); }
  .home .navigation { min-height: 72px; gap: 16px; }
  .home .home-logo { width: 174px; height: 50px; }
  .home .home-logo__shield { width: 43px; height: 50px; }
  .home .home-logo__wordmark { top: 11px; left: 33px; width: 122px; }
  .home .site-header nav { display: none; }
  .home .site-header nav:has(.nav-links.active) { display: block; position: absolute; top: 72px; right: 16px; left: 16px; padding: 18px; background: #fff; border: 1px solid #e6ebf2; box-shadow: 0 16px 32px rgba(8, 35, 66, .16); }
  .home .site-header .nav-links.active { display: grid; gap: 16px; }
  .home .menu-toggle { display: inline-block; margin-left: auto; }
  .home .home-button--small { display: none; }
  .home .home-hero { padding: 60px 0 65px; }
  .home .home-hero__grid { grid-template-columns: 1fr; gap: 42px; }
  .home .home-hero__mark { top: -18px; right: -34px; width: 300px; opacity: .09; }
  .home .home-hero__visual, .home .home-hero__slides img { min-height: 300px; }
  .home .home-hero__pillars { top: auto; right: 16px; bottom: 18px; width: calc(100% - 32px); }
  .home .home-hero__pillars ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .home .home-hero__pillars li { min-height: 34px; padding: 7px 9px; font-size: .62rem; }
  .home .home-hero__pillars li:last-child { grid-column: 1 / -1; }
  .home .solutions-section { padding: 74px 0 84px; }
  .home .solutions-heading { grid-template-columns: 1fr; gap: 22px; padding-bottom: 30px; }
  .home .solutions-explorer { grid-template-columns: 1fr; gap: 26px; margin-top: 30px; }
  .home .solution-tabs { grid-template-columns: 1fr; border-right: 0; }
  .home .solution-tabs button { min-height: 54px; border-left: 0; }
  .home .solution-panel { grid-template-columns: 1fr; min-height: 0; }
  .home .solution-panel__image { min-height: 265px; }
  .home .solution-panel__content { padding: 30px 25px; }
  .home .home-footer .home-shell { align-items: flex-start; flex-direction: column; gap: 14px; }
  .home .home-footer p:last-child { margin-left: 0; }
  .whatsapp-float { right: 16px; bottom: 16px; padding-right: 13px; }
}

/* 2026-08-05: estabilizacion visual y responsive del sitio publicado. */
html { scroll-padding-top: 96px; }
body.home { overflow-x: hidden; }

/* Firma visual compartida: franja superior, cabecera flotante y escudo de fondo. */
.cases-hero,
.faq-hero,
.resources-hero {
  position: relative;
  overflow: hidden;
}
.cases-hero > .home-shell,
.faq-hero > .home-shell,
.resources-hero > .home-shell {
  position: relative;
  z-index: 1;
}

/* Identidad legible desde el primer cuadro, sin superposicion animada. */
.home .home-logo {
  display: flex;
  width: 200px;
  height: 58px;
  align-items: center;
  overflow: visible;
}
.home .home-logo__shield {
  position: static;
  width: 46px;
  height: 54px;
  flex: 0 0 auto;
}
.home .home-logo__wordmark {
  position: static;
  display: block;
  width: 140px;
  margin-left: 5px;
  overflow: visible;
}
.home .home-logo__wordmark img {
  display: block;
  width: 100%;
  height: auto;
  animation: none !important;
  transform: none !important;
}

/* Las dos paginas nuevas no heredaban el tratamiento de portada interna. */
.solutions-page .inner-hero,
.ticket-page .inner-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 82px;
  color: #fff;
  background: linear-gradient(118deg, #06184f 0%, #082068 58%, #12327a 100%);
}
.solutions-page .inner-hero .home-shell,
.ticket-page .inner-hero .home-shell { position: relative; z-index: 1; }
.solutions-page .inner-hero .eyebrow,
.ticket-page .inner-hero .eyebrow { color: #8fe4c1; }
.solutions-page .inner-hero h1,
.ticket-page .inner-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-family: Outfit, Arial, sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.75rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.solutions-page .inner-hero p:not(.eyebrow),
.ticket-page .inner-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #d7e0eb;
  font-size: 1rem;
  line-height: 1.7;
}

/* CTA principal visible sobre la portada azul. */
.home .home-hero .home-button {
  color: #082068;
  background: #8fe4c1;
  box-shadow: 6px 6px 0 rgba(255,255,255,.16);
}
.home .home-hero .home-button:hover { color: #082068; background: #aaf0d3; }
.home .home-hero .home-text-link { text-underline-offset: 5px; }

.about-page .about-hero__visual { overflow: hidden; }
.about-page .about-hero__visual > img { display: block; }

.home a:focus-visible,
.home button:focus-visible,
.home summary:focus-visible {
  outline: 3px solid #8fe4c1;
  outline-offset: 4px;
}

@media (max-width: 800px) {
  html { scroll-padding-top: 78px; }
  .home .navigation { min-height: 76px; }
  .home .home-logo { width: 151px; height: 48px; }
  .home .home-logo__shield { width: 37px; height: 44px; }
  .home .home-logo__wordmark { width: 110px; margin-left: 4px; }
  .home .menu-toggle {
    padding: 9px 11px;
    color: #082068;
    background: #f0f3f7;
    border: 1px solid #dce3ec;
    font-weight: 700;
  }
  .home .site-header nav:has(.nav-links.active) { top: 76px; }

  .home .home-hero { padding: 48px 0 54px; }
  .home .home-hero__grid { gap: 30px; }
  .home .home-hero h1 { font-size: clamp(2.55rem, 12vw, 3.25rem); line-height: .98; }
  .home .home-lead { margin-top: 24px; font-size: 1rem; line-height: 1.65; }
  .home .home-actions { display: grid; gap: 17px; margin-top: 28px; }
  .home .home-hero .home-button { width: 100%; min-height: 52px; justify-content: center; }
  .home .home-hero .home-text-link { width: max-content; }
  .home .home-method { margin-top: 24px; line-height: 1.65; }
  .home .home-hero__visual,
  .home .home-hero__slides img { min-height: 270px; }

  .solutions-page .inner-hero,
  .ticket-page .inner-hero { padding: 70px 0 58px; }
  .solutions-page .inner-hero h1,
  .ticket-page .inner-hero h1 { font-size: clamp(2.35rem, 11vw, 3.2rem); }

  .whatsapp-menu { right: 12px; bottom: 12px; }
  .whatsapp-menu .whatsapp-float {
    width: 52px;
    min-height: 52px;
    padding: 6px;
    gap: 0;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(8,32,104,.3);
  }
  .whatsapp-menu .whatsapp-float > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
  .whatsapp-menu .whatsapp-float__icon { width: 38px; height: 38px; }
  .whatsapp-menu__options { right: 0; min-width: min(230px, calc(100vw - 32px)); }
}

/* Hardened page styles: 2026-08-05 */

/* casos.html */
.cases{background:#f5f7fa;color:#14243d}.cases-hero{padding:88px 0;background:linear-gradient(112deg,#06184f,#082068 58%,#12327a);color:#fff}.cases-hero h1{max-width:760px;margin:0;font:clamp(2.5rem,5vw,4.5rem)/1.05 Outfit,Arial,sans-serif;letter-spacing:-.045em}.cases-hero p{max-width:680px;color:#d7e0eb;line-height:1.7}.cases-note{padding:22px 0;background:#e9eef5;color:#53627a}.cases-list{padding:70px 0}.case{display:grid;grid-template-columns:210px 1fr;gap:48px;padding:48px 0;border-top:1px solid #cbd4df}.case:last-child{border-bottom:1px solid #cbd4df}.case-label{color:#6b7a91;font-size:.72rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.case h2{margin:0 0 14px;color:#082068;font:clamp(1.7rem,3vw,2.5rem)/1.1 Outfit,Arial,sans-serif}.case p{color:#45546a;line-height:1.7}.case-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:26px 0}.case-grid div{padding:18px;background:#fff;border-top:3px solid #8fe4c1;box-shadow:8px 8px 0 rgba(144,152,168,.18)}.case-grid span{display:block;margin-bottom:8px;color:#6b7a91;font-size:.65rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.case-result{padding:18px 20px;background:#e6fbf2;border-left:3px solid #20b479;line-height:1.65}@media(max-width:760px){.cases-hero{padding:65px 0}.case{grid-template-columns:1fr;gap:20px;padding:36px 0}.case-grid{grid-template-columns:1fr}}

/* preguntas-frecuentes.html */
.faq-page{background:#f5f7fa;color:#14243d}.faq-hero{padding:88px 0 74px;background:linear-gradient(112deg,#06184f,#082068 58%,#12327a);color:#fff}.faq-hero h1{max-width:780px;margin:0;font:clamp(2.5rem,5vw,4.5rem)/1.05 Outfit,Arial,sans-serif;letter-spacing:-.045em}.faq-hero p{max-width:680px;color:#d7e0eb;line-height:1.7}.faq-list{max-width:900px;padding:66px 0 82px}.faq-item{padding:24px 0;border-top:1px solid #cbd4df}.faq-item:last-child{border-bottom:1px solid #cbd4df}.faq-item summary{display:flex;align-items:center;justify-content:space-between;gap:20px;cursor:pointer;color:#082068;font:700 clamp(1.08rem,2vw,1.34rem)/1.25 Outfit,Arial,sans-serif;list-style:none}.faq-item summary::-webkit-details-marker{display:none}.faq-item summary::after{content:"+";display:grid;flex:0 0 auto;width:30px;height:30px;place-items:center;border-radius:50%;background:#e1eaf4;color:#082068;font:400 1.35rem/1 Arial}.faq-item[open] summary::after{content:"–";background:#8fe4c1}.faq-item p{max-width:760px;margin:16px 48px 0 0;color:#45546a;line-height:1.72}.faq-cta{padding:60px 0;background:#e9eef5}.faq-cta h2{max-width:700px;margin:0 0 22px;color:#082068;font:clamp(1.85rem,3vw,2.8rem)/1.1 Outfit,Arial,sans-serif}@media(max-width:700px){.faq-hero{padding:64px 0 56px}.faq-list{padding:48px 0 60px}.faq-item p{margin-right:0}.faq-item summary{font-size:1.05rem}}

/* recursos.html */
.resources-page{background:#f5f7fa;color:#14243d}.resources-hero{padding:88px 0 74px;background:linear-gradient(112deg,#06184f,#082068 58%,#12327a);color:#fff}.resources-hero h1{max-width:800px;margin:0;font:clamp(2.5rem,5vw,4.5rem)/1.05 Outfit,Arial,sans-serif;letter-spacing:-.045em}.resources-hero p{max-width:700px;color:#d7e0eb;line-height:1.7}.resources-list{padding:68px 0}.resource{display:grid;grid-template-columns:80px minmax(0,1fr) auto;gap:28px;align-items:start;padding:30px 0;border-top:1px solid #cbd4df}.resource:last-child{border-bottom:1px solid #cbd4df}.resource__number{display:grid;width:56px;height:56px;place-items:center;border-radius:50%;background:#e1eaf4;color:#082068;font:700 .85rem/1 Outfit,Arial,sans-serif}.resource h2{margin:0 0 10px;color:#082068;font:clamp(1.35rem,2.3vw,2rem)/1.15 Outfit,Arial,sans-serif}.resource p{max-width:680px;margin:0;color:#46556b;line-height:1.68}.resource details{margin-top:16px}.resource summary{cursor:pointer;color:#08765a;font-weight:700}.resource ul{display:grid;gap:8px;margin:14px 0 0;padding-left:20px;color:#45546a;line-height:1.55}.resource a{white-space:nowrap}@media(max-width:720px){.resources-hero{padding:64px 0 56px}.resources-list{padding:48px 0}.resource{grid-template-columns:56px 1fr;gap:18px}.resource a{grid-column:2}.resource__number{width:46px;height:46px}}

/* ticket.html */
.ticket-page{background:#f5f7fa;color:#14243d}.ticket-main{padding:76px 0 88px}.ticket-card{max-width:880px;padding:clamp(28px,5vw,58px);background:#fff;box-shadow:16px 16px 0 rgba(144,152,168,.15);border-top:4px solid #8fe4c1}.ticket-card h1{max-width:700px;margin:0 0 17px;color:#082068;font:clamp(2.25rem,4.5vw,4rem)/1.05 Outfit,Arial,sans-serif;letter-spacing:-.045em}.ticket-card>p{max-width:650px;color:#46556b;line-height:1.72}.ticket-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:34px 0}.ticket-steps div{padding:19px;background:#eef3f8}.ticket-steps span{display:block;margin-bottom:10px;color:#07855c;font-size:.7rem;font-weight:800;letter-spacing:.12em}.ticket-steps strong{display:block;color:#082068;font:700 1.04rem/1.3 Outfit,Arial,sans-serif}.ticket-note{margin-top:24px;padding:16px 18px;border-left:3px solid #082068;background:#f3f6f9;color:#526278;line-height:1.6}@media(max-width:650px){.ticket-main{padding:54px 0}.ticket-steps{grid-template-columns:1fr}}

/* Consentimiento de analitica: externo para mantener una CSP sin unsafe-inline. */
.analytics-consent{position:fixed;z-index:9999;left:1rem;right:1rem;bottom:1rem;margin:auto;max-width:760px;padding:.9rem 1rem;border:1px solid rgba(255,255,255,.26);border-radius:14px;background:#0c356b;color:#fff;box-shadow:0 18px 45px rgba(0,0,0,.28);font:500 .9rem/1.45 system-ui,sans-serif}.analytics-consent p{margin:0}.analytics-consent button{margin:.5rem .25rem 0 .55rem;padding:.48rem .7rem;border:1px solid #fff;border-radius:7px;background:#fff;color:#0c356b;font:inherit;font-weight:700;cursor:pointer}.analytics-consent button[data-consent="denied"]{background:transparent;color:#fff}@media(max-width:600px){.analytics-consent{left:.7rem;right:.7rem;bottom:.7rem}.analytics-consent button{margin-left:0;margin-right:.45rem}}


/* Estilos de la pagina heredada de soluciones; externos para CSP estricta. */
.solutions-page{background:#f5f7fa;color:#14243d}.solutions-page .inner-hero{overflow:hidden}.solutions-intro{max-width:840px;padding:64px 0 44px}.solutions-intro h2{margin:0 0 15px;color:#082068;font:clamp(2rem,3.4vw,3.25rem)/1.08 Outfit,Arial,sans-serif;letter-spacing:-.04em}.solutions-intro p{max-width:720px;color:#46556b;line-height:1.72}.service-detail{display:grid;grid-template-columns:minmax(270px,.9fr) minmax(0,1.45fr);gap:50px;padding:62px 0;border-top:1px solid #ccd5df}.service-detail:last-child{border-bottom:1px solid #ccd5df}.service-detail__aside{padding-top:5px}.service-detail__number{display:block;margin-bottom:12px;color:#6b7a91;font-size:.72rem;font-weight:800;letter-spacing:.12em}.service-detail__aside h2{margin:0;color:#082068;font:clamp(1.7rem,2.7vw,2.45rem)/1.08 Outfit,Arial,sans-serif}.service-detail__content>p{max-width:680px;margin:0;color:#46556b;line-height:1.7}.service-points{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:26px 0}.service-points li{list-style:none;padding:17px 18px;background:#fff;border-left:3px solid #8fe4c1;box-shadow:8px 8px 0 rgba(144,152,168,.13);color:#243852;line-height:1.45}.service-points li::before{content:"✓";margin-right:9px;color:#07855c;font-weight:800}.service-detail .solution-brands{margin-top:26px}.service-detail .solution-brands span{display:block;margin-bottom:10px}.service-detail .solution-brands a{display:inline-grid;margin:0 8px 8px 0;vertical-align:middle}.service-detail .solution-cta{display:inline-block;margin-top:26px}.solution-method{padding:74px 0;background:#e9eef5}.solution-method h2{max-width:700px;margin:0 0 28px;color:#082068;font:clamp(1.9rem,3vw,2.8rem)/1.1 Outfit,Arial,sans-serif}.method-list{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.method-list article{padding:24px;background:#fff;box-shadow:8px 8px 0 rgba(144,152,168,.14)}.method-list span{display:block;margin-bottom:15px;color:#07855c;font-size:.72rem;font-weight:800;letter-spacing:.12em}.method-list h3{margin:0 0 8px;color:#082068;font:700 1.1rem/1.2 Outfit,Arial,sans-serif}.method-list p{margin:0;color:#526278;line-height:1.58}@media(max-width:800px){.solutions-intro{padding:48px 0 28px}.service-detail{grid-template-columns:1fr;gap:25px;padding:44px 0}.service-points{grid-template-columns:1fr}.method-list{grid-template-columns:1fr 1fr}}@media(max-width:500px){.method-list{grid-template-columns:1fr}}

.legacy-services-main { padding-top: 100px; }
