@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Public+Sans:wght@600;700;800&display=swap");

:root {
  --bp-navy-950: #081523;
  --bp-navy-900: #0d2238;
  --bp-navy-800: #133250;
  --bp-navy-700: #1c4d73;
  --bp-blue-500: #2182b8;
  --bp-blue-400: #3898c9;
  --bp-coral-500: #de5f4c;
  --bp-coral-400: #eb7765;
  --bp-coral-soft: rgba(222, 95, 76, 0.14);
  --bp-blue-soft: rgba(33, 130, 184, 0.12);
  --bp-warm-100: #f5efe7;
  --bp-warm-200: #ebe2d6;
  --bp-sky-100: #eef4f8;
  --bp-sky-200: #dfe9f1;
  --bp-white: #ffffff;
  --bp-text: #152536;
  --bp-muted: #5d6c7d;
  --bp-muted-strong: #48586a;
  --bp-border: rgba(13, 34, 56, 0.12);
  --bp-border-strong: rgba(13, 34, 56, 0.2);
  --bp-shadow-sm: 0 18px 38px rgba(8, 21, 35, 0.07);
  --bp-shadow-md: 0 24px 52px rgba(8, 21, 35, 0.11);
  --bp-shadow-lg: 0 36px 82px rgba(8, 21, 35, 0.16);
  --bp-radius-sm: 0.95rem;
  --bp-radius-md: 1.35rem;
  --bp-radius-lg: 1.75rem;
  --bp-radius-xl: 2.25rem;
  --bp-transition: 200ms ease;
  --bp-font: "Manrope", "Segoe UI", sans-serif;
  --bp-display: "Public Sans", "Segoe UI", sans-serif;

  --bs-body-font-family: var(--bp-font);
  --bs-body-color: var(--bp-text);
  --bs-body-bg: #f8fafc;
  --bs-link-color: var(--bp-navy-800);
  --bs-link-hover-color: var(--bp-navy-900);
  --bs-border-color: var(--bp-border);
  --bs-border-radius: var(--bp-radius-sm);
  --bs-focus-ring-color: rgba(33, 130, 184, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--bp-font);
  line-height: 1.72;
  color: var(--bp-text);
  background:
    radial-gradient(circle at top left, rgba(33, 130, 184, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(222, 95, 76, 0.12), transparent 24%),
    linear-gradient(180deg, #eef3f7 0, var(--bp-warm-100) 18%, #fbfcfd 42%, #f5f7fa 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  inset: auto;
  z-index: 0;
}

body::before {
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(13, 34, 56, 0.024) 120px 121px);
  opacity: 0.34;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 44%);
}

body::after {
  right: -9rem;
  bottom: -8rem;
  width: min(38vw, 30rem);
  height: min(38vw, 30rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 130, 184, 0.1), transparent 68%);
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

::selection {
  background: rgba(33, 130, 184, 0.18);
  color: var(--bp-navy-900);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(33, 130, 184, 0.28);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2 {
  margin-top: 0;
  font-family: var(--bp-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--bp-navy-900);
  text-wrap: balance;
}

h3,
h4 {
  margin-top: 0;
  font-family: var(--bp-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--bp-navy-900);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.85rem, 5vw, 4.85rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--bp-muted);
}

p,
li,
td,
.form-help,
.metric-list span,
.proof-card span,
.top-strip-meta span,
.footer-meta span {
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  word-spacing: -0.02em;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

ul:last-child,
ol:last-child,
p:last-child {
  margin-bottom: 0;
}

.text-secondary {
  color: var(--bp-muted) !important;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.8rem 1rem;
  border-radius: 0 0 var(--bp-radius-sm) 0;
  background: var(--bp-navy-900);
  color: var(--bp-white);
  font-weight: 800;
  z-index: 99999;
}

.skip-link:focus {
  left: 0;
}

main [id] {
  scroll-margin-top: 8rem;
}

.site-header {
  z-index: 1030;
}

.top-strip {
  position: relative;
  background: linear-gradient(90deg, rgba(8, 21, 35, 0.98), rgba(18, 43, 68, 0.96));
  color: rgba(233, 239, 245, 0.78);
  font-size: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.02em;
}

.top-strip::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.top-strip a {
  color: #f7fafc;
}

.top-strip a:hover {
  color: #ffffff;
}

.top-strip-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--bp-coral-500);
  box-shadow: 0 0 0 0.3rem rgba(222, 95, 76, 0.14);
}

