/* =========================================================
   Primomarka Frontend Custom Overrides
   --------------------------------------------------------- */

:root {
  --color-primary: #004aad;
  --color-primary-dark: #002a6e;
  --color-accent: #ffd500;
  --color-surface: #ffffff;
  --color-surface-light: #f7f9fc;
  --color-text: #0f172a;
  --color-muted: #475569;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 18px 36px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --transition-base: 220ms ease;
  --navbar-height: 82px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--color-text);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}

a:hover {
  color: var(--color-primary);
}

/* =====================
   Preloader
===================== */
.preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(248, 250, 252, 0.96);
  z-index: 1400;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.preloader__inner img {
  width: clamp(60px, 10vw, 96px);
  height: auto;
  border-radius: 50%;
  padding: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 74, 173, 0.12), transparent 70%);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18), inset 0 0 0 1px rgba(255, 213, 0, 0.25);
}

.preloader__bar {
  width: clamp(160px, 30vw, 240px);
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.preloader__progress {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  animation: preloaderSweep 1.4s ease-in-out infinite;
}

@keyframes preloaderSweep {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(-35%); }
  100% { transform: translateX(100%); }
}

/* =====================
   Navbar
===================== */
.primomarka-navbar {
  background: rgba(0, 74, 173, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 42, 110, 0.35);
  transition: background 0.6s ease, box-shadow 0.6s ease;
}

.primomarka-navbar.scrolled {
  background: rgba(0, 74, 173, 0.98);
  box-shadow: 0 16px 28px rgba(0, 42, 110, 0.42);
}

.primomarka-navbar .brand-logo {
  width: clamp(44px, 4vw, 56px);
  height: clamp(44px, 4vw, 56px);
  border-radius: 50%;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 42, 110, 0.35), inset 0 0 0 1px rgba(255, 213, 0, 0.35);
  object-fit: contain;
  object-position: center;
}

.primomarka-navbar .brand-copy {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.86) !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition-base);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-base);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}

.dropdown-menu {
  background: rgba(5, 12, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.85);
}

.dropdown-item:hover {
  background: rgba(0, 74, 173, 0.35);
  color: #fff;
}

.thm-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.9rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #ffd500, #ffb000);
  color: #0e213c;
  font-weight: 600;
  border: none;
  box-shadow: 0 20px 40px rgba(255, 208, 0, 0.25);
  letter-spacing: 0.02em;
  transition: transform var(--transition-base), box-shadow var(--transition-base), filter var(--transition-base);
}

.thm-btn.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 74, 173, 0.45);
  filter: saturate(1.05);
}

