:root {
  --bg: #f3f7ff;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #0f1c33;
  --muted: #5d6a80;
  --primary: #001a48;
  --secondary: #005ed6;
  --secondary-soft: rgba(0, 94, 214, 0.12);
  --line: rgba(0, 26, 72, 0.12);
  --shadow: 0 24px 60px rgba(0, 26, 72, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 94, 214, 0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0, 26, 72, 0.25), transparent 30%),
    linear-gradient(135deg, rgba(0, 26, 72, 0.04), rgba(0, 94, 214, 0.08)),
    var(--bg);
}

img,
video {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 36px;
}

.site-header,
.site-footer,
.hero,
.section,
.contact-box,
.about-panel {
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 94, 214, 0.3);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 246, 255, 0.92));
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.site-header .brand-logo {
  width: 80px;
  height: 80px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong,
.footer-brand strong,
.section-heading h2,
.hero h1,
.contact-box h2,
.about-copy h2 {
  font-family: "Montserrat", sans-serif;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.brand-text span {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 600;
}

.site-nav a,
.footer-links a,
.footer-contact a {
  position: relative;
}

.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.section {
  margin-bottom: 24px;
  border: 1px solid rgba(0, 94, 214, 0.25);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 246, 255, 0.78));
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 34px;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--secondary-soft);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: 0.95;
  color: var(--primary);
  max-width: 11ch;
}

.hero p,
.section-heading p,
.info-card p,
.integration-list p,
.about-copy p,
.contact-box p,
.footer-brand p,
.overlay-copy span,
.media-caption,
.media-badge,
.hero-metrics span,
.panel-stats span,
.contact-grid p {
  color: var(--muted);
}

.hero p,
.section-heading p,
.contact-box p,
.about-copy p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 26, 72, 0.24);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-metrics article,
.panel-stats article {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-metrics strong,
.panel-stats strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: var(--primary);
}

.hero-media {
  display: grid;
  gap: 16px;
  align-content: center;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 40px rgba(0, 26, 72, 0.18);
}

.large-card {
  min-height: 360px;
}

.media-card img,
.media-card video,
.overlay-card img,
.info-card img {
  height: 100%;
  object-fit: cover;
}

.media-card::after,
.overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 26, 72, 0.02), rgba(0, 26, 72, 0.56));
  pointer-events: none;
}

.media-badge,
.media-caption,
.overlay-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 1;
  color: #fff;
}

.media-badge {
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0, 26, 72, 0.72);
  backdrop-filter: blur(12px);
  font-size: 0.95rem;
  line-height: 1.4;
}

.media-caption {
  bottom: 16px;
  font-size: 0.94rem;
}

.services,
.integrations,
.about,
.contact {
  padding: 32px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2,
.contact-box h2,
.about-copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  color: var(--primary);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  overflow: hidden;
  border-radius: 28px;
  border: 2px solid rgba(0, 94, 214, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.94));
  box-shadow: 0 18px 36px rgba(0, 26, 72, 0.08);
}

.info-card img {
  height: 230px;
}

.info-card h3,
.integration-list h3,
.contact-grid h3 {
  font-family: "Montserrat", sans-serif;
}

.info-card p {
  margin: 0;
  padding: 0 22px 24px;
  line-height: 1.65;
}

.integration-layout,
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.integration-list,
.about-copy,
.contact-box,
.about-panel {
  width: 100%;
  min-width: 0;
  border-radius: 28px;
  border: 2px solid rgba(0, 94, 214, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 246, 255, 0.88));
  box-shadow: 0 18px 36px rgba(0, 26, 72, 0.08);
}

.integration-list {
  padding: 10px;
}

.integration-list article {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(0, 94, 214, 0.12), rgba(255, 255, 255, 0.95));
  margin-bottom: 12px;
  border: 2px solid rgba(0, 94, 214, 0.15);
}

.integration-list article:last-child {
  margin-bottom: 0;
}

.integration-visual {
  min-height: 100%;
}