.main-nav {
  background: rgba(250, 249, 246, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13, 34, 56, 0.08);
  box-shadow: 0 14px 36px rgba(8, 21, 35, 0.08);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
}

.brand-icon {
  width: 46px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(8, 21, 35, 0.12));
  transition: transform var(--bp-transition);
}

.brand-mark:hover .brand-icon {
  transform: translateY(-1px);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--bp-font);
  color: var(--bp-navy-900);
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-subtitle {
  color: var(--bp-blue-500);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-top: 0.22rem;
  text-transform: uppercase;
}

.navbar-light .navbar-nav {
  gap: 0.22rem;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--bp-navy-800);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.7rem 0.98rem;
  border-radius: 1rem;
  transition:
    color var(--bp-transition),
    background-color var(--bp-transition),
    box-shadow var(--bp-transition),
    transform var(--bp-transition);
}

.nav-dropdown-toggle {
  background: transparent;
  border: 0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: var(--bp-navy-900);
  background: rgba(13, 34, 56, 0.06);
  box-shadow: inset 0 -2px 0 var(--bp-coral-500);
}

.dropdown-menu {
  min-width: 18rem;
  border: 1px solid rgba(13, 34, 56, 0.1);
  border-radius: 1.1rem;
  box-shadow: 0 22px 44px rgba(8, 21, 35, 0.12);
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.98);
}

.dropdown-item {
  border-radius: 0.9rem;
  font-weight: 700;
  padding: 0.72rem 0.88rem;
  color: var(--bp-navy-900);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(13, 34, 56, 0.06);
  color: var(--bp-navy-900);
}

.navbar-toggler {
  border-color: rgba(13, 34, 56, 0.14);
  border-radius: 0.95rem;
  padding: 0.45rem 0.65rem;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813, 34, 56, 0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.82rem 1.28rem;
  border-width: 1px;
  border-radius: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform var(--bp-transition),
    box-shadow var(--bp-transition),
    background-color var(--bp-transition),
    color var(--bp-transition),
    border-color var(--bp-transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-red {
  background: linear-gradient(135deg, var(--bp-navy-900) 0, #17466d 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow:
    0 18px 36px rgba(13, 34, 56, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-red:hover,
.btn-red:focus-visible {
  background: linear-gradient(135deg, #102b47 0, #1f5e8c 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.btn-ghost-brand,
.btn-outline-dark {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(13, 34, 56, 0.16);
  color: var(--bp-navy-900);
}

.btn-ghost-brand:hover,
.btn-ghost-brand:focus-visible,
.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  color: var(--bp-navy-900);
  border-color: rgba(13, 34, 56, 0.26);
  background: rgba(255, 255, 255, 0.98);
}

.btn-light-brand,
.btn-light {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.98);
  color: var(--bp-navy-900);
  box-shadow: 0 18px 36px rgba(8, 21, 35, 0.12);
}

.btn-light-brand:hover,
.btn-light-brand:focus-visible,
.btn-light:hover,
.btn-light:focus-visible {
  background: #f7fbff;
  border-color: #f7fbff;
  color: var(--bp-navy-900);
}

.section-space {
  position: relative;
  padding: clamp(4.5rem, 7vw, 7.25rem) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.98));
  border-block: 1px solid rgba(13, 34, 56, 0.05);
}

.section-navy {
  overflow: clip;
  background:
    radial-gradient(circle at top right, rgba(222, 95, 76, 0.18), transparent 22%),
    linear-gradient(135deg, #081523 0, #0f2640 48%, #18496f 100%);
}

.section-dark {
  overflow: clip;
  background:
    radial-gradient(circle at top left, rgba(33, 130, 184, 0.18), transparent 18%),
    radial-gradient(circle at bottom right, rgba(222, 95, 76, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(8, 21, 35, 0.99), rgba(13, 34, 56, 0.98));
  color: #e4edf5;
}

.hero-shell,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero-shell.section-space,
.page-hero.section-space {
  padding-bottom: clamp(2.7rem, 4.4vw, 3.9rem);
}

.hero-shell::before,
.page-hero::before {
  content: "";
  position: absolute;
  left: -10rem;
  top: -10rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 130, 184, 0.12), rgba(33, 130, 184, 0) 72%);
  pointer-events: none;
}

.hero-shell::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -12rem;
  top: 1rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 95, 76, 0.1), rgba(222, 95, 76, 0) 72%);
  pointer-events: none;
}

