:root {
  --bg: #eff4fb;
  --surface: #ffffff;
  --ink: #0c1a34;
  --ink-soft: #42506b;
  --primary: #0f2b62;
  --secondary: #1aa379;
  --accent: #c9a264;
  --line: #d8e3f2;
  --shadow: 0 18px 44px rgba(15, 43, 98, 0.16);
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-height: 90px;
  --header-height-mobile: 80px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  background: #07132f;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Maven Pro", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

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

a,
button,
label,
input,
summary,
.btn,
.social-link,
.hamburger,
.floating-whatsapp {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
label:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
.social-link:focus:not(:focus-visible),
.hamburger:focus:not(:focus-visible),
.floating-whatsapp:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.btn:focus-visible,
.social-link:focus-visible,
.hamburger:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 2px solid #28b487;
  outline-offset: 3px;
}

img,
iframe {
  display: block;
  width: 100%;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 8%, rgba(23, 166, 122, 0.16), transparent 38%),
    radial-gradient(circle at 88% 84%, rgba(15, 43, 98, 0.14), transparent 44%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 54%, #f8fbff 82%, #07132f 100%);
}

.container {
  width: min(1320px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #27426f;
  background: #edf3fb;
  border: 1px solid #d1deef;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: #dfeaf8;
  border-color: #b5c9e4;
}

.social-link svg,
.social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.menu-social .social-link img,
.nav-contact .social-link img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(49%) saturate(854%) hue-rotate(188deg) brightness(94%) contrast(96%);
  transition: filter 0.2s ease;
}

.menu-social .social-link:hover img,
.nav-contact .social-link:hover img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(80%) saturate(371%) hue-rotate(115deg) brightness(92%) contrast(94%);
}

.navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 25;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    backdrop-filter 0.34s ease;
}

.navbar-wrap:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.navbar-wrap.is-scrolled {
  background: rgba(238, 244, 251, 0.92);
  border-bottom-color: #d7e3f3;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(12, 26, 52, 0.08);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}

.brand {
  width: 162px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-left: auto;
}

.menu a {
  color: #112850;
  transition: color 0.25s ease;
}

.menu a:hover {
  color: var(--secondary);
}

.menu-submenu {
  position: relative;
}

.menu-submenu summary {
  list-style: none;
  cursor: pointer;
  color: #112850;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.menu-submenu summary::-webkit-details-marker {
  display: none;
}

.menu-submenu summary::after {
  content: "▾";
  font-size: 0.72rem;
  color: #4b6188;
  transform: translateY(1px);
}

.menu-submenu[open] summary {
  color: var(--secondary);
}

.menu-submenu-panel {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 350px;
  max-width: 420px;
  border-radius: 14px;
  border: 1px solid #d4e1f2;
  background: #fff;
  box-shadow: 0 16px 30px rgba(17, 42, 85, 0.14);
  padding: 0.45rem;
  display: grid;
  gap: 0.2rem;
  z-index: 40;
}

.menu-submenu-panel a {
  padding: 0.56rem 0.62rem;
  border-radius: 9px;
  font-size: 0.84rem;
  line-height: 1.35;
  color: #27426f;
}

.menu-submenu-panel a:hover {
  background: #edf3fc;
  color: #112850;
}

@media (min-width: 981px) {
  .menu-submenu {
    --submenu-width: min(420px, calc(100vw - 3rem));
    padding-bottom: 18px;
    margin-bottom: -18px;
  }

  .menu-submenu::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: var(--submenu-width);
    height: 18px;
  }

  .menu-submenu-panel {
    top: calc(100% + 8px);
    width: var(--submenu-width);
    max-width: var(--submenu-width);
  }

  .menu-submenu:not([open]) > .menu-submenu-panel {
    display: none !important;
  }

  .menu-submenu[open] > .menu-submenu-panel {
    display: grid !important;
  }

  .menu-submenu:hover > .menu-submenu-panel,
  .menu-submenu:focus-within > .menu-submenu-panel {
    display: grid !important;
  }

  .menu-submenu:hover > summary,
  .menu-submenu:focus-within > summary {
    color: var(--secondary);
  }

  .menu-submenu:hover > summary::after,
  .menu-submenu:focus-within > summary::after {
    transform: translateY(1px) rotate(180deg);
  }
}