.overlay-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 430px;
  border-radius: 28px;
}

.overlay-copy {
  bottom: 18px;
}

.overlay-copy strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
}

.overlay-copy span {
  display: block;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.about-copy {
  padding: 28px;
}

.about-panel {
  padding: 18px;
  display: flex;
  align-items: end;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.contact-box {
  padding: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.contact-grid > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.contact-grid a,
.contact-grid p {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-grid a:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 2px solid rgba(0, 94, 214, 0.2);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.footer-brand,
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.footer-brand .brand-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.footer-brand div {
  min-width: 0;
}

.footer-brand p {
  margin: 6px 0 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  justify-self: end;
  max-width: 320px;
}

.footer-links a {
  color: var(--primary);
  font-weight: 600;

}

.footer-contact a {
  display: grid;
  align-items: center;
  color: inherit;
  font-weight: 600;
  margin-bottom: 0;
}

.footer-social-btn {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  min-height: 48px;
  width: 100%;
  padding: 0 16px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.1;
  color: #fff;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
}

.footer-social-label {
  display: block;
  text-align: left;
  line-height: 1.1;
}

.footer-social-btn svg,
.footer-social-btn img {
  width: 20px;
  height: 20px;
  justify-self: center;
  align-self: center;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer-social-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.36);
}

.fb-wa {
  background: linear-gradient(135deg, #25d366, #1fa855);
}

.fb-ig {
  background: linear-gradient(135deg, #405de6, #833ab4 44%, #fd1d1d 74%, #fcb045);
}

.fb-tt {
  background: linear-gradient(135deg, #010101, #212121 48%, #25f4ee 75%, #fe2c55);
  color: #fff;
}

.footer-contact a.fb-tt,
.footer-contact a.fb-tt .footer-social-label {
  color: #fff;
}

.fb-fb {
  background: linear-gradient(135deg, #1877f2, #1457b8);
}

.fb-ig img,
.fb-tt img,
.fb-fb img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.fb-tt img {
  transform: translateY(-1px);
}

.info-card h3 {
  margin: 18px 22px 10px;
  padding: 0;
  min-height: 1.4em;
  text-align: left;
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.wa-float-toggle {
  pointer-events: auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1fa855);
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  animation: wa-pulse 2.5s ease infinite;
}

.wa-float-toggle:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}

.wa-float-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 230px;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wa-float-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-float-option {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 26, 72, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 26, 72, 0.18);
  border-color: rgba(37, 211, 102, 0.5);
}

.wa-float-option strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.wa-float-option span {
  font-size: 0.8rem;
  color: #1fa855;
  font-weight: 600;
}

@keyframes wa-pulse {
  0% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.header-contacts {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-shrink: 0;
}

.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hc-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.hc-btn:hover {
  transform: translateY(-2px) scale(1.08);
  filter: brightness(1.12);
}

.hc-ig {
  background: linear-gradient(135deg, #405de6, #833ab4 44%, #fd1d1d 74%, #fcb045);
}

.hc-tt {
  background: #010101;
}

.hc-fb {
  background: linear-gradient(135deg, #1877f2, #1457b8);
}

@media (max-width: 1150px) {
  .header-contacts {
    display: none;
  }
}

.reveal {
  animation: rise 0.8s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero,
  .integration-layout,
  .about-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .overlay-card,
  .large-card {
    min-height: 280px;
  }
}

@media (max-width: 800px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 10px;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    border-radius: 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .services,
  .integrations,
  .about,
  .contact {
    padding: 22px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

/* Redesign overrides */

body {
  background-attachment: fixed;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.5;
}

.page-shell::before {
  top: 7%;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 94, 214, 0.34), rgba(0, 94, 214, 0));
}

.page-shell::after {
  bottom: 10%;
  left: -120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 26, 72, 0.2), rgba(0, 26, 72, 0));
}

.site-header {
  border-radius: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 28px 60px rgba(0, 26, 72, 0.16);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  background: rgba(0, 94, 214, 0.1);
  color: var(--secondary);
  transform: translateY(-1px);
}

.section {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 94, 214, 0.35), transparent);
}

.section:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 70px rgba(0, 26, 72, 0.14);
}

.hero {
  padding: 38px;
}

.hero-copy {
  gap: 20px;
}

.hero-actions .btn {
  position: relative;
  overflow: hidden;
}

.hero-actions .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35), transparent 55%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.hero-actions .btn:hover::after {
  transform: translateX(120%);
}

.hero-media {
  align-content: stretch;
}

.media-card {
  transform: translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.media-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0, 26, 72, 0.22);
}

.media-card img {
  transition: transform 0.7s ease;
}

.media-card:hover img {
  transform: scale(1.06);
}

.media-badge,
.media-caption {
  backdrop-filter: blur(12px);
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.integration-list article,
.contact-form-card,
.panel-card,
.contact-highlights article {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card:hover,
.integration-list article:hover,
.contact-form-card:hover,
.panel-card:hover,
.contact-highlights article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(0, 26, 72, 0.14);
  border-color: rgba(0, 94, 214, 0.2);
}

.info-card img {
  transition: transform 0.7s ease;
}

.info-card:hover img {
  transform: scale(1.05);
}

.integration-layout {
  align-items: stretch;
}

.integration-list {
  padding: 12px;
}

.integration-list article {
  position: relative;
  overflow: hidden;
}

.integration-list article::before,
.panel-card::before,
.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 94, 214, 0.12), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.integration-list article:hover::before,
.panel-card:hover::before,
.contact-form-card:hover::before {
  opacity: 1;
}

.overlay-card {
  min-height: 460px;
}

.overlay-card img {
  transition: transform 0.75s ease;
}

.overlay-card:hover img {
  transform: scale(1.05);
}

.about-grid {
  align-items: stretch;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 32px;
}

.about-panel {
  padding: 24px;
  gap: 18px;
  display: grid;
  align-content: start;
}

.panel-surface {
  display: grid;
  gap: 10px;
}

.panel-surface-primary {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(0, 26, 72, 0.98), rgba(0, 94, 214, 0.92));
  color: #fff;
  box-shadow: 0 24px 48px rgba(0, 26, 72, 0.18);
}