.hero-shell > .container,
.page-hero > .container {
  position: relative;
  z-index: 1;
  padding: clamp(1.45rem, 2vw, 2rem);
  border-radius: var(--bp-radius-xl);
  border: 1px solid rgba(13, 34, 56, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0.98) 46%, rgba(239, 244, 248, 0.95) 100%);
  box-shadow: var(--bp-shadow-lg);
  overflow: clip;
}

.hero-shell > .container::before,
.page-hero > .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(33, 130, 184, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 40%);
  pointer-events: none;
}

.hero-shell > .container::after,
.page-hero > .container::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 89%, rgba(13, 34, 56, 0.028) 89% 90%, transparent 90% 100%),
    linear-gradient(180deg, transparent 0 91%, rgba(13, 34, 56, 0.026) 91% 92%, transparent 92% 100%);
  opacity: 0.5;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy {
  max-width: 44rem;
  position: relative;
  z-index: 1;
  animation: revealUp 0.75s ease both;
}

.hero-copy h1 {
  max-width: 12em;
}

.page-hero h1 {
  max-width: 13em;
}

.hero-lead {
  font-size: clamp(1.06rem, 1.45vw, 1.2rem);
  max-width: 62ch;
  color: var(--bp-muted-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 0.55rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 34, 56, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--bp-navy-800);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bp-coral-500), var(--bp-blue-500));
  box-shadow: 0 0 0 0.26rem var(--bp-coral-soft);
  flex: 0 0 auto;
}

.section-kicker {
  color: var(--bp-navy-800);
}

.eyebrow.text-light,
.eyebrow-dark,
.section-kicker.text-white,
.section-dark .section-kicker {
  color: #eef6fb;
}

.eyebrow.text-light,
.eyebrow-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.eyebrow.text-light::before,
.eyebrow-dark::before,
.section-kicker.text-white::before,
.section-dark .section-kicker::before {
  box-shadow: 0 0 0 0.26rem rgba(255, 255, 255, 0.08);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 0.98rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(13, 34, 56, 0.08);
  color: var(--bp-navy-800);
  font-size: 0.87rem;
  font-weight: 700;
  box-shadow: var(--bp-shadow-sm);
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
  padding: 1.05rem;
  border-radius: var(--bp-radius-xl);
  border: 1px solid rgba(13, 34, 56, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 252, 0.72));
  box-shadow: var(--bp-shadow-md);
  backdrop-filter: blur(12px);
  animation: revealUp 0.75s ease 0.08s both;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(33, 130, 184, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(222, 95, 76, 0.08), transparent 48%);
  pointer-events: none;
}

.hero-stage > * {
  position: relative;
  z-index: 1;
}

.hero-stage-media,
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--bp-radius-lg) - 0.15rem);
  border: 1px solid rgba(13, 34, 56, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 252, 0.95));
  box-shadow: var(--bp-shadow-md);
}

.hero-stage-media {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
  padding: 0.75rem;
}

.media-card {
  padding: 0.8rem;
}

.hero-stage-media::after,
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(13, 34, 56, 0.08) 100%);
  pointer-events: none;
}

.hero-stage-media img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--bp-radius-lg) - 0.55rem);
}

.floating-card {
  position: relative;
  display: grid;
  gap: 0.38rem;
  align-content: start;
  height: 100%;
  padding: 1.1rem 1.18rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(13, 34, 56, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 252, 0.98));
  color: var(--bp-navy-900);
  box-shadow: var(--bp-shadow-sm);
  animation: floatCard 8s ease-in-out infinite;
}

.floating-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(33, 130, 184, 0.32), rgba(222, 95, 76, 0.4));
}

