/* PixiCore premium interface layer */
:root {
  --px-bg: #f6f8fb;
  --px-bg-soft: #eef3f1;
  --px-surface: #ffffff;
  --px-surface-2: #f9fbfd;
  --px-ink: #142033;
  --px-ink-soft: #334155;
  --px-muted: #66758a;
  --px-border: #dbe5ef;
  --px-primary: #2458d3;
  --px-primary-dark: #183f9e;
  --px-teal: #0f8f83;
  --px-teal-dark: #0a6e66;
  --px-amber: #b7791f;
  --px-coral: #c4564d;
  --px-shadow-sm: 0 8px 24px rgba(20, 32, 51, 0.07);
  --px-shadow: 0 18px 50px rgba(20, 32, 51, 0.11);
  --px-radius: 8px;
}

/* Homepage-specific overrides moved from index.html (scoped to .home-page)
   These rules intentionally use the .home-page wrapper to avoid affecting
   admin or other pages that use the same utility class names. */
.home-page .profile-card {
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-page .profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.home-page .team-section {
  background: #f9fafb;
}
.home-page .team-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
}
.home-page .team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.home-page .profile-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  object-position: center;
  background: radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.94), transparent 30%), linear-gradient(145deg, #f7fbff 0%, #eaf5f3 52%, #edf4ff 100%);
  border-radius: 50%;
  border: 5px solid #fff;
  padding: 0.38rem;
}
@media (max-width: 575.98px) {
  .home-page .profile-img {
    height: min(58vw, 220px);
    width: min(58vw, 220px);
  }
  .home-page .home-hero {
    background-position: center top;
  }
}

.home-page .section-divider {
  height: 4rem;
}

.home-page .badge {
  font-size: 0.85rem;
  font-weight: 500;
}

.home-page .hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.home-page .bg-light-subtle {
  background-color: #f8fafc;
}

.home-page .btn-outline-primary:hover {
  background-color: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}

.home-page .home-cta-copy {
  max-width: 820px;
}

.home-page .badge-tech {
  font-size: 0.85rem;
  padding: 0.5rem 0.8rem;
  font-weight: 600;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-page .animate-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

body {
  background:
    linear-gradient(180deg, #fbfcfd 0%, var(--px-bg) 46%, #f7faf8 100%) !important;
  color: var(--px-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, sans-serif !important;
  letter-spacing: 0;
  line-height: 1.6;
  min-width: 320px;
  padding-top: 72px;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-variant-ligatures: common-ligatures;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--px-ink);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.12;
}

p,
li {
  color: var(--px-ink-soft);
}

a {
  color: var(--px-primary);
  text-underline-offset: 0.18em;
}

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

::selection {
  background: rgba(36, 88, 211, 0.16);
  color: var(--px-ink);
}

.container,
.container-lg {
  width: min(1160px, calc(100% - 32px));
}

.navbar {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(219, 229, 239, 0.9);
  box-shadow: 0 14px 40px rgba(20, 32, 51, 0.08);
  min-height: 72px;
  padding: 8px 0 !important;
}

@supports (backdrop-filter: blur(14px)) {
  .navbar {
    backdrop-filter: blur(14px);
  }
}

.navbar-brand {
  color: var(--px-ink) !important;
  font-size: 1.18rem !important;
  font-weight: 800 !important;
  gap: 10px;
}

.nav-logo {
  height: 42px !important;
  max-height: 42px !important;
  object-fit: contain;
  width: auto !important;
}

.navbar-toggler {
  border: 1px solid var(--px-border);
  border-radius: var(--px-radius);
  box-shadow: none !important;
  padding: 0.45rem 0.65rem;
}

.navbar-nav {
  align-items: center;
  gap: 2px;
}

.navbar-nav .nav-item .nav-link {
  border-radius: var(--px-radius);
  color: #3b4b63;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0.58rem 0.78rem;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
  background: #edf4ff;
  color: var(--px-primary-dark);
}

#languageSwitcher {
  background-color: #fff;
  border: 1px solid var(--px-border);
  border-radius: var(--px-radius);
  color: var(--px-ink);
  font-size: 0.9rem;
  font-weight: 650;
  min-height: 38px;
  padding: 0.45rem 2rem 0.45rem 0.72rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(36, 88, 211, 0.26), transparent 32rem),
    radial-gradient(circle at 86% 72%, rgba(15, 143, 131, 0.22), transparent 28rem),
    linear-gradient(135deg, #071426 0%, #10233a 54%, #071f1c 100%) !important;
  color: #fff !important;
  min-height: calc(86vh - 72px) !important;
  padding: 5rem 1rem 5.5rem !important;
  text-align: center;
}

.home-hero {
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(1.25rem, 7vw, 7rem);
  bottom: clamp(1.25rem, 8vh, 5rem);
  width: min(34vw, 430px);
  aspect-ratio: 1;
  background: url("../assets/images/about/about-cloud-devops.webp") center / contain no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  opacity: 0.34;
  pointer-events: none;
}

.home-hero::after {
  aspect-ratio: auto;
  background: url("../assets/images/about/about-cloud-devops.webp") center / cover no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  inset: 0;
  opacity: 0.32;
  width: auto;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 38, 0.82), rgba(7, 20, 38, 0.58), rgba(7, 20, 38, 0.76));
  pointer-events: none;
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.88), rgba(7, 20, 38, 0.58), rgba(7, 20, 38, 0.76)),
    radial-gradient(circle at 18% 24%, rgba(36, 88, 211, 0.18), transparent 31rem);
  z-index: 1;
}

.hero .container {
  max-width: 1020px;
  position: relative;
  z-index: 1;
}

.home-hero .container {
  z-index: 2;
}

.hero h1 {
  color: #fff !important;
  font-size: 4.25rem !important;
  font-weight: 820 !important;
  letter-spacing: 0 !important;
  line-height: 0.98;
  margin-bottom: 1rem;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  text-transform: none !important;
}

.hero p,
.hero .lead,
.typed-text {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.24rem !important;
  font-weight: 520 !important;
  letter-spacing: 0 !important;
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero-eyebrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 780;
  gap: 0.55rem;
  line-height: 1.2;
  margin-bottom: 1.05rem;
  max-width: min(100%, 680px);
  padding: 0.58rem 0.82rem;
}

.hero-signal {
  background: #48d6b8;
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(72, 214, 184, 0.16);
  flex: 0 0 auto;
  height: 0.62rem;
  width: 0.62rem;
}

.home-hero .container > * {
  animation: heroReveal 0.7s ease both;
}

.home-hero .container > *:nth-child(2) {
  animation-delay: 0.05s;
}

.home-hero .container > *:nth-child(3) {
  animation-delay: 0.1s;
}

.home-hero .container > *:nth-child(4) {
  animation-delay: 0.15s;
}

.home-hero .container > *:nth-child(5) {
  animation-delay: 0.2s;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.55rem;
}

.hero-main-cta,
.hero-secondary-cta,
.home-cta-btn,
.team-profile-btn {
  align-items: center;
  display: inline-flex !important;
  gap: 0.55rem;
  justify-content: center;
  line-height: 1.1;
  max-width: 100%;
  min-height: 48px;
  overflow-wrap: anywhere;
  padding: 0.78rem 1.05rem;
  text-align: center;
  white-space: nowrap;
}

.hero-main-cta {
  min-width: 214px;
}

.hero-secondary-cta {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.46) !important;
  box-shadow: none !important;
  color: #fff !important;
  min-width: 178px;
}

.hero-secondary-cta:hover,
.hero-secondary-cta:focus {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.78) !important;
  color: #fff !important;
}

.hero-proof-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem auto 0;
  max-width: 780px;
}

.hero-proof-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--px-radius);
  min-height: 88px;
  padding: 0.9rem;
}

.hero-proof-item strong,
.hero-proof-item span {
  display: block;
}

.hero-proof-item strong {
  color: #fff;
  font-size: 1.03rem;
  font-weight: 830;
  line-height: 1.15;
}

.hero-proof-item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 0.18rem;
}

.section-heading {
  max-width: 850px;
}