.thm-btn-two {
  background: #ffffff;
  color: var(--color-primary);
  border: 1px solid rgba(0, 74, 173, 0.25);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

/* =====================
   Hero Section
===================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--navbar-height) + 4rem);
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 74, 173, 0.28) 0%, rgba(0, 74, 173, 0.12) 40%, #ffffff 72%);
  overflow: hidden;
}

.hero__layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 992px) {
  .hero__layout {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
  }
}

.hero__copy {
  max-width: 640px;
}

.hero__subheadline {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__subheadline::after {
  content: "";
  display: inline-block;
  width: clamp(40px, 10vw, 90px);
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.28), transparent);
}

.hero__headline {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero__headline-lead {
  display: inline-block;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
}

.neon-text {
  color: #0f172a;
  -webkit-text-fill-color: currentColor;
}

.glow-text {
  text-shadow: 0 0 18px rgba(255, 213, 0, 0.25), 0 0 28px rgba(0, 74, 173, 0.25);
}

.hero__typewriter {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 1.2em;
  overflow: hidden;
  color: #0f172a;
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

.hero__media-image-wrapper {
  position: relative;
  max-width: clamp(320px, 50vw, 520px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}

.hero__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.hero__typewriter::after {
  content: "|";
  color: var(--color-primary);
  margin-left: 0.12em;
  font-weight: 600;
  text-shadow: none;
  animation: blink 1s steps(1, end) infinite;
}

.typewriter-text {
  display: inline-block;
  color: inherit;
  background: none;
  -webkit-text-fill-color: currentColor;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero__tagline {
  color: rgba(71, 85, 105, 0.92);
  font-size: 1.08rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.metrics-counter {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.metrics-counter__item {
  text-align: center;
}

.metrics-counter__value {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
}

.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}

.laptop-3d {
  transform-style: preserve-3d;
  transform: rotateY(-6deg) rotateX(12deg);
  transition: transform 0.6s ease;
}

.screen {
  width: clamp(320px, 52vw, 620px);
  height: clamp(220px, 36vw, 380px);
  border-radius: 20px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.2);
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laptop-base {
  width: clamp(340px, 55vw, 660px);
  height: 16px;
  margin: -8px auto 0;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(90deg, #cbd5f5, #94a3b8);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 10px 28px rgba(15, 23, 42, 0.18);
}

.ambient-glow {
  position: absolute;
  inset: -28px;
  background: transparent;
  filter: blur(6px);
  animation: ambientPulse 6s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes ambientPulse {
  from { opacity: 0.4; transform: scale(0.98); }
  to { opacity: 0.8; transform: scale(1.08); }
}

.light-reflection {
  position: absolute;
  inset: -20% 10%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05), transparent 65%);
  transform: translateX(-120%) rotate(8deg);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

/* =====================
   Sections & Cards
===================== */
.page-section {
  padding: 5rem 0;
  position: relative;
  color: var(--color-text);
}

.page-section.slice--surface {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.page-section__heading .subtitle {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.76rem;
  color: rgba(15, 23, 42, 0.55);
}

.lead,
.text-muted {
  color: rgba(71, 85, 105, 0.8) !important;
}

.value-card,
.service-card,
.project-card,
.team-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover,
.service-card:hover,
.project-card:hover,
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.footer-brand .brand-logo {
  width: clamp(56px, 8vw, 72px);
  height: clamp(56px, 8vw, 72px);
  border-radius: 50%;
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18), inset 0 0 0 1px rgba(255, 213, 0, 0.2);
  object-fit: contain;
  object-position: center;
}

.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer p,
.site-footer li,
.site-footer span,
.site-footer small,
.site-footer .footer-widget__text,
.site-footer .footer-widget__info,
.site-footer .footer-widget__info li,
.site-footer .footer-widget__info a,
.site-footer .footer-widget__title,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6,
.site-footer .text-muted,
.site-footer .lead {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer .text-muted {
  color: rgba(255, 255, 255, 0.92) !important;
}

.site-footer .footer-nav a,
.site-footer .footer-contact a {
  color: rgba(255, 255, 255, 0.95);
}

.site-footer .footer-nav a:hover,
.site-footer .footer-contact a:hover {
  color: var(--color-accent);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
  color: var(--color-accent);
}

.footer-social {
  gap: 1.25rem;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
  background: rgba(255, 213, 0, 0.2);
  color: var(--color-accent);
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-social__icon {
  display: inline-flex;
}

.footer-bottom {
  border-color: rgba(255, 255, 255, 0.18) !important;
}

/* =====================
   Helpers
===================== */
.magnet-link {
  position: relative;
  display: inline-flex;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-control,
.form-select,
textarea {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: rgba(0, 74, 173, 0.45);
  box-shadow: 0 10px 24px rgba(0, 74, 173, 0.15);
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: calc(var(--navbar-height) + 2rem);
  }
  .hero__layout {
    gap: 2.5rem;
  }
  .navbar-cta {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero__headline {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }
  .screen {
    width: 100%;
    height: 260px;
  }
}

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

/* =========================================================
   2026 UI Overhaul
   --------------------------------------------------------- */

:root {
  --pm-bg: #09111f;
  --pm-bg-soft: #0f1b2f;
  --pm-panel: rgba(255, 255, 255, 0.72);
  --pm-panel-strong: rgba(255, 255, 255, 0.88);
  --pm-line: rgba(124, 146, 179, 0.22);
  --pm-ink: #081120;
  --pm-ink-soft: #43536d;
  --pm-blue: #0f5bd8;
  --pm-cyan: #73d4ff;
  --pm-gold: #ffc83d;
  --pm-mint: #79f0c5;
  --pm-gradient: linear-gradient(135deg, #071120 0%, #0d2a57 42%, #0f5bd8 100%);
  --pm-card-shadow: 0 24px 80px rgba(8, 17, 32, 0.14);
  --pm-card-shadow-hover: 0 34px 90px rgba(8, 17, 32, 0.2);
}

body {
  background:
    radial-gradient(circle at top left, rgba(115, 212, 255, 0.16), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(255, 200, 61, 0.16), transparent 22%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 38%, #f4f8ff 100%);
  color: var(--pm-ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 91, 216, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 91, 216, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 72%);
  z-index: -1;
}

a {
  color: var(--pm-blue);
}

a:hover {
  color: #083f9c;
}

.primomarka-navbar {
  background: rgba(7, 17, 32, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(7, 17, 32, 0.22);
}

.primomarka-navbar.scrolled {
  background: rgba(7, 17, 32, 0.88);
}

.primomarka-navbar .brand-copy {
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: -0.01em;
}

.hero {
  min-height: auto;
  padding-top: calc(var(--navbar-height) + 3rem);
  padding-bottom: 7rem;
  background:
    radial-gradient(circle at 16% 18%, rgba(115, 212, 255, 0.24), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(255, 200, 61, 0.18), transparent 20%),
    linear-gradient(180deg, #f6faff 0%, #eef5ff 32%, rgba(255, 255, 255, 0.98) 82%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.hero::before {
  width: 320px;
  height: 320px;
  left: -60px;
  top: 120px;
  background: rgba(115, 212, 255, 0.18);
}

.hero::after {
  width: 280px;
  height: 280px;
  right: -40px;
  top: 80px;
  background: rgba(255, 200, 61, 0.14);
}

.hero__layout {
  gap: 4rem;
}

.hero__copy {
  max-width: 690px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 91, 216, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 30px rgba(8, 17, 32, 0.08);
}

.hero__eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm-gold), #ff8f3d);
  box-shadow: 0 0 0 6px rgba(255, 200, 61, 0.16);
}

.hero__subheadline {
  margin-top: 1rem;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  color: rgba(8, 17, 32, 0.7);
}

.hero__headline {
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.hero__headline-lead {
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  letter-spacing: 0.24em;
  color: var(--pm-blue);
}

.hero__typewriter {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--pm-ink);
}

.hero__tagline {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(67, 83, 109, 0.96);
  max-width: 54ch;
}

.hero__support-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}

.hero__support-item {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0;
  border-radius: 999px;
  color: rgba(8, 17, 32, 0.72);
  font-size: 0.84rem;
  font-weight: 500;
}

.hero__support-item::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm-blue), var(--pm-gold));
}

.hero__actions {
  margin-top: 1.5rem;
}

.thm-btn {
  background: linear-gradient(135deg, #ffd55c 0%, #ffc83d 38%, #ffae2b 100%);
  color: #09111f;
  box-shadow: 0 18px 46px rgba(255, 183, 43, 0.3);
}

.thm-btn-two {
  background: rgba(255, 255, 255, 0.78);
  color: var(--pm-blue);
  border: 1px solid rgba(15, 91, 216, 0.14);
  backdrop-filter: blur(14px);
}

.metrics-counter {
  gap: 1rem;
}

.metrics-counter__item {
  min-width: 150px;
  padding: 1rem 1.1rem;
  text-align: left;
  border-radius: 22px;
  border: 1px solid rgba(15, 91, 216, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(8, 17, 32, 0.08);
}

.metrics-counter__value {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--pm-blue);
}

.hero__media-simple {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.glass-panel,
.glass-card,
.process-card,
.quote-card,
.segment-card,
.advantage-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero__media-card {
  position: relative;
  border-radius: 30px;
}

.screen {
  width: clamp(320px, 48vw, 620px);
  height: clamp(240px, 34vw, 392px);
  padding: 12px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(233, 242, 255, 0.72)),
    linear-gradient(120deg, rgba(15, 91, 216, 0.22), transparent 65%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 34px 100px rgba(8, 17, 32, 0.18);
}

.hero__video,
.screen video {
  border-radius: 20px;
}

.laptop-base {
  height: 18px;
  background: linear-gradient(90deg, #dfe7f4, #b6c7de);
}

.ambient-glow {
  inset: -42px;
}

.light-reflection {
  inset: -24% 6%;
}

.hero__media-caption {
  position: relative;
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(8, 17, 32, 0.08);
}

.hero__media-caption-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pm-blue);
}

.hero__media-caption p {
  color: var(--pm-ink-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.page-section {
  padding: 5.8rem 0;
}

.page-section.slice--surface {
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.8), rgba(255, 255, 255, 0.98));
  border: none;
}

.section-shell {
  padding: 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 70px rgba(8, 17, 32, 0.08);
  backdrop-filter: blur(16px);
}

.page-section__heading .subtitle {
  color: var(--pm-blue);
  font-weight: 700;
}

.lead,
.text-muted {
  color: rgba(67, 83, 109, 0.94) !important;
}

.value-card,
.service-card,
.project-card,
.team-card,
.glass-card,
.process-card,
.quote-card,
.segment-card,
.advantage-card,
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 249, 255, 0.76));
  box-shadow: var(--pm-card-shadow);
}