.floating-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

.floating-card-secondary {
  animation-delay: 0.9s;
}

.floating-label,
.fact-label,
.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  margin-bottom: 0.4rem;
  color: var(--bp-blue-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-label::before,
.fact-label::before,
.service-kicker::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--bp-coral-500);
  flex: 0 0 auto;
}

.hero-facts,
.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.35rem;
}

.fact-card,
.value-card,
.service-card,
.process-step,
.content-card,
.sector-card,
.advantage-card,
.contact-card-link,
.proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 34, 56, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 253, 0.98));
  border-radius: var(--bp-radius-md);
  padding: clamp(1.25rem, 2vw, 1.65rem);
  box-shadow: var(--bp-shadow-sm);
}

.fact-card::before,
.value-card::before,
.service-card::before,
.process-step::before,
.content-card::before,
.sector-card::before,
.advantage-card::before,
.contact-card-link::before,
.proof-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(33, 130, 184, 0.24), rgba(222, 95, 76, 0.34));
  pointer-events: none;
}

.fact-card,
.service-card,
.value-card,
.process-step,
.sector-card,
.advantage-card,
.contact-card-link,
.proof-card,
.client-box {
  transition:
    transform var(--bp-transition),
    box-shadow var(--bp-transition),
    border-color var(--bp-transition);
}

.fact-card:hover,
.service-card:hover,
.value-card:hover,
.process-step:hover,
.sector-card:hover,
.advantage-card:hover,
.contact-card-link:hover,
.proof-card:hover,
.client-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--bp-shadow-md);
  border-color: var(--bp-border-strong);
}

.content-card {
  display: grid;
  gap: 0.95rem;
}

.content-card h2 {
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 1.1;
}

.content-card > * {
  position: relative;
  z-index: 1;
}

.fact-card strong {
  display: block;
  color: var(--bp-navy-900);
  font-size: 1.2rem;
  line-height: 1.32;
  margin-bottom: 0.45rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.4rem;
}

.section-heading::after {
  content: "";
  display: block;
  width: 5rem;
  height: 1px;
  margin-top: 1.1rem;
  background: linear-gradient(90deg, var(--bp-coral-500), rgba(33, 130, 184, 0.7));
}

.section-heading h2,
.section-heading-light h2 {
  margin-bottom: 0.85rem;
}

.section-heading p,
.section-heading-light p,
.section-intro {
  font-size: 1rem;
  color: var(--bp-muted);
}

.section-heading-light h2,
.section-heading-light h3,
.section-heading-light p,
.section-dark h2,
.section-dark h3 {
  color: #f3f8fb;
}

.section-dark p,
.section-dark .section-intro {
  color: rgba(229, 237, 245, 0.84);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.service-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: calc(var(--bp-radius-md) - 0.45rem);
  border: 1px solid rgba(13, 34, 56, 0.08);
  box-shadow: 0 18px 34px rgba(8, 21, 35, 0.08);
}

.service-list,
.sector-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li,
.sector-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.68rem;
  color: var(--bp-muted-strong);
}

.service-list li:last-child,
.sector-list li:last-child {
  margin-bottom: 0;
}

.service-list li::before,
.sector-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bp-coral-500), var(--bp-blue-500));
  box-shadow: 0 0 0 0.18rem rgba(33, 130, 184, 0.08);
}

.spotlight-panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(247, 242, 236, 0.97));
}

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

.process-grid-home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: 100%;
}

.step-index {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.1rem;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--bp-coral-500), #f18c7b);
  box-shadow: 0 16px 28px rgba(222, 95, 76, 0.24);
}

.metric-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-list li {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 34, 56, 0.08);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 1.15rem;
  padding: 1rem 1.08rem;
  box-shadow: var(--bp-shadow-sm);
}

.metric-list li::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(33, 130, 184, 0.26), rgba(222, 95, 76, 0.42));
}

.metric-list strong {
  display: block;
  color: var(--bp-navy-900);
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.metric-list span {
  font-size: 0.88rem;
  color: var(--bp-muted);
}

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

.sector-card {
  display: grid;
  gap: 0.8rem;
  height: 100%;
}

.section-dark .sector-card,
.section-dark .attention-panel {
  border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .sector-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: none;
}

.section-dark .sector-card::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
}