.section-kicker {
  color: var(--px-teal-dark);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.home-capabilities {
  background:
    linear-gradient(180deg, #fbfcfd 0%, #f4f8f8 100%) !important;
  border-bottom: 1px solid rgba(219, 229, 239, 0.74);
}

.capability-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 229, 239, 0.96);
  border-radius: var(--px-radius);
  box-shadow: var(--px-shadow-sm);
  height: 100%;
  padding: 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.capability-card:hover {
  border-color: rgba(36, 88, 211, 0.28);
  box-shadow: var(--px-shadow);
  transform: translateY(-3px);
}

.capability-icon {
  align-items: center;
  background: #edf4ff;
  border: 1px solid #d7e5ff;
  border-radius: var(--px-radius);
  color: var(--px-primary);
  display: inline-flex;
  font-size: 1.15rem;
  height: 46px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 46px;
}

.capability-icon-teal {
  background: #e9f7f4;
  border-color: #cdebe5;
  color: var(--px-teal-dark);
}

.capability-icon-amber {
  background: #fff6e8;
  border-color: #f0dfbd;
  color: var(--px-amber);
}

.capability-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.capability-card p {
  color: var(--px-muted);
  margin-bottom: 0;
}

section:not(.hero):not(.tools) {
  position: relative;
}

.section-about,
.team-section,
.portfolio-cases,
.contact-section,
.services,
.portfolio,
.py-5.bg-light,
.bg-light-subtle {
  background: transparent !important;
}

.section-eyebrow,
.admin-eyebrow,
.text-primary,
.contact-section i {
  color: var(--px-primary) !important;
}

.lead {
  color: var(--px-muted);
  font-weight: 460;
}

.btn {
  border-radius: var(--px-radius) !important;
  font-weight: 760;
  letter-spacing: 0;
  min-height: 42px;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

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

.btn-primary,
.hero a.btn.btn-primary,
.btn-danger {
  background: var(--px-primary) !important;
  border-color: var(--px-primary) !important;
  box-shadow: 0 10px 24px rgba(36, 88, 211, 0.2) !important;
  color: #fff !important;
  text-transform: none !important;
}

.btn-primary:hover,
.hero a.btn.btn-primary:hover,
.btn-danger:hover {
  background: var(--px-primary-dark) !important;
  border-color: var(--px-primary-dark) !important;
}

.btn-outline-primary {
  border-color: rgba(36, 88, 211, 0.45) !important;
  color: var(--px-primary) !important;
}

.btn-outline-primary:hover,
.btn-outline-dark:hover {
  background: var(--px-primary) !important;
  border-color: var(--px-primary) !important;
  color: #fff !important;
}

.btn-outline-dark {
  border-color: var(--px-border) !important;
  color: var(--px-ink) !important;
}

.card,
.team-card,
.profile-card,
.highlight-box,
.bg-light.rounded,
.bg-light.rounded-4,
.shadow-sm,
.shadow-lg,
.modal-content,
.toast {
  border-radius: var(--px-radius) !important;
}

.card,
.team-card,
.profile-card,
.highlight-box,
.bg-light.rounded,
.bg-light.rounded-4,
.contact-section form {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(219, 229, 239, 0.96) !important;
  box-shadow: var(--px-shadow-sm) !important;
}

.card:hover,
.team-card:hover,
.profile-card:hover,
.portfolio-case-card:hover {
  box-shadow: var(--px-shadow) !important;
  transform: translateY(-3px);
}

.card-img-top,
.carousel-inner,
.carousel-item img,
.tool-preview img {
  border-radius: var(--px-radius) var(--px-radius) 0 0 !important;
}

.card-img-top,
.carousel-item img,
.tool-preview img {
  display: block;
  object-position: center;
  width: 100%;
}

.carousel {
  border: 1px solid var(--px-border);
  border-radius: var(--px-radius) !important;
  overflow: hidden;
}

.carousel-item img {
  aspect-ratio: 16 / 11;
  background: #f4f7fb;
  object-fit: contain;
}

.profile-img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 38%;
}

.profile-img-contain {
  background: #eef3f8;
  object-fit: contain;
  object-position: center bottom;
  padding: 0.28rem;
}

.home-team-card {
  overflow: hidden;
  position: relative;
}

.home-team-card::before {
  background: linear-gradient(180deg, var(--px-primary), var(--px-teal));
  content: "";
  inset: 0 auto 0 0;
  opacity: 0.92;
  position: absolute;
  width: 5px;
}

.home-team-card.flex-md-row-reverse::before {
  background: linear-gradient(180deg, var(--px-teal), var(--px-amber));
}

.team-focus-line {
  align-items: flex-start;
  background: #eef6f3;
  border: 1px solid #d5eae5;
  border-radius: var(--px-radius);
  color: var(--px-teal-dark);
  display: flex;
  font-size: 0.95rem;
  font-weight: 680;
  gap: 0.55rem;
  line-height: 1.4;
  margin: 1rem 0 0;
  padding: 0.74rem 0.85rem;
}

.team-focus-line i {
  line-height: 1.4;
  margin-top: 0.02rem;
}

.team-focus-line-blue {
  background: #edf4ff;
  border-color: #d7e5ff;
  color: var(--px-primary-dark);
}

.team-actions {
  align-items: center;
}

.team-profile-btn {
  font-size: 0.92rem;
  min-width: 158px;
}

.team-social-link {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--px-border);
  border-radius: var(--px-radius);
  color: var(--px-ink-soft);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  width: 48px;
}

.team-social-link:hover,
.team-social-link:focus {
  background: #edf4ff;
  border-color: rgba(36, 88, 211, 0.32);
  box-shadow: 0 10px 22px rgba(36, 88, 211, 0.13);
  color: var(--px-primary);
  transform: translateY(-1px);
}

.profile-page-photo {
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  width: min(100%, 320px);
}

.form-control,
.form-select,
.input-group-text,
textarea.form-control {
  border-color: var(--px-border) !important;
  border-radius: var(--px-radius) !important;
  color: var(--px-ink);
  min-height: 44px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--px-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(36, 88, 211, 0.14) !important;
}

.input-group-text {
  background: #f4f7fb !important;
  color: var(--px-muted);
}

.connection-container {
  background: transparent !important;
  margin-top: 64px !important;
  padding: 4rem 0;
}

.connection-logo {
  max-width: 104px !important;
}

.card.w-50 {
  width: min(520px, calc(100% - 32px)) !important;
}

.portfolio-cases,
.portfolio {
  padding-bottom: 5rem !important;
  padding-top: 5rem !important;
}

.portfolio-intro {
  max-width: 880px;
}

.portfolio-case-card {
  height: 100%;
  overflow: hidden;
}

.portfolio-case-card .card-img-top {
  aspect-ratio: 16 / 10;
  background: #edf2f7;
  object-fit: cover;
}

.portfolio-case-card .case-img-contain {
  object-fit: contain;
  padding: 1.4rem;
}

.case-status {
  background: rgba(15, 143, 131, 0.13) !important;
  color: var(--px-teal-dark) !important;
}