.value-card::before,
.service-card::before,
.project-card::before,
.team-card::before,
.glass-card::before,
.process-card::before,
.quote-card::before,
.segment-card::before,
.advantage-card::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(115, 212, 255, 0.12), transparent 35%, rgba(255, 200, 61, 0.08) 100%);
  pointer-events: none;
}

.value-card:hover,
.service-card:hover,
.project-card:hover,
.team-card:hover,
.glass-card:hover,
.process-card:hover,
.quote-card:hover,
.segment-card:hover,
.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pm-card-shadow-hover);
}

.card-pointer {
  display: inline-flex;
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 91, 216, 0.14), rgba(255, 200, 61, 0.22));
  box-shadow: inset 0 0 0 1px rgba(15, 91, 216, 0.12);
}

.pointer-card::after,
.segment-card::after,
.advantage-card::after,
.process-card::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm-gold), var(--pm-blue));
  box-shadow: 0 0 0 8px rgba(15, 91, 216, 0.06);
}

.service-card {
  padding: 1.9rem;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1rem;
  border-radius: 20px;
  background: var(--pm-gradient);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 36px rgba(15, 91, 216, 0.22);
}

.service-card__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.6rem;
}

.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm-blue), var(--pm-gold));
}

.process-card,
.quote-card,
.segment-card,
.advantage-card {
  padding: 1.75rem;
}