.panel-surface-primary .panel-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.panel-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 26, 72, 0.06);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.panel-surface-primary h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.08;
}

.panel-surface-primary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.panel-surface-grid {
  display: grid;
  gap: 12px;
}

.panel-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
  border: 2px solid rgba(0, 94, 214, 0.15);
}

.panel-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.panel-card strong,
.contact-card strong,
.contact-highlights strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
}

.panel-card span,
.contact-card span,
.contact-highlights span {
  color: var(--muted);
  line-height: 1.5;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  padding: 34px;
  border-radius: 32px;
  border: 2px solid rgba(0, 94, 214, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(241, 246, 255, 0.9));
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
}

.client-banner {
  padding: 28px 24px 30px;
}

.client-banner .section-heading {
  margin-bottom: 18px;
}

.client-banner .section-heading h2 {
  max-width: 16ch;
}

.client-marquee {
  overflow: hidden;
  border-radius: 26px;
  border: 2px solid rgba(0, 94, 214, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.92));
  box-shadow: 0 18px 36px rgba(0, 26, 72, 0.08);
}

.client-marquee-track {
  display: flex;
  width: max-content;
  animation: client-scroll 34s linear infinite;
}

.client-marquee-group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.client-marquee-item {
  display: grid;
  place-items: center;
  width: 160px;
  height: 90px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 26, 72, 0.08);
  box-shadow: 0 10px 22px rgba(0, 26, 72, 0.08);
  overflow: hidden;
}

.client-marquee-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

@keyframes client-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.contact-copy .eyebrow,
.contact-copy h2,
.contact-copy p,
.contact-highlights strong,
.contact-highlights span,
.contact-card h3,
.contact-card a,
.contact-card p {
  letter-spacing: 0;
}

