: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 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
}

.info-card p {
  margin: 0;
  padding: 0 22px 24px;
  line-height: 1.65;
}

.info-card h3 {
  padding: 18px 22px 0;
}

.integration-layout,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.integration-list,
.about-copy,
.contact-box,
.about-panel {
  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,
.footer-contact a {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-grid a:last-child,
.footer-contact a:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  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;
}

.footer-brand p {
  margin: 6px 0 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-links a {
  color: var(--primary);
  font-weight: 600;
}

.footer-contact a {
  color: var(--primary);
  font-weight: 600;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  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-btn svg,
.footer-social-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.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);
}

.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
  justify-content: flex-start;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 26, 72, 0.18);
}

.footer-social-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.footer-social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(1.15);
  box-shadow: 0 10px 28px rgba(0, 26, 72, 0.24);
}

.fsi-ig {
  background: linear-gradient(135deg, #405de6, #833ab4 44%, #fd1d1d 74%, #fcb045);
}

.fsi-tt {
  background: #010101;
}

.fsi-fb {
  background: linear-gradient(135deg, #1877f2, #1457b8);
}

/* 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;
  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;
}

.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-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;
}

.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;
}

.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);
}

@media (max-width: 1024px) {
  .hero,
  .integration-layout,
  .about-grid,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .contact-socials {
    grid-template-columns: 1fr;
  }

  .overlay-card,
  .large-card {
    min-height: 300px;
  }
}

@media (max-width: 800px) {
  .hero,
  .services,
  .integrations,
  .about,
  .contact {
    padding: 20px;
  }

  .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: 46px;
  }
}