.section-dark .sector-card h3,
.section-dark .sector-card p,
.section-dark .attention-panel h3,
.section-dark .attention-panel p {
  color: #e6eef6;
}

.attention-panel {
  position: relative;
  margin-top: 1.5rem;
  border-radius: var(--bp-radius-lg);
  padding: 1.5rem 1.7rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) auto;
  gap: 1rem;
  align-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.signature-note {
  padding-top: 0.3rem;
}

.mini-profile {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  margin-top: 1.55rem;
  padding: 1rem;
  border-radius: var(--bp-radius-md);
  border: 1px solid rgba(13, 34, 56, 0.08);
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: var(--bp-shadow-sm);
}

.mini-profile picture img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1.1rem;
  border: 1px solid rgba(13, 34, 56, 0.08);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.advantage-card {
  display: grid;
  gap: 0.35rem;
}

.advantage-card strong {
  display: block;
  color: var(--bp-navy-900);
  line-height: 1.45;
}

.lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.45rem;
  border-radius: var(--bp-radius-lg);
  align-items: start;
}

.lead-panel-home {
  align-items: stretch;
}

.section-navy .lead-panel,
.section-navy .lead-panel p,
.section-navy .lead-panel h2 {
  color: #e4eef6;
}

.contact-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.contact-card-link {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f4f8fb;
  box-shadow: none;
}

.contact-card-link strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #ffffff;
  line-height: 1.35;
}

.contact-quick {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.contact-quick a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(13, 34, 56, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--bp-navy-900);
  font-weight: 800;
  box-shadow: var(--bp-shadow-sm);
  transition:
    transform var(--bp-transition),
    box-shadow var(--bp-transition),
    border-color var(--bp-transition);
}

.contact-quick a::after {
  content: "Abrir";
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bp-blue-500);
}

.contact-quick a:hover {
  transform: translateY(-2px);
  box-shadow: var(--bp-shadow-md);
  border-color: var(--bp-border-strong);
}

.lead-form {
  position: relative;
  padding: 0.3rem 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.lead-form .form-label {
  color: var(--bp-navy-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.38rem;
  text-transform: uppercase;
}

.form-control,
.form-select {
  border-radius: 1rem;
  border-color: rgba(13, 34, 56, 0.14);
  min-height: 52px;
  padding: 0.82rem 1rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--bp-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form-control::placeholder {
  color: #8793a0;
}

textarea.form-control {
  min-height: 138px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(33, 130, 184, 0.48);
  box-shadow: 0 0 0 0.24rem rgba(33, 130, 184, 0.12);
}

.form-help {
  color: var(--bp-muted);
  font-size: 0.81rem;
}

.form-help a {
  color: var(--bp-navy-900);
  text-decoration: underline;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(13, 34, 56, 0.1);
  border-radius: var(--bp-radius-md);
  box-shadow: var(--bp-shadow-sm);
  background: #ffffff;
}

.table-responsive.content-card {
  display: block;
  padding: 0;
  overflow: hidden;
}

.table-responsive.content-card::before {
  display: none;
}

.table-brand {
  margin-bottom: 0;
}

.table-brand thead th {
  background: var(--bp-navy-900);
  color: #ffffff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.table-brand tbody tr:nth-child(even) td {
  background: rgba(238, 244, 248, 0.58);
}

.table-brand tbody td {
  color: var(--bp-muted);
  border-color: rgba(13, 34, 56, 0.08);
  padding: 0.95rem 1rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 800;
  color: var(--bp-navy-900);
  list-style: none;
  padding: 1rem 1.15rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
  color: var(--bp-coral-500);
  transition: transform var(--bp-transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
}

.legal-wrap {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
}

.legal-wrap > p {
  color: var(--bp-muted-strong);
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #ebf4fb;
  font-size: 0.77rem;
  padding: 0.38rem 0.74rem;
  font-weight: 800;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.section-intro {
  max-width: 46rem;
}

.proof-card {
  display: grid;
  gap: 0.45rem;
  height: 100%;
}

.proof-card strong {
  display: block;
  font-family: var(--bp-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
  color: var(--bp-navy-900);
  margin-bottom: 0;
}

.proof-card span {
  color: var(--bp-muted);
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.client-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.54rem 0.82rem;
  border-radius: 999px;
  background: rgba(33, 130, 184, 0.08);
  border: 1px solid rgba(33, 130, 184, 0.14);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bp-navy-800);
}

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

.client-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.client-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 250, 0.98));
  border: 1px dashed rgba(13, 34, 56, 0.18);
  border-radius: 1.15rem;
  padding: 1rem;
  text-align: center;
  font-weight: 800;
  color: var(--bp-navy-800);
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--bp-shadow-sm);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--bp-radius-xl);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #0b1e33 0, #143d63 58%, #215e8d 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--bp-shadow-lg);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 54%, rgba(222, 95, 76, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%);
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  color: #ffffff;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.floating-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1025;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1ab358);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 20px 38px rgba(25, 179, 88, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--bp-transition),
    box-shadow var(--bp-transition);
}