.contact-copy h2 {
  margin: 0;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-highlights article {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.94));
  border: 2px solid rgba(0, 94, 214, 0.15);
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.94));
  border: 2px solid rgba(0, 94, 214, 0.2);
  box-shadow: 0 18px 36px rgba(0, 26, 72, 0.08);
}

.contact-form-card h3 {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
}

.contact-socials,
.contact-whatsapp {
  display: grid;
  gap: 10px;
}

.contact-socials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-whatsapp {
  margin-top: 10px;
}

.contact-captcha {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(0, 94, 214, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

.contact-captcha label {
  font-weight: 700;
  color: var(--primary);
}

.captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(110px, 0.8fr);
  gap: 10px;
  align-items: center;
}

.captcha-row span {
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(0, 26, 72, 0.2);
  background: rgba(243, 247, 255, 0.85);
  color: var(--primary);
  font-weight: 700;
}

.captcha-row input {
  width: 100%;
}

.contact-map {
  margin-top: 10px;
  border-radius: 20px;
  border: 2px solid rgba(0, 94, 214, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.94));
  overflow: hidden;
}

.contact-map-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
}

.contact-map-head strong {
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
}

.contact-map-head a {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}

.contact-map iframe {
  width: 100%;
  height: 190px;
  border: 0;
  display: block;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font: inherit;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.social-instagram {
  background: linear-gradient(135deg, #405de6, #833ab4 44%, #fd1d1d 74%, #fcb045);
  box-shadow: 0 14px 24px rgba(131, 58, 180, 0.28);
}

.social-tiktok {
  background: linear-gradient(135deg, #111111, #1f1f1f 42%, #25f4ee 72%, #fe2c55);
  box-shadow: 0 14px 24px rgba(20, 20, 20, 0.28);
}

.social-facebook {
  background: linear-gradient(135deg, #1877f2, #1457b8);
  box-shadow: 0 14px 24px rgba(24, 119, 242, 0.28);
}

.social-whatsapp {
  background: linear-gradient(135deg, #25d366, #1fa855);
  box-shadow: 0 14px 24px rgba(37, 211, 102, 0.28);
}

.form-intro,
.contact-note {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-note {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  display: none;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #116233;
}

.form-status.is-error {
  background: rgba(224, 57, 57, 0.12);
  border: 1px solid rgba(224, 57, 57, 0.28);
  color: #7a1e1e;
}

.status-popup {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  background: rgba(0, 26, 72, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.status-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.status-popup-card {
  width: min(420px, calc(100% - 28px));
  border-radius: 18px;
  padding: 20px;
  border: 2px solid rgba(0, 94, 214, 0.2);
  background: #fff;
  box-shadow: 0 24px 48px rgba(0, 26, 72, 0.28);
}

.status-popup-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
}

.status-popup-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.status-popup-close {
  margin-top: 14px;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  cursor: pointer;
}

.status-popup.is-success .status-popup-card {
  border-color: rgba(37, 211, 102, 0.35);
}

.status-popup.is-error .status-popup-card {
  border-color: rgba(224, 57, 57, 0.3);
}

.contact-form label {
  font-weight: 700;
  color: var(--primary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 26, 72, 0.2);
  border-radius: 12px;
  background: #fff;
  padding: 11px 12px;
  font: inherit;
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 26, 72, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 94, 214, 0.16);
}

.form-submit {
  margin-top: 6px;
  border: none;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 16px 24px rgba(0, 26, 72, 0.22);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(0, 26, 72, 0.28);
  filter: brightness(1.05);
}

.contact-highlights article:hover strong {
  color: var(--secondary);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 60px rgba(0, 26, 72, 0.16);
}

.section,
.contact-layout,
.site-footer,
.about-panel,
.contact-form-card,
.panel-card {
  backdrop-filter: blur(18px);
}

.site-footer {
  margin-top: 8px;
  border-radius: 30px;
}

.site-legal {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 94, 214, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.site-legal-separator {
  color: rgba(0, 26, 72, 0.35);
  font-weight: 700;
}

.site-legal-link {
  display: inline-flex;
  align-items: center;
}

.site-legal img {
  width: 54px;
  height: auto;
  display: block;
}

.contact-layout h2,
.contact-layout .eyebrow,
.about-grid h2,
.about-grid .eyebrow {
  margin-bottom: 0;
}

.about-copy,
.contact-copy {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 246, 255, 0.88));
  border: 2px solid rgba(0, 94, 214, 0.2);
  border-radius: 28px;
}

.about-copy {
  box-shadow: 0 18px 36px rgba(0, 26, 72, 0.08);
}

.contact-copy {
  padding: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Costos page */

.costos-page {
  padding: 30px;
}

.costos-head h1 {
  margin: 12px 0 8px;
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
}

.costos-head p {
  margin: 0;
  max-width: 74ch;
  line-height: 1.65;
  color: var(--muted);
}

.costos-size-switch {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-chip,
.zone-chip {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 26, 72, 0.16);
  background: #fff;
  color: var(--primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.size-chip:hover,
.zone-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 26, 72, 0.12);
}

.size-chip.is-active,
.zone-chip.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.costos-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.costos-card {
  border: 2px solid rgba(0, 94, 214, 0.18);
  border-radius: 22px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.92));
  padding: 18px;
}

.costos-card h2,
.costos-card h3 {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
}

.costos-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.costos-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
}

.costos-table th,
.costos-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(0, 26, 72, 0.1);
  text-align: left;
}

.costos-table thead th {
  background: rgba(0, 94, 214, 0.08);
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
}

.costos-table tbody tr:last-child td,
.costos-table tbody tr:last-child th {
  border-bottom: 0;
}

.costos-table td.is-active,
.costos-table th.is-active {
  background: rgba(0, 94, 214, 0.14);
  color: var(--primary);
  font-weight: 700;
}

.cost-summary-title {
  margin: 0 0 10px;
  color: var(--muted);
}

.cost-summary ul {
  margin: 0 0 14px;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.costos-map-shell {
  margin-top: 20px;
  border: 2px solid rgba(0, 94, 214, 0.2);
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 255, 0.92));
  padding: 16px;
}

.map-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.zone-chip.zone-caba {
  border-color: rgba(44, 143, 77, 0.36);
}

.zone-chip.zone-gba1 {
  border-color: rgba(207, 188, 112, 0.54);
}

.zone-chip.zone-gba2 {
  border-color: rgba(230, 139, 46, 0.54);
}

.zone-chip.zone-gba3 {
  border-color: rgba(185, 92, 24, 0.54);
}

.costos-map-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: start;
}