.menu-social {
  display: none;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0.5rem;
}

.nav-toggle,
.hamburger {
  display: none;
}

.hero,
.about,
.values-section,
.benefits,
.showcase,
.expertise,
.special-rights {
  padding: 4.6rem 0;
}

.hero {
  padding-top: calc(1.6rem + var(--header-height));
  background: linear-gradient(120deg, #dcefeb 0%, #edf3fb 56%, #e5ecf8 100%);
}

.about,
.values-section,
.benefits,
.showcase,
.expertise,
.special-rights {
  position: relative;
}

.about > .container,
.values-section > .container,
.benefits > .container,
.showcase > .container,
.expertise > .container,
.special-rights > .container {
  position: relative;
  z-index: 1;
}

.about::before,
.values-section::before,
.benefits::before,
.showcase::before,
.expertise::before,
.special-rights::before {
  content: "";
  position: absolute;
  top: -46px;
  left: 0;
  width: 100%;
  height: 46px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.expertise::before {
  display: none;
}

.hero-grid,
.about-grid,
.showcase-grid,
.expertise-grid,
.special-rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.3rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(480px, 620px) minmax(600px, 1fr);
  gap: 3rem;
}

.hero-media {
  display: block;
}

.eyebrow {
  font-family: "Maven Pro", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
  color: #2b4e89;
}

.hero h1 {
  margin-top: 0.5rem;
  font-family: "Maven Pro", sans-serif;
  font-size: clamp(1.8rem, 3.7vw, 2.75rem);
  line-height: 1.12;
  max-width: 16ch;
}

.hero-highlight {
  color: #1f4d98;
}

.hero-content > p {
  max-width: 44ch;
}

.hero p,
.about-content p,
.showcase p,
.expertise p,
.special-rights p {
  margin-top: 1rem;
  color: var(--ink-soft);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(17, 42, 85, 0.15);
}

.btn-primary {
  background: linear-gradient(90deg, #0f2b62, #1f4d98);
  color: #fff;
}

.btn-outline {
  border-color: #bbcbe3;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.66);
}

.btn-outline.light {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin-top: 1.15rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: #273655;
}

.hero-points li::before {
  content: "\2713";
  color: var(--secondary);
  margin-right: 0.45rem;
}

.hero-media {
  position: relative;
  max-width: 740px;
  width: 100%;
  margin-left: auto;
}

.about {
  background: linear-gradient(140deg, #0a1a3f, #1b4b96 78%);
  color: #fff;
}

.about .eyebrow {
  color: #bfd4ff;
}

.about .about-content p {
  color: #d4e0f7;
}

.about-reveal {
  opacity: 0;
  filter: blur(2px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.72s ease;
  transition-delay: var(--about-delay, 0ms);
}

.about-reveal-left {
  transform: translate3d(-34px, 24px, 0) scale(0.992);
}

.about-reveal-right {
  transform: translate3d(34px, 24px, 0) scale(0.992);
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.differentials {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(191, 212, 255, 0.32);
  background: rgba(5, 17, 44, 0.34);
}

.differentials h3 {
  font-family: "Maven Pro", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.differentials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
}

.differentials-list li {
  font-size: 0.93rem;
  color: #e3ecff;
}

.differentials-list li::before {
  content: "\2713";
  color: #47e3b0;
  font-weight: 700;
  margin-right: 0.45rem;
}

.video-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 0;
  background: transparent;
}

.video-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.video-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(148deg, rgba(7, 21, 49, 0.52), rgba(7, 21, 49, 0.2) 42%, rgba(7, 21, 49, 0.58));
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0f2b62, #1aa379);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 34px rgba(8, 31, 73, 0.35);
  z-index: 3;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.video-play-btn svg {
  width: 30px;
  height: 30px;
  margin-left: 3px;
}

.video-overlay:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 22px 40px rgba(8, 31, 73, 0.42);
}

.video-wrap.is-playing .video-overlay {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about-mobile-photo {
  display: none;
}

.hero-mobile-video {
  display: none;
}

.hero-intro {
  opacity: 0;
  animation: heroEntry 0.9s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
  animation-delay: 0.14s;
}

.hero-intro-right {
  animation-delay: 0.3s;
}

.hero-mobile-video.hero-intro-right {
  animation-delay: 0.24s;
}

@keyframes heroEntry {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.985);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.video-wrap iframe {
  aspect-ratio: 16 / 9;
  min-height: 360px;
  border: 0;
}

.hero-card {
  position: absolute;
  right: 14px;
  bottom: -18px;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(12, 26, 52, 0.93);
  color: #fff;
  max-width: 240px;
}

.hero-card strong {
  display: block;
  font-family: "Maven Pro", sans-serif;
  font-size: 1.05rem;
}

.hero-card span {
  font-size: 0.84rem;
  color: #d0dcf2;
}

.about-card {
  right: 16px;
  bottom: 16px;
}

.about-image-wrap,
.showcase-image,
.expertise-image,
.special-rights-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap .video-wrap {
  display: none;
}

.about-image,
.showcase-image,
.expertise-image,
.special-rights-image {
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about-content h2,
.values-section h2,
.showcase h2,
.expertise h2,
.special-rights h2,
.benefits h2 {
  margin-top: 0.5rem;
  font-family: "Maven Pro", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.pill-list {
  margin: 1.3rem 0 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.pill-list span {
  background: #e8eff9;
  color: #183260;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
}

.section-head {
  max-width: 840px;
}

.values-section {
  background: linear-gradient(180deg, #f7fbff, #edf5ff);
}

.values-head {
  margin-bottom: 1.4rem;
}

.values-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.value-feature-card,
.values-list-wrap {
  border: 1px solid #d7e5f7;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(18, 43, 87, 0.09);
  padding: 1.35rem;
}

.value-feature-card h3,
.values-list-title h3,
.value-item h4 {
  font-family: "Maven Pro", sans-serif;
  color: #0f2b62;
}

.value-feature-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

.value-feature-card p,
.value-item p {
  color: #4c5f82;
  line-height: 1.55;
}

.values-list-wrap {
  margin-top: 1rem;
}

.values-list-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.values-list-title .icon-badge {
  margin-bottom: 0;
  width: 54px;
  height: 54px;
}

.values-list-title .icon-badge svg {
  width: 28px;
  height: 28px;
}

.values-list-title h3 {
  font-size: 1.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: #f4f8fe;
  border: 1px solid #e0ebf8;
}

.value-item span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #0f2b62;
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
}

.value-item > div {
  display: grid;
}

.value-item h4 {
  min-height: 32px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.18;
  margin: 0 0 0.22rem;
}

.value-item p {
  font-size: 0.93rem;
}

.benefits {
  background: linear-gradient(180deg, #eaf1f9, #e4edf7);
}

.benefits .section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.benefit-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.benefit-card {
  border-radius: 22px;
  border: 1px solid #d7e2f1;
  padding: 1.3rem 1.2rem;
  background: rgba(250, 252, 255, 0.86);
  backdrop-filter: blur(3px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #a7bedf;
  box-shadow: 0 14px 26px rgba(16, 37, 74, 0.09);
}

.icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #f2f7ff;
  background: linear-gradient(135deg, #293a8e, #0ba7a1);
  margin-bottom: 1rem;
}

.icon-badge svg {
  width: 32px;
  height: 32px;
}

.benefit-card h3 {
  font-family: "Maven Pro", sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

.benefit-card p {
  margin-top: 0.6rem;
  color: #58647f;
  font-size: 0.94rem;
  line-height: 1.5;
}

.showcase {
  background: linear-gradient(135deg, #081735, #13336e 72%);
  color: #fff;
}

.showcase .eyebrow {
  color: #bfd4ff;
}

.showcase p {
  color: #d4e0f7;
}

.showcase .btn {
  margin-top: 2rem;
}

.special-rights {
  background: linear-gradient(135deg, #081735, #13336e 72%);
  color: #fff;
}

.special-rights .eyebrow {
  color: #bfd4ff;
}

.special-rights p {
  color: #d4e0f7;
}

.expertise {
  background: linear-gradient(180deg, #f3f7fe, #eef4fd);
}

.showcase-image {
  aspect-ratio: 4 / 3;
}

.expertise-grid,
.special-rights-grid {
  gap: 2.6rem;
}

.expertise-image,
.special-rights-image {
  aspect-ratio: 4 / 3;
}

.expertise .btn,
.special-rights .btn {
  margin-top: 1.25rem;
}

.special-rights .btn {
  margin-top: 2rem;
}

.article-page {
  padding: 5.2rem 0 4.8rem;
}

.article-shell {
  max-width: 980px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d7e3f3;
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(15, 43, 98, 0.1);
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.article-kicker {
  font-family: "Maven Pro", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #2f5189;
  font-weight: 700;
}

.article-shell h1 {
  margin-top: 0.5rem;
  font-family: "Maven Pro", sans-serif;
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  line-height: 1.08;
  color: #0f2550;
}

.article-subtitle {
  margin-top: 0.8rem;
  color: #2f4f7e;
  font-family: "Maven Pro", sans-serif;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.22;
}

.article-content {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.95rem;
}

.article-content p {
  color: #3d4f6f;
}

.article-content h2 {
  margin-top: 0.5rem;
  font-family: "Maven Pro", sans-serif;
  font-size: clamp(1.24rem, 2vw, 1.58rem);
  color: #16305e;
}

.article-content h3 {
  margin-top: 0.28rem;
  font-family: "Maven Pro", sans-serif;
  font-size: 1.08rem;
  color: #1b3d74;
}

.article-content ul {
  margin: 0.15rem 0 0.2rem 1.2rem;
  color: #3d4f6f;
  display: grid;
  gap: 0.45rem;
}

.article-cta-wrap {
  margin-top: 2rem;
}

.article-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #0f2b62, #1f4d98);
  box-shadow: 0 12px 22px rgba(17, 42, 85, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.article-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(17, 42, 85, 0.24);
}

.contact-section {
  position: relative;
  padding: 4.8rem 0 4.2rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(26, 163, 121, 0.12), transparent 45%),
    radial-gradient(circle at 88% 88%, rgba(15, 43, 98, 0.14), transparent 50%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.contact-shell {
  display: grid;
  gap: 1.35rem;
}

.contact-head p {
  margin-top: 0.9rem;
  max-width: 70ch;
  color: #4c5f82;
}

.contact-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card {
  background: #fff;
  border: 1px solid #d7e5f7;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(18, 43, 87, 0.1);
  padding: 1.35rem 1.3rem;
}

.contact-profile-card {
  background: #fff;
  border-color: #d7e5f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-profile-card h3 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: "Maven Pro", sans-serif;
  font-size: clamp(1.1rem, 2.1vw, 1.42rem);
  line-height: 1.2;
  color: #0f2b62;
}

.contact-title-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #0f2b62;
  border: 1px solid #184288;
  color: #fff;
  flex-shrink: 0;
}

.contact-title-icon svg {
  width: 22px;
  height: 22px;
}

.contact-title-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: linear-gradient(135deg, #293a8e, #0ba7a1);
  border: 0;
  margin-bottom: 0.1rem;
}

.contact-title-icon-badge svg {
  width: 32px;
  height: 32px;
}

.contact-meta-list {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.contact-meta-list li {
  font-size: 0.97rem;
  color: #2f4268;
}

.contact-channel-card h3 {
  margin: 0;
  font-family: "Maven Pro", sans-serif;
  font-size: 1.15rem;
  color: #0f2b62;
}

.contact-channel-list {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.62rem;
}

.contact-channel-list li {
  display: flex;
  align-items: center;
  gap: 0.58rem;
}

.contact-channel-list li img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(21%) sepia(49%) saturate(854%) hue-rotate(188deg) brightness(94%) contrast(96%);
}

.contact-channel-list a {
  font-size: 0.95rem;
  color: #233c65;
}

.contact-channel-list a strong {
  font-weight: 800;
  color: #0f2b62;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.contact-social-links .social-link {
  background: #edf4fe;
  border-color: #cedff3;
}

.contact-social-links .social-link img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(49%) saturate(854%) hue-rotate(188deg) brightness(94%) contrast(96%);
}

.contact-social-links .social-link:hover img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(80%) saturate(371%) hue-rotate(115deg) brightness(92%) contrast(94%);
}

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

.contact-office-grid .office-card {
  background: #fff;
  border-color: #d7e5f7;
  box-shadow: 0 14px 28px rgba(18, 43, 87, 0.11);
}

.footer {
  background: #07132f;
  color: #d9e4f7;
  padding-top: 2.4rem;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo {
  width: 150px;
}

.footer h3 {
  font-family: "Maven Pro", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.36rem;
  font-size: 0.92rem;
}

.footer-links-list {
  gap: 0.42rem;
}

.footer-link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.footer-list-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(87%) sepia(9%) saturate(469%) hue-rotate(183deg) brightness(99%) contrast(91%);
}

.footer p {
  margin-top: 0.8rem;
  max-width: 34ch;
  font-size: 0.92rem;
  color: #bdcce8;
}

.footer-bottom {
  margin-top: 1.6rem;
  border-top: 1px solid rgba(189, 204, 232, 0.25);
  padding: 1rem 0 1.15rem;
  font-size: 0.82rem;
  color: #a6b6d8;
}

.footer-contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-title {
  margin-top: 1rem;
  font-size: 1.18rem;
  line-height: 1.1;
}

.footer-title span {
  display: block;
  font-size: 1.02rem;
  color: #b8cae8;
}

.footer-meta-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  gap: 0.46rem;
}

.footer-meta-list li {
  color: #d4e1f7;
  font-size: 0.95rem;
}

.footer-contact-block h3 {
  margin-bottom: 0.8rem;
}

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

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  color: #d4e1f7;
  font-size: 0.95rem;
}

.footer-contact-list li img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(92%) sepia(9%) saturate(666%) hue-rotate(183deg) brightness(103%) contrast(93%);
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

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

.office-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(188, 205, 233, 0.24);
  border-radius: 16px;
  padding: 1rem 1rem 1.05rem;
}

.office-card h4 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  font-family: "Maven Pro", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: #0f2b62;
}

.office-card p {
  margin-top: 0.7rem;
  max-width: none;
  font-size: 0.95rem;
  color: #46587c;
}

.office-location-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f0f5ff;
  flex-shrink: 0;
  border: 1px solid #d6e3f6;
  color: #0f2b62;
}

.office-location-icon svg {
  width: 22px;
  height: 22px;
}

.office-card a {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.office-card a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(12, 38, 88, 0.18);
  filter: brightness(1.08);
}

.contact-map-btn {
  background: linear-gradient(90deg, #0c2658, #1a428d);
  border-color: transparent;
  color: #fff;
  font-weight: 700;
}

.contact-map-btn:hover {
  background: linear-gradient(90deg, #12316c, #2454a8);
  box-shadow: 0 10px 18px rgba(12, 38, 88, 0.18);
  filter: brightness(1.04);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #1ebf5a, #0f9844);
  box-shadow: 0 12px 26px rgba(10, 114, 49, 0.42);
  z-index: 70;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 32px rgba(10, 114, 49, 0.48);
}

.floating-whatsapp svg,
.floating-whatsapp img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(2px);
  transition:
    opacity 0.62s ease,
    transform 0.62s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.62s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-intro {
    opacity: 1;
    animation: none;
  }

  .about-reveal,
  .about-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .reveal-item,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .navbar {
    min-height: var(--header-height-mobile);
    justify-content: space-between;
    gap: 0.8rem;
  }

  .brand {
    width: 128px;
    margin-right: auto;
  }

  .menu {
    position: fixed;
    top: 92px;
    left: 1rem;
    right: 1rem;
    padding: 1.25rem 1.1rem 1.1rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #d7e3f3;
    box-shadow: 0 24px 40px rgba(15, 43, 98, 0.2);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu > a {
    width: 100%;
    font-size: 1.3rem;
    font-weight: 800;
    color: #283d67;
    padding: 0.45rem 0.2rem;
  }

  .menu-submenu {
    width: 100%;
  }

  .menu-submenu summary {
    width: 100%;
    font-size: 1.3rem;
    font-weight: 800;
    color: #283d67;
    padding: 0.45rem 0.2rem;
    justify-content: space-between;
  }

  .menu-submenu-panel {
    position: static;
    min-width: 0;
    max-width: none;
    border-radius: 12px;
    border: 1px solid #dce7f7;
    box-shadow: none;
    margin-top: 0.3rem;
  }

  .menu-submenu-panel a {
    font-size: 0.92rem;
    padding: 0.46rem 0.55rem;
  }

  .menu > a,
  .menu-submenu summary,
  .menu-submenu-panel a {
    -webkit-tap-highlight-color: transparent;
  }

  .menu > a:focus-visible,
  .menu-submenu summary:focus-visible,
  .menu-submenu-panel a:focus-visible {
    outline: none;
    box-shadow: none;
  }

  .menu-social {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 0.65rem;
    margin-top: 0.85rem;
    padding-top: 0.95rem;
    border-top: 1px solid #e5edf8;
  }

  .nav-toggle:checked ~ .menu {
    display: flex;
  }

  .hamburger {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    border: 1px solid #d7e3f3;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(15, 43, 98, 0.12);
  }

  .hamburger span {
    width: 20px;
    height: 2.2px;
    border-radius: 10px;
    background: #112850;
  }

  .nav-contact {
    display: none;
  }

  .hero,
  .about,
  .values-section,
  .benefits,
  .showcase,
  .expertise,
  .special-rights {
    padding: 3.8rem 0;
  }

  .hero {
    padding-top: calc(3.8rem + var(--header-height-mobile));
  }

  .about::before,
  .values-section::before,
  .benefits::before,
  .showcase::before,
  .expertise::before,
  .special-rights::before {
    top: -26px;
    height: 26px;
  }

  .hero-grid,
  .about-grid,
  .showcase-grid,
  .expertise-grid,
  .special-rights-grid,
  .footer-grid,
  .footer-contact-wrap,
  .office-grid,
  .contact-top-grid,
  .contact-office-grid,
  .values-feature-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 4rem 0 3.7rem;
  }

  .contact-profile-card h3 {
    align-items: flex-start;
  }

  .showcase-content {
    order: 2;
  }

  .showcase-image {
    order: 1;
  }

  .special-rights-grid > div:first-child {
    order: 2;
  }

  .special-rights-image {
    order: 1;
  }

  .hero-mobile-video {
    display: block;
    margin: 1rem 0 1.1rem;
  }

  .hero-media {
    display: none;
  }

  .hero-card {
    position: static;
    margin-top: 0.8rem;
    max-width: none;
  }

  .about-image-wrap .video-wrap {
    display: none;
  }

  .about-image {
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
  }

  .video-wrap iframe {
    min-height: 0;
  }

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

  .about-card {
    position: static;
    margin-top: 0.8rem;
    max-width: none;
  }

  .differentials-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 112px;
  }

  .menu {
    top: 84px;
  }

  .menu > a {
    font-size: 1.18rem;
  }

  .menu-submenu summary {
    font-size: 1.18rem;
  }

  .social-link {
    width: 34px;
    height: 34px;
  }

  .social-link svg,
  .social-link img {
    width: 18px;
    height: 18px;
  }

  .container {
    width: min(1140px, calc(100% - 2.4rem));
  }

  .hero,
  .about,
  .values-section,
  .benefits,
  .showcase,
  .expertise,
  .special-rights,
  .contact-section {
    padding: 4.2rem 0;
  }

  .hero {
    padding-top: calc(4.2rem + var(--header-height-mobile));
  }

  .hero h1 {
    max-width: 24ch;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .benefit-card {
    min-height: 198px;
  }

  .benefit-card h3 {
    font-size: 1.05rem;
  }

  .benefit-card p {
    font-size: 0.92rem;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp svg,
  .floating-whatsapp img {
    width: 28px;
    height: 28px;
  }

  .article-page {
    padding: 4.5rem 0 3.9rem;
  }

  .article-content ul {
    margin-left: 1rem;
  }

  .article-cta-btn {
    width: 100%;
  }
}