.floating-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(25, 179, 88, 0.38);
}

.floating-wa img {
  width: 24px;
  height: 24px;
}

.site-footer {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at top right, rgba(56, 152, 201, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(222, 95, 76, 0.15), transparent 24%),
    linear-gradient(180deg, #081523 0, #0c2238 52%, #12334f 100%);
  color: #d8e3ec;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.8rem, 5vw, 4rem);
  padding-bottom: 1.25rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 88%, rgba(255, 255, 255, 0.03) 88% 89%, transparent 89% 100%);
  opacity: 0.4;
  pointer-events: none;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #c9d7e4;
  font-size: 0.93rem;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-wrap {
  display: grid;
  gap: 1.55rem 2rem;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.8fr));
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.44rem;
}

.footer-meta {
  border-top: 1px solid rgba(201, 215, 228, 0.16);
  margin-top: 1.7rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.86rem;
}

.modal-brand {
  border-radius: var(--bp-radius-md);
  border: 1px solid rgba(13, 34, 56, 0.1);
}

.modal-brand .modal-header {
  border-bottom-color: rgba(13, 34, 56, 0.08);
}

.alert[data-form-feedback] {
  margin-top: 0.9rem;
  margin-bottom: 0;
  border-radius: 1rem;
  border-color: rgba(13, 34, 56, 0.1);
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 1199.98px) {
  .hero-grid,
  .lead-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .hero-facts,
  .hero-proof,
  .sector-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .attention-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav {
    padding-top: 0.2rem;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 0.8rem;
    border: 1px solid rgba(13, 34, 56, 0.08);
    border-radius: var(--bp-radius-md);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--bp-shadow-md);
  }

  .hero-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-card {
    animation: none;
  }

  .metric-list,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 7vw, 2.55rem);
  }

  .section-space {
    padding: 3.7rem 0;
  }

  .hero-shell > .container,
  .page-hero > .container {
    padding: 1.2rem;
    border-radius: 1.75rem;
  }

  .hero-facts,
  .hero-proof,
  .metric-list,
  .process-grid,
  .process-grid-home,
  .sector-grid,
  .advantage-grid,
  .value-grid,
  .client-wall,
  .footer-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .mini-profile {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-stage {
    grid-template-columns: minmax(0, 1fr);
    padding: 0.9rem;
  }

  .hero-stage-media,
  .media-card {
    padding: 0.65rem;
  }

  .hero-stage-media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 575.98px) {
  .top-strip {
    font-size: 0.74rem;
  }

  .top-strip .container {
    justify-content: flex-start !important;
  }

  .brand-icon {
    width: 40px;
  }

  .brand-name {
    font-size: 1.22rem;
  }

  .brand-subtitle {
    font-size: 0.58rem;
  }

  .hero-actions,
  .contact-cards,
  .hero-trust,
  .footer-pills {
    gap: 0.6rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .contact-stack .btn,
  .cta-panel .btn {
    width: 100%;
  }

  .contact-quick a {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-quick a::after {
    content: "Canal directo";
  }

  .floating-wa {
    width: 54px;
    height: 54px;
  }

  .footer-meta {
    flex-direction: column;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}