.costos-map {
  margin: 0;
  border-radius: 20px;
  border: 2px solid rgba(0, 26, 72, 0.1);
  background: linear-gradient(180deg, #f7fbff, #f0f6ff);
  overflow: hidden;
}

.costos-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.zone-shape {
  stroke: rgba(0, 26, 72, 0.28);
  stroke-width: 2;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.zone-shape.zone-caba {
  fill: #84c79c;
}

.zone-shape.zone-gba1 {
  fill: #e7dba0;
}

.zone-shape.zone-gba2 {
  fill: #f09c4f;
}

.zone-shape.zone-gba3 {
  fill: #d7772f;
}

.map-point {
  cursor: default;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.map-point circle {
  fill: rgba(0, 26, 72, 0.88);
  stroke: #fff;
  stroke-width: 2;
}

.map-point text {
  fill: #fff;
  font-size: 11px;
  text-anchor: middle;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

.map-point.is-hovered {
  transform: scale(1.2);
}

.map-point.is-hovered circle {
  fill: #005ed6;
}

.map-point.is-dim,
.zone-shape.is-dim,
.party-group.is-dim {
  opacity: 0.2;
}

.map-info {
  border: 2px solid rgba(0, 94, 214, 0.14);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
}

.map-info h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
}

.map-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.zone-legend {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.legend-item.zone-caba {
  background: rgba(132, 199, 156, 0.34);
}

.legend-item.zone-gba1 {
  background: rgba(231, 219, 160, 0.44);
}

.legend-item.zone-gba2 {
  background: rgba(240, 156, 79, 0.34);
}

.legend-item.zone-gba3 {
  background: rgba(215, 119, 47, 0.34);
}

.party-lists {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.party-group {
  border: 1px solid rgba(0, 26, 72, 0.1);
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  transition: opacity 0.2s ease;
}

.party-group h4 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
  font-size: 0.95rem;
}

.party-group ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.party-group li {
  cursor: default;
}

.party-group li.is-hovered {
  color: var(--secondary);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .hero,
  .integration-layout,
  .about-grid,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .costos-grid,
  .costos-map-wrap,
  .party-lists {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .contact-socials {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-self: stretch;
    max-width: 100%;
  }

  .site-footer {
    text-align: center;
    justify-items: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    align-items: center;
    width: 100%;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-social-btn {
    max-width: 430px;
    margin: 0 auto;
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .client-marquee-item {
    width: 144px;
    height: 80px;
  }

  .overlay-card,
  .large-card {
    min-height: 300px;
  }
}

@media (max-width: 800px) {
  .hero,
  .services,
  .integrations,
  .about,
  .contact {
    padding: 20px;
  }

  .costos-page {
    padding: 20px;
  }

  .costos-size-switch {
    gap: 8px;
  }

  .size-chip,
  .zone-chip {
    min-height: 38px;
    font-size: 0.82rem;
  }

  .costos-card {
    padding: 14px;
  }

  .costos-table th,
  .costos-table td {
    padding: 10px 8px;
    font-size: 0.84rem;
  }

  .costos-map-shell {
    padding: 12px;
  }

  .map-info {
    padding: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 22px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .site-nav {
    gap: 10px;
  }

  .contact-layout,
  .about-panel {
    padding: 20px;
  }

  .contact-btn {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.8rem;
    border-radius: 12px;
  }

  .contact-socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 360px;
  }

  .contact-whatsapp {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
    max-width: 360px;
  }

  .contact-socials .contact-btn,
  .contact-whatsapp .contact-btn {
    width: 100%;
  }

  .contact-map-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-map iframe {
    height: 170px;
  }

  .site-footer {
    padding: 18px;
    gap: 14px;
  }

  .footer-brand {
    align-items: flex-start;
    gap: 10px;
    width: auto;
    margin: 0 auto;
  }

  .footer-links {
    margin-top: 12px;
  }

  .footer-brand .brand-logo {
    width: 62px;
    height: 62px;
  }

  .footer-brand div {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer-contact {
    margin-top: 12px;
    gap: 10px;
    align-items: center;
  }

  .footer-social-btn {
    min-height: 40px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 0.8rem;
    grid-template-columns: 16px minmax(0, 1fr);
    max-width: 320px;
  }

  .footer-social-btn svg,
  .footer-social-btn img {
    width: 16px;
    height: 16px;
  }

  .site-legal {
    padding: 10px;
    font-size: 0.78rem;
    flex-direction: column;
  }

  .site-legal img {
    width: 46px;
  }

  .client-banner {
    padding: 20px;
  }

  .client-banner .section-heading h2 {
    max-width: 100%;
  }

  .client-marquee-group {
    gap: 12px;
    padding: 14px;
  }

  .client-marquee-item {
    width: 128px;
    height: 72px;
    border-radius: 16px;
  }

  .client-marquee-item img {
    max-height: 44px;
  }

  .captcha-row {
    grid-template-columns: 1fr;
  }

  .client-banner {
    padding: 20px;
  }

  .client-banner .section-heading h2 {
    max-width: 100%;
  }

  .client-marquee-group {
    gap: 12px;
    padding: 14px;
  }

  .client-marquee-item {
    width: 128px;
    height: 72px;
    border-radius: 16px;
  }

  .client-marquee-item img {
    max-height: 44px;
  }

  .captcha-row {
    grid-template-columns: 1fr;
  }
}