.process-card__step {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(8, 17, 32, 0.92);
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.integration-chip {
  padding: 1.1rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 91, 216, 0.1);
  box-shadow: 0 16px 36px rgba(8, 17, 32, 0.08);
  color: var(--pm-ink);
  font-weight: 500;
}

.quote-card__mark {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 3rem;
  line-height: 1;
  color: rgba(15, 91, 216, 0.18);
}

.cta-band {
  background: linear-gradient(135deg, rgba(7, 17, 32, 0.98), rgba(13, 42, 87, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(8, 17, 32, 0.24);
}

.cta-band h2,
.cta-band .subtitle,
.cta-band p {
  position: relative;
  color: #fff !important;
}

.cta-band .subtitle {
  color: rgba(255, 200, 61, 0.9) !important;
}

.btn.btn-outline-primary {
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  border-color: rgba(15, 91, 216, 0.22);
  color: var(--pm-blue);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 28px rgba(8, 17, 32, 0.06);
}

.btn.btn-outline-primary:hover {
  background: var(--pm-blue);
  border-color: var(--pm-blue);
}

.floating-contact-btn {
  border-radius: 999px;
  background: rgba(7, 17, 32, 0.92);
  color: #fff !important;
  box-shadow: 0 22px 45px rgba(8, 17, 32, 0.22);
}

.floating-contact-btn:hover {
  background: var(--pm-blue);
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(115, 212, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #081120 0%, #0b1730 100%);
}

.navbar-utility {
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-utility__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.navbar-utility__link {
  color: #fff;
  font-weight: 600;
}

.navbar-cta__cluster {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.1rem;
  border-radius: 999px;
  background: rgba(121, 240, 197, 0.14);
  color: #fff;
  border: 1px solid rgba(121, 240, 197, 0.24);
  font-weight: 600;
  box-shadow: 0 14px 26px rgba(8, 17, 32, 0.18);
}

.navbar-whatsapp:hover {
  color: #09111f;
  background: var(--pm-mint);
}

.page-banner {
  position: relative;
  padding: calc(var(--navbar-height) + 3rem) 0 3.2rem;
}

.page-banner__shell {
  position: relative;
  padding: 2.6rem;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(115, 212, 255, 0.18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 200, 61, 0.14), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 247, 255, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 90px rgba(8, 17, 32, 0.1);
}

.page-banner__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 91, 216, 0.06), transparent 45%),
    linear-gradient(300deg, rgba(255, 200, 61, 0.08), transparent 45%);
  pointer-events: none;
}

.page-banner__eyebrow {
  display: inline-flex;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(7, 17, 32, 0.92);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-banner__title {
  margin: 1.4rem 0 1rem;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.page-banner__lead {
  max-width: 58ch;
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--pm-ink-soft);
}

.page-banner__chips,
.page-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.page-banner__chips {
  margin-top: 1.4rem;
}

.page-banner__actions {
  margin-top: 1.8rem;
}

.page-banner__chip {
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 91, 216, 0.12);
  box-shadow: 0 12px 28px rgba(8, 17, 32, 0.06);
  font-size: 0.84rem;
  color: var(--pm-ink);
}

.page-banner__panel {
  position: relative;
  padding: 1.4rem;
  border-radius: 28px;
  background: rgba(8, 17, 32, 0.88);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(8, 17, 32, 0.24);
}

.page-banner__panel-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(121, 240, 197, 0.84);
}

.page-banner__panel-list {
  display: grid;
  gap: 0.9rem;
}