.case-domain,
.case-stack span,
.badge,
.badge-tech {
  border-radius: var(--px-radius) !important;
  line-height: 1.25;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

.case-domain,
.case-stack span {
  background: #eef3f1 !important;
  color: #395166 !important;
}

.contact-section .row.g-4 > [class*="col-"] > div {
  min-height: 100%;
}

.contact-section form {
  padding: 1.25rem;
}

.home-cta {
  background:
    linear-gradient(135deg, #f8fbff 0%, #eef6f3 58%, #fff8ee 100%) !important;
  border-top: 1px solid rgba(219, 229, 239, 0.8);
}

.home-cta .container {
  max-width: 850px;
}

.home-cta p {
  color: var(--px-muted);
}

.home-cta-btn {
  min-width: 190px;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.68), rgba(7, 17, 31, 0.82)),
    var(--page-hero-image, linear-gradient(135deg, #07111f, #0d2a36));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  isolation: isolate;
  min-height: clamp(430px, 58svh, 620px);
  overflow: hidden;
  padding: clamp(4.6rem, 8vw, 6.8rem) 0 clamp(3.2rem, 6vw, 5rem);
  position: relative;
}

.page-hero::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.page-hero .container {
  align-items: flex-end;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.55fr);
  position: relative;
  z-index: 1;
}

.page-hero--services {
  --page-hero-image: url("../assets/images/services/service-cloud-devops.webp") center 46% / cover no-repeat;
}

.page-hero--portfolio {
  --page-hero-image: url("../assets/images/portfolio/porfolio-dev-web.webp") center 46% / cover no-repeat;
}

.page-hero--contact {
  --page-hero-image: url("../assets/images/about/about-dev-web.webp") center 45% / cover no-repeat;
}

.page-hero--team {
  --page-hero-image: url("../assets/images/about/about-robotic-IA.webp") center 45% / cover no-repeat;
}

.page-hero--legal {
  background:
    radial-gradient(circle at 12% 24%, rgba(36, 88, 211, 0.24), transparent 26rem),
    radial-gradient(circle at 88% 76%, rgba(15, 143, 131, 0.22), transparent 26rem),
    linear-gradient(135deg, #07111f 0%, #12243a 56%, #061817 100%);
}

.page-hero-content {
  max-width: 850px;
}

.page-hero .section-kicker {
  color: #98f0dc;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.45rem, 5.8vw, 5rem);
  line-height: 0.98;
  margin-bottom: 1rem;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.page-hero p {
  color: rgba(238, 243, 248, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 520;
  margin-bottom: 0;
  max-width: 780px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.page-hero-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--px-radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  padding: 1rem;
}

.page-hero-panel strong,
.page-hero-panel span {
  display: block;
}

.page-hero-panel strong {
  color: #fff;
  font-size: 1.06rem;
  font-weight: 850;
  line-height: 1.18;
}

.page-hero-panel span {
  color: rgba(238, 243, 248, 0.76);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.38;
  margin-top: 0.28rem;
}

.page-stat-grid {
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.9rem;
}

.page-stat {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--px-radius);
  padding: 0.78rem;
}

.profile-premium-page {
  background: #f5f8fc;
  color: var(--px-ink);
}

.profile-premium-page main {
  overflow: hidden;
}

.profile-hero {
  background:
    linear-gradient(105deg, rgba(7, 17, 31, 0.92) 0%, rgba(13, 38, 58, 0.78) 48%, rgba(7, 17, 31, 0.9) 100%),
    var(--profile-hero-image, linear-gradient(135deg, #07111f, #123047));
  background-position: center;
  background-size: cover;
  color: #fff;
  min-height: clamp(560px, 78svh, 760px);
  padding: clamp(6.8rem, 9vw, 8.5rem) 0 clamp(4rem, 7vw, 6rem);
  position: relative;
}

.profile-hero::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
}

.profile-hero--nel {
  --profile-hero-image: url("../assets/images/portfolio/porfolio-aws-consulting.webp");
}

.profile-hero--ferio {
  --profile-hero-image: url("../assets/images/about/about-robotic-IA.webp");
}

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

.profile-kicker {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #a9f4df;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 850;
  gap: 0.48rem;
  letter-spacing: 0;
  margin-bottom: 1rem;
  padding: 0.48rem 0.82rem;
  text-transform: uppercase;
}

.profile-hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.98;
  margin-bottom: 1rem;
  max-width: 920px;
  text-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
}

.profile-hero-lead {
  color: rgba(238, 243, 248, 0.9);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  font-weight: 560;
  max-width: 790px;
}

.profile-pill-row,
.profile-action-row,
.profile-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.profile-pill-row {
  margin-top: 1.35rem;
}

.profile-pill-row span,
.profile-skill-cloud span {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #f7fbff;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 750;
  gap: 0.45rem;
  padding: 0.56rem 0.78rem;
}

.profile-action-row {
  margin-top: 1.6rem;
}

.profile-action-row .btn {
  border-radius: 999px;
  font-weight: 800;
  min-height: 46px;
  padding-inline: 1.1rem;
}

.profile-portrait-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  padding: 0.72rem;
}

.profile-portrait-card img {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.profile-portrait-meta {
  display: grid;
  gap: 0.62rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.72rem;
}

.profile-portrait-meta span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--px-radius);
  color: rgba(238, 243, 248, 0.84);
  font-size: 0.8rem;
  font-weight: 760;
  padding: 0.72rem;
}

.profile-portrait-meta strong {
  color: #fff;
  display: block;
  font-size: 1.04rem;
}

.profile-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.profile-section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

.profile-section-tinted {
  background: linear-gradient(135deg, #eef6ff 0%, #f6fbf8 54%, #fff8ee 100%);
}

.profile-heading {
  margin-bottom: 2rem;
  max-width: 860px;
}

.profile-heading .section-kicker {
  margin-bottom: 0.6rem;
}

.profile-heading h2 {
  color: var(--px-ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.profile-heading p {
  color: var(--px-muted);
  font-size: 1.05rem;
  font-weight: 560;
}

.profile-panel,
.profile-project-card,
.profile-impact-card,
.profile-chart-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(205, 218, 232, 0.78);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(15, 27, 45, 0.08);
}

.profile-panel {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.profile-panel h3,
.profile-project-card h3,
.profile-impact-card h3 {
  color: var(--px-ink);
  font-weight: 900;
  letter-spacing: 0;
}

.profile-panel p,
.profile-project-card p,
.profile-impact-card p {
  color: var(--px-muted);
  font-weight: 560;
  line-height: 1.62;
}

.profile-skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.profile-skill-cloud span {
  background: #f5f8fc;
  border-color: rgba(36, 88, 211, 0.14);
  color: var(--px-ink-soft);
}

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

.profile-metric {
  background: #f7fafc;
  border: 1px solid rgba(205, 218, 232, 0.72);
  border-radius: var(--px-radius);
  padding: 1rem;
}

.profile-metric strong {
  color: var(--px-primary);
  display: block;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}

.profile-metric span {
  color: var(--px-muted);
  display: block;
  font-size: 0.86rem;
  font-weight: 720;
  margin-top: 0.35rem;
}

.profile-project-card {
  height: 100%;
  padding: 1.35rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.profile-project-card:hover {
  border-color: rgba(36, 88, 211, 0.28);
  box-shadow: 0 24px 58px rgba(15, 27, 45, 0.12);
  transform: translateY(-3px);
}

.profile-project-card .case-stack {
  margin-top: 1rem;
}

.profile-impact-card {
  height: 100%;
  padding: 1.25rem;
}

.profile-impact-icon {
  align-items: center;
  background: linear-gradient(135deg, #2458d3, #0f8f83);
  border-radius: 16px;
  color: #fff;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 0.9rem;
  width: 46px;
}

.profile-chart-card {
  padding: clamp(1rem, 3vw, 1.6rem);
}

.profile-chart-card canvas {
  max-height: 360px;
}

.premium-section {
  padding-bottom: clamp(4rem, 7vw, 6rem);
  padding-top: clamp(4rem, 7vw, 6rem);
}

.premium-section-soft {
  background:
    linear-gradient(180deg, #fbfcfd 0%, #f4f8f8 100%) !important;
  border-bottom: 1px solid rgba(219, 229, 239, 0.74);
  border-top: 1px solid rgba(219, 229, 239, 0.74);
}

.service-premium-card,
.contact-method-card,
.contact-form-card,
.contact-insight,
.team-premium-card,
.legal-shell,
.legal-section {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(219, 229, 239, 0.96);
  border-radius: var(--px-radius);
  box-shadow: var(--px-shadow-sm);
}

.service-premium-card,
.contact-method-card,
.team-premium-card,
.legal-section {
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-premium-card:hover,
.contact-method-card:hover,
.team-premium-card:hover,
.legal-section:hover {
  border-color: rgba(36, 88, 211, 0.28);
  box-shadow: var(--px-shadow);
  transform: translateY(-3px);
}

.service-premium-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.service-premium-card img {
  aspect-ratio: 16 / 10;
  background: #edf2f7;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.2rem;
}

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

.service-proof-grid span,
.case-proof-grid span {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.92)),
    radial-gradient(circle at 18% 12%, rgba(15, 143, 131, 0.16), transparent 56%);
  border: 1px solid rgba(197, 211, 225, 0.88);
  border-radius: var(--px-radius);
  box-shadow: 0 8px 22px rgba(20, 32, 51, 0.055);
  color: #28415c;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 780;
  justify-content: center;
  line-height: 1.18;
  min-height: 42px;
  overflow-wrap: anywhere;
  padding: 0.52rem 0.58rem;
  position: relative;
  text-align: center;
}

.service-proof-grid span::before,
.case-proof-grid span::before {
  background: linear-gradient(90deg, transparent, rgba(36, 88, 211, 0.24), transparent);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translateX(-70%);
}

.service-premium-card:hover .service-proof-grid span::before,
.portfolio-case-card:hover .case-proof-grid span::before {
  animation: pxProofSweep 1.4s ease;
}

.service-card-kicker {
  color: var(--px-teal-dark);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-card-body h2 {
  font-size: 1.18rem;
  margin-bottom: 0;
}

.service-card-body p {
  color: var(--px-muted);
  margin-bottom: 0;
}

.service-card-link {
  align-items: center;
  color: var(--px-primary);
  display: inline-flex;
  font-weight: 800;
  gap: 0.42rem;
  margin-top: auto;
  text-decoration: none;
}

.service-card-link:hover {
  color: var(--px-primary-dark);
}

.premium-cta-band {
  background:
    linear-gradient(135deg, #07111f 0%, #12243a 54%, #061817 100%);
  border-radius: var(--px-radius);
  box-shadow: var(--px-shadow);
  color: #fff;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  position: relative;
}

.premium-cta-band::after {
  background:
    radial-gradient(circle at 20% 25%, rgba(36, 88, 211, 0.3), transparent 18rem),
    radial-gradient(circle at 84% 78%, rgba(15, 143, 131, 0.28), transparent 18rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

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

.premium-cta-band h2 {
  color: #fff;
}

.premium-cta-band p {
  color: rgba(238, 243, 248, 0.78);
}

.premium-cta-copy {
  max-width: 680px;
}

.contact-method-card,
.contact-form-card,
.contact-insight {
  padding: 1.15rem;
}

.contact-method-icon {
  align-items: center;
  background: #edf4ff;
  border: 1px solid #d7e5ff;
  border-radius: var(--px-radius);
  color: var(--px-primary);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 0.9rem;
  width: 46px;
}

.contact-method-card h2 {
  font-size: 1.06rem;
  margin-bottom: 0.36rem;
}

.contact-method-card p,
.contact-insight p {
  color: var(--px-muted);
  margin-bottom: 0;
}

.contact-form-card form {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0;
}

.contact-insight {
  background:
    linear-gradient(180deg, rgba(237, 244, 255, 0.86), rgba(233, 247, 244, 0.84));
}

.toast-container {
  pointer-events: none;
}

.form-toast-layer {
  z-index: 9999;
}

.toast {
  pointer-events: auto;
}

.toast.bg-success {
  background-color: rgba(25, 135, 84, 0.92) !important;
}

.toast.bg-danger {
  background-color: rgba(220, 53, 69, 0.92) !important;
}

.team-premium-card {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  padding: 1.1rem;
}

.team-premium-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr);
}

.team-premium-card:nth-child(even) .team-member-media {
  order: 2;
}

.team-member-media {
  background:
    linear-gradient(135deg, #edf4ff 0%, #eef6f3 100%);
  border-radius: var(--px-radius);
  display: grid;
  min-height: 320px;
  overflow: hidden;
  place-items: center;
}

.team-member-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  width: 100%;
}

.team-member-content {
  align-self: center;
  padding: 0.35rem;
}

.team-member-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: 0.3rem;
}

.team-member-content p {
  color: var(--px-muted);
}

.team-skill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.15rem;
}

.team-skill-row span {
  background: #eef3f1;
  border: 1px solid rgba(219, 229, 239, 0.96);
  border-radius: var(--px-radius);
  color: #395166;
  font-size: 0.84rem;
  font-weight: 760;
  padding: 0.42rem 0.58rem;
}

.team-member-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.member-social-link {
  align-items: center;
  border: 1px solid var(--px-border);
  border-radius: var(--px-radius);
  color: var(--px-ink-soft);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  text-decoration: none;
  width: 44px;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.18);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(36, 88, 211, 0.22), transparent 35%);
  pointer-events: none;
}

.hero-panel p,
.hero-panel h3,
.hero-panel strong {
  position: relative;
  z-index: 1;
}

.hero-panel-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.hero-panel-list li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
}

.home-process-grid,
.trust-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step,
.feature-card,
.trust-feature-card,
.case-highlight-card {
  background: #fff;
  border: 1px solid rgba(219, 229, 239, 0.96);
  border-radius: var(--px-radius);
  box-shadow: var(--px-shadow-sm);
  padding: 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.process-step:hover,
.feature-card:hover,
.trust-feature-card:hover,
.case-highlight-card:hover {
  border-color: rgba(36, 88, 211, 0.28);
  box-shadow: var(--px-shadow);
  transform: translateY(-3px);
}

.process-step-number {
  align-items: center;
  background: linear-gradient(135deg, #2458d3, #0f8f83);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  margin-bottom: 1rem;
  min-width: 44px;
  padding: 0 0.9rem;
}

.feature-card h3,
.trust-feature-card h3,
.case-highlight-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.feature-card p,
.trust-feature-card p,
.case-highlight-card p {
  color: var(--px-muted);
  margin-bottom: 0;
}

.expertise-badge-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.expertise-badge-grid span {
  background: #eef4fb;
  border: 1px solid rgba(36, 88, 211, 0.16);
  border-radius: 999px;
  color: var(--px-ink);
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.4;
  padding: 0.75rem 1rem;
}

.trust-grid {
  gap: 1rem;
}

.trust-feature-card {
  min-height: 178px;
}

.premium-cta-band {
  padding: clamp(2rem, 4vw, 2.5rem);
}

.shadow-soft {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991.98px) {
  .hero-panel {
    padding: 1.8rem;
  }
}

.member-social-link:hover,
.member-social-link:focus {
  background: #edf4ff;
  border-color: rgba(36, 88, 211, 0.32);
  color: var(--px-primary);
}

.legal-page .page-hero {
  min-height: clamp(320px, 42svh, 460px);
}

.legal-page .page-hero .container {
  display: block;
}

.legal-shell {
  padding: clamp(1.2rem, 3vw, 2rem);
}

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

.legal-meta-item {
  background: #f7faf9;
  border: 1px solid rgba(219, 229, 239, 0.94);
  border-radius: var(--px-radius);
  padding: 0.85rem;
}

.legal-meta-item strong,
.legal-meta-item span {
  display: block;
}

.legal-meta-item strong {
  color: var(--px-ink);
  font-weight: 840;
}

.legal-meta-item span {
  color: var(--px-muted);
  margin-top: 0.18rem;
}

.legal-section {
  padding: 1rem;
}

.legal-section h2 {
  font-size: 1.18rem;
  margin-bottom: 0.52rem;
}

.legal-reference-note {
  margin: 0 0 18px;
  padding: 10px 12px;
  border: 1px solid rgba(36, 88, 211, 0.16);
  border-radius: var(--px-radius);
  background: rgba(36, 88, 211, 0.06);
  color: var(--px-muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

.about-page {
  background:
    linear-gradient(180deg, #fbfcfd 0%, #f5f8fb 48%, #f8faf8 100%) !important;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.88) 0%, rgba(7, 17, 31, 0.66) 52%, rgba(7, 17, 31, 0.74) 100%),
    url("../assets/images/about/about-cloud-devops.webp") center 46% / cover no-repeat;
  color: #ffffff;
  min-height: clamp(620px, 78svh, 820px);
  overflow: hidden;
  padding: clamp(5.4rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 5.5rem);
  position: relative;
}

.about-hero::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero-content {
  max-width: 850px;
}

.about-hero .section-kicker {
  color: #98f0dc;
}

.about-hero h1 {
  color: #ffffff;
  font-size: clamp(2.55rem, 6vw, 5rem);
  line-height: 0.98;
  margin-bottom: 1.1rem;
  max-width: 920px;
  text-shadow: 0 20px 58px rgba(0, 0, 0, 0.36);
}

.about-hero p {
  color: rgba(238, 243, 248, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.26rem);
  font-weight: 520;
  max-width: 800px;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.about-hero-cta {
  align-items: center;
  display: inline-flex !important;
  gap: 0.55rem;
  justify-content: center;
  min-height: 48px;
  min-width: 178px;
  padding: 0.78rem 1.05rem;
  white-space: nowrap;
}

.about-proof-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2rem, 6vw, 4.5rem);
  max-width: 850px;
}

.about-proof-item {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--px-radius);
  min-height: 92px;
  padding: 0.95rem;
}

.about-proof-item strong,
.about-proof-item span {
  display: block;
}

.about-proof-item strong {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 850;
}

.about-proof-item span {
  color: rgba(238, 243, 248, 0.75);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
  margin-top: 0.2rem;
}

.about-mission-section,
.about-process-section {
  background: #ffffff !important;
}

.about-values-section,
.about-capabilities-section {
  background:
    linear-gradient(180deg, #f7faf9 0%, #f3f7fb 100%) !important;
  border-bottom: 1px solid rgba(219, 229, 239, 0.74);
  border-top: 1px solid rgba(219, 229, 239, 0.74);
}

.about-commitments {
  display: grid;
  gap: 0.72rem;
}

.about-commitment {
  align-items: flex-start;
  background: #f7faf9;
  border: 1px solid rgba(219, 229, 239, 0.94);
  border-radius: var(--px-radius);
  color: var(--px-ink-soft);
  display: flex;
  font-weight: 680;
  gap: 0.72rem;
  line-height: 1.45;
  padding: 0.86rem 0.95rem;
}

.about-commitment i {
  color: var(--px-teal-dark);
  line-height: 1.45;
}

.about-visual-stack {
  position: relative;
}

.about-visual-main {
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(219, 229, 239, 0.96);
  border-radius: var(--px-radius);
  box-shadow: var(--px-shadow);
  display: block;
  object-fit: cover;
  object-position: center 48%;
  width: 100%;
}

.about-visual-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(219, 229, 239, 0.96);
  border-radius: var(--px-radius);
  bottom: 1rem;
  box-shadow: var(--px-shadow-sm);
  display: grid;
  gap: 0.2rem;
  max-width: min(82%, 340px);
  padding: 0.9rem 1rem;
  position: absolute;
  right: 1rem;
}

.about-visual-card strong {
  color: var(--px-ink);
  font-size: 0.98rem;
  line-height: 1.2;
}

.about-visual-card span {
  color: var(--px-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.about-value-card,
.about-capability-card,
.about-process-step {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 229, 239, 0.96);
  border-radius: var(--px-radius);
  box-shadow: var(--px-shadow-sm);
  height: 100%;
  padding: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-value-card:hover,
.about-capability-card:hover,
.about-process-step:hover {
  border-color: rgba(36, 88, 211, 0.28);
  box-shadow: var(--px-shadow);
  transform: translateY(-3px);
}

.about-value-card > i,
.about-capability-card > i {
  align-items: center;
  background: #edf4ff;
  border: 1px solid #d7e5ff;
  border-radius: var(--px-radius);
  color: var(--px-primary);
  display: inline-flex;
  font-size: 1.1rem;
  height: 44px;
  justify-content: center;
  margin-bottom: 0.9rem;
  width: 44px;
}

.about-value-card h3,
.about-capability-card h3,
.about-process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.48rem;
}

.about-value-card p,
.about-capability-card p,
.about-process-step p {
  color: var(--px-muted);
  margin-bottom: 0;
}

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

.about-process-step span {
  color: var(--px-primary);
  display: block;
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 0.65rem;
}

.about-cta {
  background:
    linear-gradient(135deg, #f8fbff 0%, #eef6f3 58%, #fff8ee 100%) !important;
  border-top: 1px solid rgba(219, 229, 239, 0.8);
}

.about-cta .container {
  max-width: 860px;
}

.about-cta p {
  color: var(--px-muted);
}

.tools {
  background: transparent !important;
  color: var(--px-ink);
}

.hero-section-modern {
  background:
    linear-gradient(135deg, #ffffff 0%, #f5f8fb 58%, #eef6f3 100%) !important;
  border: 1px solid rgba(219, 229, 239, 0.92) !important;
  border-radius: var(--px-radius);
  box-shadow: var(--px-shadow-sm);
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  padding: 4.25rem 1.25rem !important;
}

.hero-section-modern h1 {
  color: var(--px-ink);
  font-size: 3.4rem !important;
  line-height: 1.03;
}

.hero-section-modern .highlighted {
  color: var(--px-teal) !important;
}

.btn-modern {
  background: #fff !important;
  border: 1px solid var(--px-border) !important;
  border-radius: var(--px-radius) !important;
  box-shadow: none !important;
  color: var(--px-ink) !important;
  font-weight: 760 !important;
}

.btn-modern:hover,
.btn-modern:focus {
  background: var(--px-primary) !important;
  border-color: var(--px-primary) !important;
  color: #fff !important;
}

.badge-new {
  background: var(--px-coral) !important;
  border-radius: var(--px-radius) !important;
}

.tools .card {
  border: 1px solid rgba(219, 229, 239, 0.96) !important;
  box-shadow: var(--px-shadow-sm) !important;
}

.tools .card-header {
  background: #f7faf9 !important;
  border-bottom: 1px solid var(--px-border) !important;
  color: var(--px-ink) !important;
}

.tools .btn-success {
  background: var(--px-teal) !important;
  border-color: var(--px-teal) !important;
}

.tools .btn-success:hover {
  background: var(--px-teal-dark) !important;
  border-color: var(--px-teal-dark) !important;
}

.estimation-time {
  background: #eef6f3 !important;
  border-left-color: var(--px-teal) !important;
  color: var(--px-ink-soft) !important;
}

#loadingOverlay {
  background: rgba(246, 248, 251, 0.9) !important;
  backdrop-filter: blur(8px);
}

.footer {
  background:
    linear-gradient(135deg, rgba(36, 88, 211, 0.16), transparent 34%),
    linear-gradient(225deg, rgba(15, 143, 131, 0.16), transparent 36%),
    linear-gradient(145deg, #07111f 0%, #0d1726 52%, #061817 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #eef3f8 !important;
  margin-top: auto;
  overflow: hidden;
  padding-bottom: clamp(2rem, 5vw, 3.4rem) !important;
  padding-top: clamp(2rem, 5vw, 3.4rem) !important;
  position: relative;
}

.footer::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.legal-content,
.highlight-box {
  color: var(--px-ink-soft);
}

.theme-toggle .btn,
.btn-sm {
  min-height: 34px;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes pxProofSweep {
  0% {
    opacity: 0;
    transform: translateX(-70%);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(70%);
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: 68px;
  }

  .navbar {
    min-height: 68px;
  }

  .navbar-collapse {
    background: #fff;
    border: 1px solid var(--px-border);
    border-radius: var(--px-radius);
    box-shadow: var(--px-shadow-sm);
    margin-top: 10px;
    padding: 10px;
  }

  .navbar-nav {
    align-items: stretch;
  }

  #languageSwitcher {
    margin: 8px 0 0 !important;
    width: 100%;
  }

  .hero {
    min-height: auto !important;
    padding: 5rem 1rem 4.5rem !important;
  }

  .hero::after {
    display: none;
  }

  .home-hero {
    min-height: clamp(520px, 82svh, 720px) !important;
  }

  .home-hero::after {
    background-position: center;
    display: block;
    opacity: 0.28;
  }

  .hero h1 {
    font-size: 3.1rem !important;
  }

  .hero p,
  .hero .lead,
  .typed-text {
    font-size: 1.08rem !important;
  }

  .hero-proof-grid {
    max-width: 720px;
  }

  .about-hero {
    background-position: center 42%;
  }

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

  .page-hero .container {
    grid-template-columns: 1fr;
  }

  .page-hero-panel {
    max-width: 640px;
  }

  .profile-hero-grid {
    grid-template-columns: 1fr;
  }

  .profile-portrait-card {
    max-width: 420px;
  }

  .team-premium-card,
  .team-premium-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .team-premium-card:nth-child(even) .team-member-media {
    order: 0;
  }

  .team-member-media {
    min-height: 300px;
  }
}

@media (max-width: 767.98px) {
  .container,
  .container-lg {
    width: min(100% - 24px, 1160px);
  }

  .hero h1 {
    font-size: 2.35rem !important;
  }

  .home-hero {
    min-height: clamp(500px, 78svh, 660px) !important;
    padding: 4.25rem 1rem 3.75rem !important;
  }

  .home-hero::after {
    background-position: center top;
    opacity: 0.24;
  }

  .hero p,
  .hero .lead,
  .typed-text {
    font-size: 1rem !important;
  }

  .hero-eyebrow {
    align-items: flex-start;
    border-radius: var(--px-radius);
    font-size: 0.82rem;
    text-align: left;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .hero-main-cta,
  .hero-secondary-cta {
    min-width: 0;
    white-space: normal;
    width: min(100%, 320px);
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
    margin-top: 1.35rem;
    max-width: 360px;
  }

  .hero-proof-item {
    min-height: auto;
    padding: 0.78rem 0.86rem;
  }

  .display-4,
  .display-5 {
    font-size: 2.25rem !important;
  }

  .hero-section-modern h1 {
    font-size: 2.25rem !important;
  }

  .card,
  .team-card,
  .profile-card {
    padding: 1rem !important;
  }

  .home-team-card::before {
    height: 4px;
    inset: 0 0 auto 0;
    width: 100%;
  }

  .team-actions {
    justify-content: center;
  }

  .team-profile-btn {
    width: min(100%, 260px);
  }

  .capability-card {
    padding: 1.05rem;
  }

  .about-hero {
    background:
      linear-gradient(180deg, rgba(7, 17, 31, 0.9) 0%, rgba(7, 17, 31, 0.72) 58%, rgba(7, 17, 31, 0.9) 100%),
      url("../assets/images/about/about-cloud-devops.webp") center top / cover no-repeat;
    min-height: auto;
    padding: 4.6rem 0 3.5rem;
  }

  .about-hero-actions {
    justify-content: center;
  }

  .about-hero-cta {
    min-width: 0;
    white-space: normal;
    width: min(100%, 320px);
  }

  .about-proof-grid {
    grid-template-columns: 1fr;
    margin-top: 1.6rem;
  }

  .about-proof-item {
    min-height: auto;
  }

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

  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    background-position: center top;
    min-height: auto;
    padding: 4.5rem 0 3.25rem;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.05rem);
  }

  .page-hero-actions .btn {
    width: min(100%, 320px);
  }

  .page-stat-grid,
  .legal-meta-grid,
  .profile-metric-grid,
  .profile-portrait-meta {
    grid-template-columns: 1fr;
  }

  .profile-hero {
    min-height: auto;
    padding: 5.2rem 0 3.4rem;
  }

  .profile-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .profile-action-row .btn {
    width: min(100%, 320px);
  }

  .service-premium-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .team-member-media {
    min-height: 260px;
  }

  .card-img-top,
  .carousel-item img,
  .portfolio-case-card .card-img-top {
    aspect-ratio: 4 / 3;
    background: #f4f7fb;
    object-fit: contain;
  }

  .profile-img {
    height: 170px !important;
    width: 170px !important;
  }

  .footer-logo {
    height: 48px !important;
  }

  .footer-logo-lockup {
    justify-content: flex-start;
    width: min(100%, 360px);
  }

  .footer-logo-mark {
    height: 62px;
    width: 62px;
  }

  .footer-actions {
    justify-content: center;
  }

  .social-link {
    flex: 1 1 148px;
    max-width: 190px;
    min-width: 148px;
  }

  .cookie-banner-inner {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .hero-main-cta,
  .hero-secondary-cta,
  .team-profile-btn,
  .home-cta-btn {
    width: 100%;
  }

  .team-social-link {
    flex: 1 1 48px;
  }

  .footer-logo-lockup,
  .about-hero-cta,
  .social-link {
    width: 100%;
  }

  .social-link {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .service-proof-grid,
  .case-proof-grid {
    grid-template-columns: 1fr;
  }

  .service-proof-grid span,
  .case-proof-grid span {
    justify-content: flex-start;
    min-height: 38px;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   PixiCore Premium Refresh v3 - homepage & team
   Scoped to prevent regressions on other public and private pages.
   ========================================================================== */
.home-premium-v3,
.team-premium-v3 {
  --v3-navy: #06111f;
  --v3-navy-2: #0d2137;
  --v3-blue: #3f73ff;
  --v3-teal: #31d4b2;
  --v3-ink: #0d1c31;
  --v3-muted: #607087;
  --v3-line: rgba(137, 162, 194, .28);
  --v3-shadow: 0 30px 90px rgba(10, 27, 50, .12);
  background: #f5f8fc !important;
  overflow-x: clip;
}

.home-premium-v3 .container-xl,
.team-premium-v3 .container-xl {
  width: min(1360px, calc(100% - 48px));
}

.home-premium-v3 .navbar,
.team-premium-v3 .navbar {
  background: rgba(250, 252, 255, .91) !important;
  border-bottom: 1px solid rgba(117, 145, 179, .17);
  box-shadow: 0 16px 50px rgba(7, 25, 50, .08);
}

.home-premium-v3 .navbar-nav .nav-link,
.team-premium-v3 .navbar-nav .nav-link {
  font-size: .88rem;
  padding: .6rem .68rem;
}

.home-premium-v3 .navbar-nav .nav-link.active,
.team-premium-v3 .navbar-nav .nav-link.active {
  background: linear-gradient(135deg, #eaf1ff, #edf9f6);
}

.home-v3-hero,
.team-v3-hero {
  background:
    radial-gradient(circle at 10% 12%, rgba(63, 115, 255, .34), transparent 30rem),
    radial-gradient(circle at 88% 78%, rgba(49, 212, 178, .2), transparent 28rem),
    linear-gradient(135deg, #050d19 0%, #0a1d33 52%, #061c20 100%);
  color: #fff;
  isolation: isolate;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
  position: relative;
}

.home-v3-hero::before,
.team-v3-hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, #000, transparent 94%);
  opacity: .25;
  pointer-events: none;
  position: absolute;
}

.home-v3-grid,
.team-v3-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.4rem, 6vw, 6rem);
  grid-template-columns: minmax(0, .98fr) minmax(500px, 1.02fr);
  position: relative;
  z-index: 2;
}

.v3-pill {
  align-items: center;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  color: rgba(244,248,255,.9);
  display: inline-flex;
  font-size: .8rem;
  gap: .62rem;
  letter-spacing: .04em;
  padding: .62rem .86rem;
  text-transform: uppercase;
}

.v3-pill > span {
  animation: v3Pulse 2.5s ease-in-out infinite;
  background: var(--v3-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(49,212,178,.12);
  height: 9px;
  width: 9px;
}

.home-v3-copy h1,
.team-v3-copy h1 {
  color: #fff;
  font-size: clamp(3rem, 5.5vw, 6.2rem);
  font-weight: 920;
  letter-spacing: -.055em;
  line-height: .95;
  margin: 1.45rem 0 1.35rem;
  text-wrap: balance;
}

.home-v3-copy > p,
.team-v3-copy > p {
  color: rgba(232,239,249,.82);
  font-size: clamp(1.06rem, 1.7vw, 1.3rem);
  line-height: 1.65;
  max-width: 790px;
}

.v3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.8rem;
}

.v3-actions .btn,
.v3-final-card .btn {
  align-items: center;
  border-radius: 999px !important;
  display: inline-flex;
  gap: .55rem;
  justify-content: center;
  min-height: 54px;
  padding: .88rem 1.25rem;
}

.v3-btn-ghost {
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.34) !important;
  color: #fff !important;
}

.v3-btn-ghost:hover {
  background: rgba(255,255,255,.16) !important;
  border-color: rgba(255,255,255,.68) !important;
}

.v3-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  margin-top: 1.9rem;
}

.v3-trust span {
  align-items: center;
  color: rgba(234,241,250,.84);
  display: inline-flex;
  font-size: .86rem;
  gap: .48rem;
}

.v3-trust i { color: var(--v3-teal); }

.v3-architecture,
.team-v3-map {
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 32px;
  box-shadow: 0 40px 120px rgba(0,0,0,.36);
  min-height: 590px;
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.v3-window-head,
.team-map-head {
  align-items: center;
  color: rgba(235,243,255,.72);
  display: flex;
  gap: .4rem;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.v3-window-head > span {
  background: #f26b63;
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.v3-window-head > span:nth-child(2) { background: #f1b957; }
.v3-window-head > span:nth-child(3) { background: #31d4b2; }
.v3-window-head b { font-size: .74rem; margin-left: auto; }

.v3-orbit {
  height: 470px;
  position: relative;
}

.v3-orbit-ring {
  border: 1px solid rgba(137,172,255,.24);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ring-a { height: 320px; width: 320px; }
.ring-b { border-style: dashed; height: 420px; width: 420px; }

.v3-core,
.team-map-core {
  align-items: center;
  background: #07172a;
  border: 7px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 75px rgba(63,115,255,.28);
  display: flex;
  flex-direction: column;
  height: 175px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 175px;
  z-index: 4;
}

.v3-core img,
.team-map-core img {
  height: 47px;
  object-fit: contain;
  width: 64px;
}

.v3-core strong,
.team-map-core strong { color: #fff; }

.v3-core small,
.team-map-core small {
  color: rgba(235,243,255,.62);
  font-size: .7rem;
}

.v3-node {
  align-items: center;
  background: rgba(7,20,38,.82);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(0,0,0,.26);
  color: rgba(241,247,255,.9);
  display: flex;
  font-size: .78rem;
  font-weight: 760;
  gap: .48rem;
  padding: .68rem .78rem;
  position: absolute;
  z-index: 5;
}

.v3-node i { color: var(--v3-teal); }
.node-cloud { left: 4%; top: 18%; }
.node-devops { right: 3%; top: 20%; }
.node-ai { right: 0; top: 59%; }
.node-product { bottom: 8%; left: 18%; }
.node-ops { left: 0; top: 56%; }

.v3-window-foot {
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-top: .85rem;
}

.v3-window-foot span {
  color: rgba(235,243,255,.7);
  font-size: .72rem;
}

.v3-window-foot i { color: var(--v3-teal); margin-right: .3rem; }

.v3-heading { max-width: 920px; }
.v3-heading.center { margin-inline: auto; text-align: center; }
.v3-heading h2 {
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  text-wrap: balance;
}
.v3-heading p { color: var(--v3-muted); font-size: 1.04rem; }

.v3-capabilities {
  background: linear-gradient(180deg, #f5f8fc, #fff) !important;
}

.v3-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0,1fr));
  margin-top: 2.4rem;
}

.v3-card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--v3-line);
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(14,34,60,.08);
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-height: 300px;
  padding: 1.5rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.v3-card:hover {
  border-color: rgba(63,115,255,.34);
  box-shadow: var(--v3-shadow);
  transform: translateY(-6px);
}

.v3-card.card-wide { grid-column: span 8; }
.v3-card.card-accent { background: linear-gradient(145deg,#edf3ff,#effbf8); }
.v3-card.card-dark {
  background: linear-gradient(145deg,#0b192c,#0a2b2a);
  border-color: rgba(255,255,255,.1);
}
.v3-card.card-dark h3,
.v3-card.card-dark b { color: #fff; }
.v3-card.card-dark p { color: rgba(232,239,249,.72); }

.v3-card > i {
  align-items: center;
  background: linear-gradient(135deg,#e7efff,#e8faf5);
  border-radius: 16px;
  color: #2d62e7;
  display: flex;
  font-size: 1.15rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 1.1rem;
  width: 48px;
}

.v3-card.card-dark > i {
  background: rgba(255,255,255,.09);
  color: var(--v3-teal);
}

.v3-card > span {
  color: #7890ae;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.v3-card h3 {
  font-size: clamp(1.3rem,2.1vw,1.9rem);
  margin: .5rem 0 .7rem;
}

.v3-card p { color: var(--v3-muted); flex: 1; }
.v3-card b { color: #1c385c; font-size: .86rem; margin-top: 1rem; }

.v3-method,
.v3-organization,
.team-v3-leads,
.team-v3-delivery { background: #fff !important; }

.v3-split {
  align-items: center;
  display: grid;
  gap: clamp(2rem,6vw,6rem);
  grid-template-columns: minmax(0,.82fr) minmax(520px,1.18fr);
}

.v3-split.split-reverse {
  grid-template-columns: minmax(500px,1fr) minmax(0,.9fr);
}

.v3-text-link {
  align-items: center;
  display: inline-flex;
  font-weight: 820;
  gap: .5rem;
  margin-top: .7rem;
  text-decoration: none;
}

.v3-steps { display: grid; gap: .7rem; position: relative; }
.v3-steps::before {
  background: linear-gradient(#3f73ff,#31d4b2);
  bottom: 28px;
  content: "";
  left: 26px;
  position: absolute;
  top: 28px;
  width: 2px;
}

.v3-steps article {
  align-items: flex-start;
  background: #f7f9fc;
  border: 1px solid var(--v3-line);
  border-radius: 20px;
  display: grid;
  gap: 1rem;
  grid-template-columns: 54px 1fr;
  padding: 1rem;
  position: relative;
}

.v3-steps article > span {
  align-items: center;
  background: #0d2137;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: .74rem;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  position: relative;
  width: 52px;
  z-index: 2;
}

.v3-steps h3 { font-size: 1.05rem; margin: .1rem 0 .2rem; }
.v3-steps p { color: var(--v3-muted); font-size: .9rem; margin: 0; }

.v3-ai-band,
.team-v3-network {
  background: linear-gradient(180deg,#edf3fb,#f7fafc) !important;
}

.v3-ai-card {
  background: linear-gradient(135deg,#06111f,#102845 58%,#072b29);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 32px;
  box-shadow: 0 38px 100px rgba(6,17,31,.25);
  color: #fff;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0,.9fr) minmax(520px,1.1fr);
  padding: clamp(2rem,5vw,4rem);
}

.v3-light { color: #93f3df !important; }
.v3-ai-card h2,
.v3-final-card h2 {
  color: #fff;
  font-size: clamp(2.2rem,4vw,4.2rem);
  letter-spacing: -.04em;
  line-height: 1;
}
.v3-ai-card p,
.v3-final-card p { color: rgba(231,239,249,.76); }

.v3-ai-card ul {
  display: grid;
  gap: .65rem;
  list-style: none;
  margin: 1.4rem 0;
  padding: 0;
}
.v3-ai-card li { color: rgba(239,245,253,.86); }
.v3-ai-card li i { color: var(--v3-teal); margin-right: .5rem; }

.v3-console {
  background: rgba(4,12,24,.68);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 1rem;
}

.console-top {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  gap: .4rem;
  padding-bottom: .8rem;
}
.console-top span { background: #f26b63; border-radius: 50%; height: 9px; width: 9px; }
.console-top span:nth-child(2) { background: #f1b957; }
.console-top span:nth-child(3) { background: #31d4b2; }
.console-top b { color: rgba(235,243,255,.7); font-size: .74rem; margin-left: auto; }

.console-flow {
  align-items: center;
  display: grid;
  gap: .55rem;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  padding: 2rem 0;
}
.console-flow article {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  display: grid;
  gap: .25rem;
  min-height: 135px;
  padding: 1rem;
  place-content: center;
  text-align: center;
}
.console-flow article.active {
  background: linear-gradient(145deg,rgba(63,115,255,.25),rgba(49,212,178,.13));
  border-color: rgba(99,150,255,.45);
}
.console-flow article i { color: #8fb1ff; font-size: 1.3rem; }
.console-flow article strong { color: #fff; }
.console-flow article small { color: rgba(235,243,255,.58); }
.console-flow > i { color: #7194bf; }

.console-flags {
  display: grid;
  gap: .55rem;
  grid-template-columns: repeat(2,1fr);
}
.console-flags span {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: rgba(235,243,255,.72);
  font-size: .73rem;
  padding: .68rem;
}
.console-flags i { color: var(--v3-teal); margin-right: .32rem; }

.v3-expertise-map {
  aspect-ratio: 1;
  background: radial-gradient(circle at center,rgba(63,115,255,.15),transparent 45%),linear-gradient(145deg,#f1f5fb,#eaf5f3);
  border: 1px solid var(--v3-line);
  border-radius: 32px;
  box-shadow: var(--v3-shadow);
  max-width: 620px;
  position: relative;
}

.map-core {
  align-items: center;
  background: #08182b;
  border: 8px solid rgba(255,255,255,.82);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 180px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 180px;
  z-index: 3;
}
.map-core img { height: 48px; object-fit: contain; width: 64px; }
.map-core strong { color: #fff; }
.map-core small { color: rgba(235,243,255,.64); }

.v3-expertise-map > span {
  background: #fff;
  border: 1px solid rgba(137,162,194,.32);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(12,35,65,.1);
  color: #183653;
  font-size: .8rem;
  font-weight: 800;
  padding: .6rem .8rem;
  position: absolute;
}
.v3-expertise-map .m1 { left: 8%; top: 14%; }
.v3-expertise-map .m2 { right: 7%; top: 16%; }
.v3-expertise-map .m3 { right: 2%; top: 47%; }
.v3-expertise-map .m4 { right: 12%; bottom: 12%; }
.v3-expertise-map .m5 { left: 12%; bottom: 10%; }
.v3-expertise-map .m6 { left: 1%; top: 48%; }
.v3-expertise-map .m7 { left: 30%; top: 5%; }
.v3-expertise-map .m8 { right: 30%; bottom: 4%; }

.v3-note,
.team-v3-assurance {
  align-items: flex-start;
  background: #edf4ff;
  border: 1px solid rgba(63,115,255,.18);
  border-radius: 17px;
  display: flex;
  gap: .75rem;
  margin: 1.15rem 0 1.4rem;
  padding: .95rem;
}
.v3-note i { color: var(--v3-blue); margin-top: .2rem; }
.v3-note p { color: #36506d; font-size: .9rem; margin: 0; }

.v3-work { background: linear-gradient(180deg,#f6f9fc,#fff) !important; }
.v3-work-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3,1fr);
  margin-top: 2.3rem;
}
.v3-work-grid > a {
  background: #fff;
  border: 1px solid var(--v3-line);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(10,30,55,.08);
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.v3-work-grid > a:hover { box-shadow: var(--v3-shadow); transform: translateY(-7px); }
.v3-work-grid img { aspect-ratio: 16/10; background: #eef3f8; object-fit: cover; width: 100%; }
.v3-work-grid > a > div { padding: 1.3rem; }
.v3-work-grid small { color: #2f66e5; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.v3-work-grid h3 { font-size: 1.35rem; margin: .55rem 0; }
.v3-work-grid p { color: var(--v3-muted); }
.v3-work-grid b { color: #2f66e5; }

.v3-final { background: #fff !important; }
.v3-final-card {
  align-items: center;
  background: linear-gradient(135deg,#06111f,#102845 58%,#072b29);
  border-radius: 32px;
  box-shadow: 0 34px 100px rgba(5,17,31,.26);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0,1fr) auto;
  padding: clamp(2rem,5vw,4.4rem);
}
.v3-final-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  min-width: 225px;
}

/* Team-specific */
.team-v3-assurance {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.13);
  color: rgba(235,243,255,.75);
  max-width: 730px;
}
.team-v3-assurance i { color: var(--v3-teal); }

.team-map-head em {
  background: rgba(49,212,178,.1);
  border: 1px solid rgba(49,212,178,.22);
  border-radius: 999px;
  color: #9af0dd;
  font-size: .73rem;
  font-style: normal;
  font-weight: 800;
  padding: .42rem .62rem;
}
.team-map-head i { color: var(--v3-teal); margin-right: .38rem; }

.team-map-card {
  background: rgba(6,18,34,.84);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 19px;
  box-shadow: 0 20px 48px rgba(0,0,0,.24);
  display: grid;
  gap: .22rem;
  min-width: 190px;
  padding: 1rem;
  position: absolute;
}
.team-map-card i { color: var(--v3-teal); font-size: 1.12rem; }
.team-map-card strong { color: #fff; font-size: .9rem; }
.team-map-card span { color: rgba(235,243,255,.58); font-size: .7rem; }
.tmc1 { left: 4%; top: 18%; }
.tmc2 { right: 4%; top: 18%; }
.tmc3 { left: 5%; bottom: 10%; }
.tmc4 { right: 4%; bottom: 10%; }

.team-v3-model { background: linear-gradient(180deg,#f5f8fc,#fff) !important; }
.team-v3-model-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4,1fr);
  margin-top: 2.3rem;
}
.team-v3-model-grid article {
  background: #fff;
  border: 1px solid var(--v3-line);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(12,34,62,.07);
  min-height: 245px;
  padding: 1.35rem;
  transition: transform .24s ease, box-shadow .24s ease;
}
.team-v3-model-grid article:hover { box-shadow: var(--v3-shadow); transform: translateY(-6px); }
.team-v3-model-grid article > i {
  align-items: center;
  background: linear-gradient(135deg,#e7efff,#e9faf6);
  border-radius: 15px;
  color: #3268ea;
  display: flex;
  font-size: 1.08rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 1.2rem;
  width: 48px;
}
.team-v3-model-grid h3 { font-size: 1.16rem; }
.team-v3-model-grid p { color: var(--v3-muted); font-size: .9rem; }

.team-v3-leader-stack { display: grid; gap: 1.4rem; margin-top: 2.5rem; }
.team-v3-leader {
  background: linear-gradient(145deg,#fff,#f8fbff);
  border: 1px solid var(--v3-line);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(10,30,55,.09);
  display: grid;
  grid-template-columns: minmax(360px,.7fr) minmax(0,1.3fr);
  overflow: hidden;
}
.team-v3-leader.reverse {
  grid-template-columns: minmax(0,1.3fr) minmax(360px,.7fr);
}
.team-v3-leader.reverse .team-v3-photo { order: 2; }

.team-v3-photo {
  background: linear-gradient(135deg,#e9f0fb,#eaf7f3);
  min-height: 510px;
  overflow: hidden;
  position: relative;
}
.team-v3-photo img { height: 100%; object-fit: cover; object-position: center 28%; width: 100%; }
.team-v3-leader.reverse .team-v3-photo img { object-position: center top; }
.team-v3-photo > span {
  align-items: center;
  background: rgba(6,17,31,.83);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  bottom: 1rem;
  color: #fff;
  display: inline-flex;
  font-size: .73rem;
  gap: .45rem;
  left: 1rem;
  padding: .58rem .72rem;
  position: absolute;
}
.team-v3-photo i { color: var(--v3-teal); }

.team-v3-leader-copy {
  align-self: center;
  padding: clamp(1.5rem,4vw,3.3rem);
}
.team-v3-leader-copy > em {
  background: #e8efff;
  border: 1px solid rgba(63,115,255,.2);
  border-radius: 999px;
  color: #2454c7;
  display: inline-flex;
  font-size: .74rem;
  font-style: normal;
  font-weight: 850;
  padding: .48rem .72rem;
}
.team-v3-leader-copy > em.teal {
  background: #e8f8f4;
  border-color: rgba(49,175,148,.22);
  color: #087769;
}
.team-v3-leader-copy h2 {
  font-size: clamp(2rem,4vw,3.5rem);
  letter-spacing: -.035em;
  margin: 1rem 0 .3rem;
}
.team-v3-leader-copy h3 {
  color: #254363;
  font-size: 1rem;
  font-weight: 780;
}
.team-v3-leader-copy > p { color: var(--v3-muted); }

.team-v3-focus {
  align-items: flex-start;
  background: #edf3ff;
  border: 1px solid rgba(63,115,255,.18);
  border-radius: 16px;
  color: #2c4e75;
  display: flex;
  gap: .7rem;
  margin: 1.1rem 0;
  padding: .9rem;
}
.team-v3-focus.teal { background: #eaf8f5; border-color: rgba(49,175,148,.2); }
.team-v3-focus i { color: var(--v3-blue); margin-top: .2rem; }
.team-v3-focus.teal i { color: #0c8f7f; }
.team-v3-focus span { font-size: .88rem; font-weight: 680; }

.team-v3-cloud {
  align-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  min-height: 420px;
  padding: 1.5rem;
}
.team-v3-cloud span {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(91,124,169,.24);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(10,35,65,.1);
  color: #1c3e63;
  font-size: .82rem;
  font-weight: 800;
  padding: .72rem .95rem;
  transition: transform .2s ease;
}
.team-v3-cloud span:nth-child(3n) { transform: translateY(-11px); }
.team-v3-cloud span:nth-child(4n) { transform: translateY(14px); }
.team-v3-cloud span:hover { transform: translateY(-5px) scale(1.03); }

.team-v3-delivery-grid {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(5,1fr);
  margin-top: 2.3rem;
}
.team-v3-delivery-grid article {
  background: #f7f9fc;
  border: 1px solid var(--v3-line);
  border-radius: 22px;
  min-height: 270px;
  padding: 1.25rem;
}
.team-v3-delivery-grid article > span {
  color: #87a0bd;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.team-v3-delivery-grid article > i {
  color: var(--v3-blue);
  display: block;
  font-size: 1.3rem;
  margin: 1.9rem 0 1.1rem;
}
.team-v3-delivery-grid h3 { font-size: 1.12rem; }
.team-v3-delivery-grid p { color: var(--v3-muted); font-size: .86rem; }

@keyframes v3Pulse {
  0%,100% { box-shadow: 0 0 0 7px rgba(49,212,178,.1); }
  50% { box-shadow: 0 0 0 12px rgba(49,212,178,.02); }
}

@media (max-width: 1199.98px) {
  .home-v3-grid,
  .team-v3-hero-grid,
  .v3-split,
  .v3-split.split-reverse,
  .v3-ai-card {
    grid-template-columns: 1fr;
  }

  .v3-architecture,
  .team-v3-map {
    margin-inline: auto;
    max-width: 780px;
    width: 100%;
  }

  .v3-work-grid { grid-template-columns: repeat(2,1fr); }
  .team-v3-model-grid { grid-template-columns: repeat(2,1fr); }
  .team-v3-delivery-grid { grid-template-columns: repeat(3,1fr); }
  .v3-expertise-map { margin-inline: auto; }
}

@media (max-width: 991.98px) {
  .home-premium-v3 .container-xl,
  .team-premium-v3 .container-xl { width: min(100% - 30px, 1360px); }

  .v3-card,
  .v3-card.card-wide { grid-column: span 6; }

  .team-v3-leader,
  .team-v3-leader.reverse { grid-template-columns: 1fr; }

  .team-v3-leader.reverse .team-v3-photo { order: 0; }
  .v3-final-card { grid-template-columns: 1fr; }
  .v3-final-card > div:last-child { flex-direction: row; flex-wrap: wrap; min-width: 0; }
}

@media (max-width: 767.98px) {
  .home-v3-hero,
  .team-v3-hero { min-height: auto; padding: 4.2rem 0 3.5rem; }

  .home-v3-copy h1,
  .team-v3-copy h1 { font-size: clamp(2.5rem,12vw,4rem); }

  .v3-pill { border-radius: 16px; font-size: .68rem; text-align: left; }
  .v3-architecture,
  .team-v3-map { min-height: 520px; }
  .v3-orbit { height: 400px; }
  .ring-a { height: 250px; width: 250px; }
  .ring-b { height: 330px; width: 330px; }
  .v3-core { height: 140px; width: 140px; }
  .v3-node { font-size: .67rem; padding: .5rem .56rem; }
  .node-cloud,.node-ops { left: 0; }
  .node-devops,.node-ai { right: 0; }
  .node-product { left: 8%; }
  .v3-window-foot { align-items: flex-start; flex-direction: column; }

  .v3-card,
  .v3-card.card-wide { grid-column: 1 / -1; min-height: 270px; }

  .console-flow { grid-template-columns: 1fr; }
  .console-flow > i { justify-self: center; transform: rotate(90deg); }
  .console-flags { grid-template-columns: 1fr; }

  .v3-expertise-map { width: 100%; }
  .map-core { height: 138px; width: 138px; }
  .v3-expertise-map > span { font-size: .68rem; padding: .45rem .58rem; }

  .v3-work-grid,
  .team-v3-model-grid,
  .team-v3-delivery-grid { grid-template-columns: 1fr; }

  .team-v3-photo { min-height: 380px; }
  .team-v3-leader-copy { padding: 1.3rem; }
  .team-v3-cloud { min-height: 340px; padding: .5rem; }
  .team-v3-cloud span { font-size: .74rem; padding: .58rem .7rem; }
  .team-v3-cloud span:nth-child(n) { transform: none; }

  .team-map-card { min-width: 150px; padding: .7rem; }
  .tmc1 { left: 3%; top: 15%; }
  .tmc2 { right: 3%; top: 15%; }
  .tmc3 { left: 3%; bottom: 8%; }
  .tmc4 { right: 3%; bottom: 8%; }
}

@media (max-width: 480px) {
  .home-premium-v3 .container-xl,
  .team-premium-v3 .container-xl { width: min(100% - 22px, 1360px); }

  .v3-actions .btn,
  .v3-final-card .btn { width: 100%; }

  .v3-trust { align-items: flex-start; flex-direction: column; }
  .v3-final-card > div:last-child { flex-direction: column; }

  .team-v3-map { min-height: 700px; }
  .team-map-card {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: calc(100% - 30px);
  }
  .tmc1 { top: 8%; }
  .tmc2 { top: 25%; }
  .tmc3 { bottom: 25%; }
  .tmc4 { bottom: 8%; }
  .team-v3-photo { min-height: 330px; }
  .team-v3-photo > span { border-radius: 14px; left: .6rem; right: .6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .v3-pill > span { animation: none; }
  .v3-card,
  .v3-work-grid > a,
  .team-v3-model-grid article,
  .team-v3-cloud span { transition: none; }
}

/* BEGIN PIXICORE HOME TYPOGRAPHY BALANCE */

/*
 * Accueil uniquement.
 * Réduit les titres surdimensionnés et rééquilibre les colonnes
 * sans modifier Team, About, Services ou les autres pages.
 */

.home-premium-v3 .v3-heading h2 {
  font-size: clamp(2.15rem, 3.25vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.home-premium-v3 .v3-heading p {
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.65;
}

.home-premium-v3 .v3-card {
  min-height: 270px;
  padding: 1.35rem;
}

.home-premium-v3 .v3-card h3 {
  font-size: clamp(1.3rem, 1.65vw, 1.65rem);
  line-height: 1.12;
  margin: 0.5rem 0 0.7rem;
}

.home-premium-v3 .v3-card p {
  line-height: 1.58;
}

@media (min-width: 1200px) {
  .home-premium-v3 .home-v3-grid {
    gap: clamp(2.5rem, 4vw, 4.5rem);
    grid-template-columns:
      minmax(0, 1.04fr)
      minmax(420px, 0.96fr);
  }

  .home-premium-v3 .home-v3-copy h1 {
    font-size: clamp(3.45rem, 4.65vw, 4.85rem);
    letter-spacing: -0.045em;
    line-height: 0.98;
    margin: 1.3rem 0 1.2rem;
    max-width: 760px;
    text-wrap: balance;
  }

  .home-premium-v3 .home-v3-copy > p {
    font-size: clamp(1.02rem, 1.25vw, 1.16rem);
    line-height: 1.62;
    max-width: 690px;
  }

  .home-premium-v3 .v3-split {
    gap: clamp(2.8rem, 4.5vw, 5rem);
    grid-template-columns:
      minmax(0, 1fr)
      minmax(480px, 1fr);
  }

  .home-premium-v3 .v3-split > .v3-heading {
    max-width: 650px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .home-premium-v3 .home-v3-copy h1 {
    font-size: clamp(3rem, 7vw, 4.35rem);
    letter-spacing: -0.045em;
    line-height: 0.98;
    max-width: 880px;
  }

  .home-premium-v3 .v3-heading h2 {
    font-size: clamp(2.1rem, 5vw, 3.2rem);
  }
}

@media (max-width: 767.98px) {
  .home-premium-v3 .home-v3-copy h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .home-premium-v3 .home-v3-copy > p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .home-premium-v3 .v3-heading h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.75rem);
    line-height: 1.06;
  }

  .home-premium-v3 .v3-card {
    min-height: auto;
    padding: 1.2rem;
  }

  .home-premium-v3 .v3-card h3 {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
  }
}

/* END PIXICORE HOME TYPOGRAPHY BALANCE */

/* BEGIN PIXICORE TEAM TYPOGRAPHY BALANCE */

/*
 * Page Équipe uniquement.
 * Réduit la domination du titre, élargit sa colonne
 * et maintient la carte des expertises visible dès le hero.
 */

.team-premium-v3 .team-v3-hero {
  min-height: clamp(680px, 82svh, 840px);
  padding:
    clamp(4.2rem, 6vw, 6rem)
    0
    clamp(3.5rem, 5vw, 5rem);
}

.team-premium-v3 .team-v3-copy h1 {
  font-size: clamp(3.15rem, 4.25vw, 4.7rem);
  font-weight: 920;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 1.3rem 0 1.2rem;
  max-width: 750px;
  text-wrap: balance;
}

.team-premium-v3 .team-v3-copy > p {
  font-size: clamp(1.02rem, 1.22vw, 1.16rem);
  line-height: 1.62;
  max-width: 700px;
}

.team-premium-v3 .v3-heading h2 {
  font-size: clamp(2.15rem, 3.2vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.team-premium-v3 .v3-heading p {
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.65;
}

@media (min-width: 1200px) {
  .team-premium-v3 .team-v3-hero-grid {
    align-items: center;
    gap: clamp(2.5rem, 4.5vw, 5rem);
    grid-template-columns:
      minmax(0, 1.08fr)
      minmax(420px, 0.92fr);
  }

  .team-premium-v3 .team-v3-map {
    justify-self: end;
    max-width: 620px;
    min-height: 520px;
    width: 100%;
  }

  .team-premium-v3 .team-map-core {
    height: 160px;
    width: 160px;
  }

  .team-premium-v3 .team-map-card {
    max-width: 190px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .team-premium-v3 .team-v3-hero {
    min-height: auto;
  }

  .team-premium-v3 .team-v3-copy {
    max-width: 900px;
  }

  .team-premium-v3 .team-v3-copy h1 {
    font-size: clamp(3rem, 6.8vw, 4.35rem);
    max-width: 850px;
  }

  .team-premium-v3 .team-v3-map {
    margin-inline: auto;
    max-width: 760px;
    min-height: 520px;
  }

  .team-premium-v3 .v3-heading h2 {
    font-size: clamp(2.1rem, 5vw, 3.15rem);
  }
}

@media (max-width: 767.98px) {
  .team-premium-v3 .team-v3-hero {
    min-height: auto;
    padding: 4rem 0 3.25rem;
  }

  .team-premium-v3 .team-v3-copy h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.3rem);
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .team-premium-v3 .team-v3-copy > p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .team-premium-v3 .team-v3-map {
    min-height: 480px;
  }

  .team-premium-v3 .team-map-core {
    height: 135px;
    width: 135px;
  }

  .team-premium-v3 .team-map-card {
    max-width: 155px;
    padding: 0.72rem;
  }

  .team-premium-v3 .team-map-card strong {
    font-size: 0.82rem;
  }

  .team-premium-v3 .team-map-card span {
    font-size: 0.68rem;
  }

  .team-premium-v3 .v3-heading h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.7rem);
    line-height: 1.06;
  }
}

/* END PIXICORE TEAM TYPOGRAPHY BALANCE */

/* BEGIN PIXICORE HOME AI CTA BALANCE */

/*
 * Accueil uniquement :
 * - équilibre le bloc AI Studio ;
 * - réduit le titre de la carte finale ;
 * - évite les grandes zones vides créées par les titres trop hauts.
 */

.home-premium-v3 .v3-ai-band {
  padding-block: clamp(3.8rem, 6vw, 5.5rem);
}

.home-premium-v3 .v3-ai-card {
  align-items: stretch;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3.35rem);
}

.home-premium-v3 .v3-ai-card h2 {
  font-size: clamp(2.25rem, 3.15vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.03;
  margin-bottom: 1rem;
  max-width: 620px;
  text-wrap: balance;
}

.home-premium-v3 .v3-ai-card p {
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.62;
  max-width: 620px;
}

.home-premium-v3 .v3-ai-card ul {
  margin: 1.35rem 0 1.5rem;
}

.home-premium-v3 .v3-ai-card li {
  font-size: 0.98rem;
  line-height: 1.45;
}

.home-premium-v3 .v3-console {
  align-self: stretch;
  min-height: 410px;
}

.home-premium-v3 .v3-final {
  padding-block: clamp(3.5rem, 5vw, 5rem);
}

.home-premium-v3 .v3-final-card {
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3.5rem);
}

.home-premium-v3 .v3-final-card h2 {
  font-size: clamp(2.15rem, 2.9vw, 3.05rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 0.8rem;
  max-width: 870px;
  text-wrap: balance;
}

.home-premium-v3 .v3-final-card p {
  font-size: clamp(0.96rem, 1vw, 1.05rem);
  line-height: 1.6;
  max-width: 760px;
}

@media (min-width: 1200px) {
  .home-premium-v3 .v3-ai-card {
    grid-template-columns:
      minmax(0, 0.96fr)
      minmax(440px, 1.04fr);
  }

  .home-premium-v3 .v3-final-card {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(230px, 285px);
  }

  .home-premium-v3 .v3-final-card > div:last-child {
    width: 100%;
  }

  .home-premium-v3 .v3-final-card > div:last-child .btn {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .home-premium-v3 .v3-ai-card h2 {
    font-size: clamp(2.3rem, 5vw, 3.2rem);
    max-width: 760px;
  }

  .home-premium-v3 .v3-console {
    min-height: 360px;
  }

  .home-premium-v3 .v3-final-card h2 {
    font-size: clamp(2.15rem, 4.5vw, 2.85rem);
  }
}

@media (max-width: 767.98px) {
  .home-premium-v3 .v3-ai-band,
  .home-premium-v3 .v3-final {
    padding-block: 3rem;
  }

  .home-premium-v3 .v3-ai-card,
  .home-premium-v3 .v3-final-card {
    border-radius: 24px;
    padding: 1.4rem;
  }

  .home-premium-v3 .v3-ai-card h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.04;
  }

  .home-premium-v3 .v3-console {
    min-height: 330px;
  }

  .home-premium-v3 .v3-final-card h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.5rem);
    line-height: 1.06;
  }

  .home-premium-v3 .v3-final-card > div:last-child {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .home-premium-v3 .v3-final-card .btn {
    width: 100%;
  }
}

/* END PIXICORE HOME AI CTA BALANCE */