.page-banner__panel-item {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.page-banner__panel-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.page-banner__panel-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.insight-stack,
.contact-card-stack {
  display: grid;
  gap: 1rem;
}

.service-rhythm-list li {
  position: relative;
  padding-left: 1rem;
}

.service-rhythm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pm-blue), var(--pm-gold));
}

.support-band {
  position: relative;
  padding: 2rem;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(115, 212, 255, 0.16), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(255, 200, 61, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 247, 255, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 90px rgba(8, 17, 32, 0.1);
}

.support-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 91, 216, 0.06), transparent 38%);
  pointer-events: none;
}

.support-band__intro {
  position: relative;
  height: 100%;
  padding: 1.1rem;
}

.support-band__eyebrow {
  display: inline-flex;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  background: rgba(7, 17, 32, 0.92);
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.support-band__title {
  margin: 1.25rem 0 0.8rem;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.support-band__lead {
  color: var(--pm-ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 32ch;
}

.support-band__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.support-band__meta-chip {
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 91, 216, 0.12);
  font-size: 0.82rem;
  color: var(--pm-ink);
}

.support-card {
  position: relative;
  height: 100%;
  padding: 1.45rem;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(8, 17, 32, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(15, 91, 216, 0.08), transparent 48%, rgba(255, 200, 61, 0.06));
  pointer-events: none;
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(8, 17, 32, 0.14);
  border-color: rgba(15, 91, 216, 0.18);
}

.support-card--whatsapp {
  background: linear-gradient(180deg, rgba(233, 255, 247, 0.92), rgba(243, 255, 250, 0.86));
}

.support-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: var(--pm-gradient);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(15, 91, 216, 0.22);
}

.support-card--whatsapp .support-card__icon {
  background: linear-gradient(135deg, #0d7f58, #1dbf73);
  box-shadow: 0 14px 30px rgba(29, 191, 115, 0.22);
}

.support-card__label {
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pm-blue);
}

.support-card__value {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--pm-ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.5;
  word-break: break-word;
}

.support-card__copy {
  color: var(--pm-ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.about-band {
  position: relative;
  padding: 2.1rem;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(115, 212, 255, 0.14), transparent 24%),
    radial-gradient(circle at 90% 14%, rgba(255, 200, 61, 0.14), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 248, 255, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 90px rgba(8, 17, 32, 0.1);
}

.about-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 91, 216, 0.06), transparent 38%);
  pointer-events: none;
}

.about-band__story {
  position: relative;
  height: 100%;
  padding: 1.15rem;
}

.about-band__title {
  margin: 1rem 0 1rem;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 14ch;
}

.about-band__lead {
  margin-bottom: 1rem;
  color: var(--pm-ink);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 60ch;
}

.about-band__panel {
  position: relative;
  height: 100%;
  padding: 1.45rem;
  border-radius: 30px;
  background: rgba(8, 17, 32, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(8, 17, 32, 0.26);
}

.about-band__panel-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(121, 240, 197, 0.86);
}

.about-band__panel-list {
  display: grid;
  gap: 0.95rem;
}

.about-band__panel-item {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.about-band__panel-item strong {
  display: block;
  margin-bottom: 0.38rem;
}

.about-band__panel-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.7;
}

.about-capability-card {
  position: relative;
  height: 100%;
  padding: 1.55rem;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 255, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 52px rgba(8, 17, 32, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-capability-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(15, 91, 216, 0.08), transparent 48%, rgba(255, 200, 61, 0.06));
  pointer-events: none;
}

.about-capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(8, 17, 32, 0.14);
}

.about-capability-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: var(--pm-gradient);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 14px 30px rgba(15, 91, 216, 0.22);
}

@media (max-width: 1199.98px) {
  .page-banner__shell {
    padding: 2rem;
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: calc(var(--navbar-height) + 2.2rem);
    padding-bottom: 5rem;
  }

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

  .section-shell {
    padding: 1.4rem;
  }

  .page-banner {
    padding-top: calc(var(--navbar-height) + 2rem);
  }

  .navbar-cta__cluster {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .support-band {
    padding: 1.4rem;
  }

  .about-band {
    padding: 1.45rem;
  }
}

@media (max-width: 575.98px) {
  .hero__headline {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
  }

  .hero__typewriter {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .metrics-counter__item,
  .hero__media-caption {
    width: 100%;
  }

  .service-card,
  .process-card,
  .quote-card,
  .segment-card,
  .advantage-card,
  .value-card {
    padding: 1.35rem;
  }

  .page-banner__shell {
    padding: 1.4rem;
  }

  .page-banner__title {
    font-size: clamp(2rem, 11vw, 2.9rem);
  }
}
