:root{
  --bg: #ffffff;
  --ink: #0f172a;
  --muted: rgba(15,23,42,.65);
  --line: rgba(15,23,42,.10);
  --brand: #1e3a8a;  /* bleu proche logo */
  --brand2: #264BA5;
  --brand-rgb: 30,58,138;
  --brand2-rgb: 38,75,165;
  --radius: 18px;
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body,
button, input, textarea, select, option{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body{
  margin: 0;
  font-feature-settings: "cv11" 1, "ss01" 1;
  background: #ffffff;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

button,
a,
input,
select,
textarea{
  touch-action: manipulation;
}

.skip-link{
  position: fixed;
  top: -44px;
  left: 10px;
  z-index: 2100;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.22);
  background: rgba(255,255,255,.97);
  color: #0f172a;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: top .15s ease;
}

.skip-link:focus-visible{
  top: 10px;
}

.skip-link:focus{
  top: 10px;
}

:focus-visible{
  outline: 2px solid rgba(38,75,165,.78);
  outline-offset: 2px;
}

:focus{
  outline-color: rgba(38,75,165,.78);
}

h1, h2, h3,
.drawer-nav a,
.lang-toggle,
.btn-primary,
.btn-ghost,
.cookie-btn{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: -0.015em;
}

button, input, textarea, select{
  font: inherit;
}

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

.container{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* Sticky footer: main prend la place */
.site-main{
  flex: 1;
  background: #ffffff;
}

.hero,
.about,
.expertises,
.journey-section,
.offer-section,
.results-section,
.cta-band{
  background: #ffffff;
}

/* =========================
   HEADER
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1100;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,248,250,.98) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(15,23,42,.08);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.72);
}

.header-inner{
  width: min(1280px, 96vw);
  margin: 0 auto;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.header-center-title{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 260px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  color: rgba(15,23,42,.88);
  font-size: clamp(14px, 1.45vw, 20px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.menu-trigger{
  min-width: 44px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #14181f;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.menu-trigger svg{
  width: 32px;
  height: 32px;
  display: block;
}

.menu-trigger:hover{
  background: rgba(255,255,255,.56);
}

.menu-trigger[aria-expanded="true"]{
  background: rgba(255,255,255,.74);
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.08);
}

.header-spacer{
  flex: 1;
}

.logo-header{
  height: 34px;
  width: auto;
  display: block;
}

.admin-quick-login{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.admin-quick-login input{
  width: 108px;
  height: 32px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.86);
  color: var(--ink);
  font-size: 12px;
}

.admin-quick-login input:focus{
  outline: none;
  border-color: rgba(38,75,165,.45);
  box-shadow: 0 0 0 3px rgba(38,75,165,.14);
}

.admin-login-btn{
  height: 32px;
  padding: 0 11px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.16);
  background: transparent;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
}

.admin-login-status{
  display: none;
}

.menu-backdrop{
  position: fixed;
  inset: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 1498;
}

.menu-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}

.menu-drawer{
  --menu-translate-x: 0px;
  position: fixed;
  top: clamp(58px, 6.6vw, 78px);
  left: max(8px, calc((100vw - min(1280px, 96vw)) / 2 + 8px));
  right: auto;
  width: fit-content;
  min-width: 0;
  max-width: calc(100vw - 28px);
  max-height: min(64vh, 360px);
  background: linear-gradient(180deg, rgba(252,253,255,.24) 0%, rgba(255,255,255,.34) 100%);
  backdrop-filter: blur(15px) saturate(1.03);
  -webkit-backdrop-filter: blur(15px) saturate(1.03);
  color: #0f172a;
  transform: translate(var(--menu-translate-x), -6px) scale(.992);
  opacity: 0;
  transition: transform .18s cubic-bezier(.2,.7,.2,1), opacity .18s ease;
  z-index: 1499;
  padding: 12px 12px 14px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.48);
  box-shadow: 0 14px 32px rgba(15,23,42,.05), 0 3px 8px rgba(15,23,42,.03);
  pointer-events: none;
  visibility: hidden;
}

.menu-drawer::before{
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.88), rgba(255,255,255,0));
  pointer-events: none;
}

.menu-drawer::after{
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 18px;
}

.menu-drawer.is-open{
  transform: translate(var(--menu-translate-x), 0) scale(1);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.menu-close{
  margin-left: 0;
  display: none;
  place-items: center;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 0;
  background: rgba(255,255,255,.66);
  color: rgba(15,23,42,.56);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.menu-close:hover{
  background: rgba(255,255,255,.94);
  color: rgba(15,23,42,.84);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}

.drawer-nav{
  display: grid;
  grid-template-columns: 1fr;
  width: max-content;
  max-width: 100%;
  gap: 1px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.drawer-nav a{
  color: rgba(15,23,42,.94);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.14;
  min-height: 0;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  white-space: nowrap;
  border-radius: 0;
  opacity: 0;
  transform: translateY(4px);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.drawer-nav .drawer-link-contact{
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(15,23,42,.08);
  color: rgba(15,23,42,.74);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 560;
  letter-spacing: -0.015em;
}

.drawer-nav .drawer-link-contact::after{
  content: "\203a";
  margin-left: auto;
  font-size: 15px;
  color: rgba(38,75,165,.62);
}

.menu-drawer.is-open .drawer-nav a{
  opacity: 1;
  transform: translateY(0);
  animation: menu-link-in .24s cubic-bezier(.2,.7,.2,1) both;
}

.menu-drawer.is-open .drawer-nav a:nth-child(1){ animation-delay: .01s; }
.menu-drawer.is-open .drawer-nav a:nth-child(2){ animation-delay: .03s; }
.menu-drawer.is-open .drawer-nav a:nth-child(3){ animation-delay: .05s; }
.menu-drawer.is-open .drawer-nav a:nth-child(4){ animation-delay: .07s; }
.menu-drawer.is-open .drawer-nav a:nth-child(5){ animation-delay: .09s; }
.menu-drawer.is-open .drawer-nav a:nth-child(6){ animation-delay: .11s; }

.drawer-nav a:hover{
  background: transparent;
  color: #264BA5;
}

@keyframes menu-link-in{
  from{
    opacity: 0;
    transform: translateY(4px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 44px;
  min-height: 44px;
  padding: 4px 8px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #111827;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  opacity: .88;
  transition: opacity .2s ease, transform .2s ease;
}

.header-search,
.header-login{
  display: inline-flex;
  align-items: center;
  margin-right: 0;
}

.header-login[hidden]{
  display: none !important;
}

.header-search-btn,
.header-login-btn{
  min-width: 32px;
  min-height: 32px;
  padding: 4px 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(15,23,42,.76);
  opacity: .88;
  display: grid;
  place-items: center;
  appearance: none;
  cursor: pointer;
  transition: color .15s ease, opacity .15s ease, transform .15s ease;
}

.header-search-btn svg,
.header-login-btn svg{
  width: 17px;
  height: 17px;
  display: block;
}

.header-search-btn svg [stroke],
.header-login-btn svg [stroke]{
  stroke-width: 2px;
  vector-effect: non-scaling-stroke;
}

.header-search-btn:hover,
.header-login-btn:hover,
.header-search-btn:focus-visible,
.header-login-btn:focus-visible{
  color: rgba(30,58,138,.9);
  opacity: 1;
  transform: translateY(-1px);
  outline: none;
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))){
  .site-header,
  .menu-drawer,
  .discover-arrow,
  .login-popover,
  .search-popover,
  .contact-panel,
  .contact-inner,
  .cookie-banner{
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.lang-toggle:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.lang-switch{
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.header-auth{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-right: 4px;
}

.header-auth[hidden]{
  display: none !important;
}

.header-user-wrap{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header-user{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid rgba(15,23,42,.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(15,23,42,.82);
  background: transparent;
}

.header-user::after{
  content: "⏷";
  font-size: 11px;
  opacity: .8;
}

.header-logout{
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1205;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2px);
  min-width: 126px;
  border: 1px solid rgba(15,23,42,.22);
  background: transparent;
  color: rgba(15,23,42,.82);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.header-user-wrap:hover .header-logout,
.header-user-wrap:focus-within .header-logout{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(2px);
}

.header-logout:hover{
  background: rgba(15,23,42,.05);
}

.page-breadcrumb{
  background: transparent;
  border-bottom: 0;
}

.page-breadcrumb .container{
  width: min(1280px, 96vw);
  margin: 0 auto;
  padding: 8px 8px;
  color: rgba(15,23,42,.68);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
}

.page-breadcrumb a{
  color: rgba(15,23,42,.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-breadcrumb a:hover{
  text-decoration-thickness: 1.5px;
}


/* =========================
   HERO
   ========================= */
.hero{
  padding: 64px 0 38px;
}

.hero-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy{
  padding: 12px 0;
}

.hero-eyebrow,
.section-kicker,
.cta-band-kicker,
.hero-panel-kicker{
  margin: 0 0 12px;
  color: rgba(30,58,138,.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-title{
  margin: 0;
  max-width: 18ch;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-wrap: balance;
  color: rgba(15,23,42,.98);
}

.hero-sub{
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.65;
}

.hero-center{
  display: grid;
  place-items: center;
  text-align: center;
}

.construction{
  width: min(820px, 92vw);
}

.construction-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--brand2);
  background: rgba(38,75,165,.08);
  border: 1px solid rgba(38,75,165,.14);
}

.hero h1{
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-sub{
  margin: 12px 0 0;
  font-size: 16px;
  color: rgba(15,23,42,.60);
}

.hero-actions{
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-btn{
  margin: 0;
}

.hero-btn-primary{
  color: #0f172a;
  border-color: rgba(15,23,42,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(193,217,255,.92));
}

.hero-points{
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-points li{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(15,23,42,.72);
  font-size: 14px;
  font-weight: 600;
}

.hero-points li::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(30,58,138,.92), rgba(96,165,250,.9));
  box-shadow: 0 0 0 5px rgba(30,58,138,.08);
  flex: 0 0 auto;
}

.hero-panel{
  display: flex;
}

.hero-panel-card{
  width: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(15,23,42,.08);
  background:
    radial-gradient(circle at top right, rgba(96,165,250,.18), transparent 32%),
    linear-gradient(180deg, rgba(248,250,252,.98), rgba(233,240,255,.94));
  box-shadow: 0 28px 70px rgba(15,23,42,.12);
}

.hero-checklist{
  display: grid;
  gap: 16px;
}

.hero-check-item{
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.hero-check-step{
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(30,58,138,.08);
  color: rgba(30,58,138,.96);
  font-size: 14px;
  font-weight: 800;
}

.hero-check-item strong{
  display: block;
  color: rgba(15,23,42,.92);
  font-size: 16px;
  margin-bottom: 6px;
}

.hero-check-item p{
  margin: 0;
  color: rgba(15,23,42,.66);
  font-size: 14px;
  line-height: 1.55;
}

.btn-ghost{
  border: 1px solid rgba(15,23,42,.24);
  background: transparent;
  color: rgba(15,23,42,.86);
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(2,8,23,.08);
  background: rgba(15,23,42,.04);
}

/* =========================
   SECTIONS
   ========================= */
.section-head{
  margin: 16px 0 14px;
}

.section-head h2{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,.90);
}

.expertises{ padding: 28px 0 40px; }

.expertise-toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.expertise-toolbar-label{
  color: rgba(15,23,42,.72);
  font-size: 13px;
  font-weight: 600;
}

.expertise-size-switch{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.expertise-size-btn{
  border: 1px solid rgba(15,23,42,.2);
  background: transparent;
  color: rgba(15,23,42,.78);
  border-radius: 10px;
  min-width: 34px;
  height: 30px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.expertise-size-btn.is-active{
  border-color: rgba(30,58,138,.42);
  color: rgba(30,58,138,.95);
}

.discover-head{
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 12px;
}

.discover-title{
  margin: 0;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: rgba(15,23,42,.94);
  font-weight: 700;
}

.discover-progress{
  margin-top: 14px;
  width: min(580px, 55vw);
  height: 8px;
  border-radius: 999px;
  background: rgba(15,23,42,.12);
  overflow: hidden;
}

.discover-progress span{
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: rgba(15,23,42,.46);
  transition: width .2s ease;
}

.discover-carousel-wrap{
  --discover-arrow-size: 44px;
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, min(1100px, 92vw)) 54px;
  justify-content: center;
  align-items: start;
  margin-top: 22px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: visible;
  overflow-y: hidden;
  padding: 0;
}

.expertises .container,
.journey-section .container,
.offer-section .container,
.results-section .container{
  overflow-x: visible;
}

.discover-arrow{
  position: relative;
  top: auto;
  z-index: 4;
  width: var(--discover-arrow-size);
  height: var(--discover-arrow-size);
  border: 1px solid rgba(15,23,42,.16);
  border-radius: 14px;
  background: rgba(15,23,42,.78);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,.96);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  display: grid;
  place-items: center;
  align-self: start;
  justify-self: center;
  margin-top: calc((var(--expertise-card-h, 188px) - var(--discover-arrow-size)) / 2);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, opacity .15s ease, transform .15s ease;
}

.discover-arrow:hover{
  opacity: 1;
  border-color: rgba(255,255,255,.24);
  background: rgba(15,23,42,.92);
}

.discover-arrow:disabled{
  opacity: .46;
  cursor: default;
}

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

.discover-arrow-prev{
  grid-column: 1;
  transform: none;
}

.discover-arrow-next{
  grid-column: 3;
  transform: none;
}

.discover-arrow-prev:hover{
  transform: scale(1.03);
}

.discover-arrow-next:hover{
  transform: scale(1.03);
}

.expertise-scroll{
  --expertise-card-w: 323px;
  --expertise-card-h: 188px;
  --expertise-card-r: 0px;
  --expertise-gap: 24px;
  grid-column: 2;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  padding: 0;
  width: 100%;
  margin: 0;
  scrollbar-gutter: auto;
  scrollbar-color: transparent transparent;
  touch-action: pan-x;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.expertise-scroll::-webkit-scrollbar{
  width: 0;
  height: 0;
  display: none;
  background: transparent;
}

.expertise-scroll[data-expertise-size="s"]{
  --expertise-card-w: 240px;
  --expertise-card-h: 141px;
  --expertise-card-r: 0px;
}

.expertise-scroll[data-gallery-size="s"]{
  --expertise-card-w: 240px;
  --expertise-card-h: 141px;
  --expertise-card-r: 0px;
}

.expertise-scroll[data-expertise-size="m"]{
  --expertise-card-w: calc((100% - var(--expertise-gap)) / 2);
  --expertise-card-h: 188px;
  --expertise-card-r: 0px;
}

.expertise-scroll[data-gallery-size="m"]{
  --expertise-card-w: calc((100% - var(--expertise-gap)) / 2);
  --expertise-card-h: 188px;
  --expertise-card-r: 0px;
}

.expertise-scroll[data-expertise-size="l"]{
  --expertise-card-w: calc((100% - var(--expertise-gap)) / 2);
  --expertise-card-h: 228px;
  --expertise-card-r: 0px;
}

.expertise-scroll[data-gallery-size="l"]{
  --expertise-card-w: calc((100% - var(--expertise-gap)) / 2);
  --expertise-card-h: 228px;
  --expertise-card-r: 0px;
}

.expertise-grid{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--expertise-card-w);
  gap: var(--expertise-gap);
  width: max-content;
  min-width: max-content;
  min-height: calc(var(--expertise-card-h) + 72px);
  align-content: start;
  padding: 0;
}

.discover-card{
  width: var(--expertise-card-w);
}

.discover-card-link{
  display: block;
  color: inherit;
  transition: transform .2s ease;
}

.discover-card-link:hover{
  transform: translateY(-4px);
}

.discover-card-link:focus-visible{
  border-radius: 18px;
}

.discover-card-link:focus{
  border-radius: 18px;
}

.discover-media{
  width: var(--expertise-card-w);
  height: var(--expertise-card-h);
  border-radius: var(--expertise-card-r);
  overflow: hidden;
  box-shadow: none;
  line-height: 0;
  background: transparent;
}

.discover-card-title{
  margin: 10px 0 0;
  font-size: clamp(16px, 1.75vw, 28px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: rgba(15,23,42,.9);
  text-align: left;
}

.discover-card-copy{
  margin: 8px 0 0;
  width: 100%;
  max-width: var(--expertise-card-w);
  color: rgba(15,23,42,.66);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.discover-card-cta{
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: rgba(30,58,138,.94);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.discover-card-cta::after{
  content: "→";
  margin-left: 8px;
}

.expertise-grid .card{
  width: var(--expertise-card-w);
  height: var(--expertise-card-h);
  aspect-ratio: 344 / 215;
  border-radius: var(--expertise-card-r);
  border: 0;
  background: linear-gradient(180deg, rgba(38,75,165,.12), rgba(255,255,255,1));
  box-shadow: none;
  overflow: hidden;
  position: relative;
}

.expertise-grid .card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.20), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0));
  z-index: 1;
  pointer-events: none;
}

.vivid-cyan{
  background:
    linear-gradient(135deg, #00d4ff 0%, #2563eb 48%, #1d1b8f 100%);
}

.vivid-green{
  background:
    linear-gradient(135deg, #00ff85 0%, #10b981 50%, #065f46 100%);
}

.vivid-orange{
  background:
    linear-gradient(135deg, #ff7a00 0%, #ff3d81 52%, #7a102f 100%);
}

.vivid-violet{
  background:
    linear-gradient(135deg, #d946ef 0%, #7c3aed 48%, #312e81 100%);
}

.vivid-lime{
  background:
    linear-gradient(135deg, #d9ff00 0%, #22c55e 50%, #14532d 100%);
}

.vivid-electric{
  background:
    linear-gradient(135deg, #00e5ff 0%, #6d28d9 56%, #0f172a 100%);
}

.vivid-amber{
  background:
    linear-gradient(135deg, #fff200 0%, #ffb000 44%, #b45309 100%);
}

.card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 2;
  filter: none;
  transform: none;
}

.card picture{
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

@supports not (scrollbar-gutter: stable){
  .expertise-scroll{
    padding-bottom: 0;
  }
}

.expertise-scroll{
  overflow-y: hidden;
  overscroll-behavior-x: contain;
}

.about{
  padding: 10px 0 60px;
}

.about-text{
  margin: 0;
  color: rgba(15,23,42,.66);
  line-height: 1.6;
  font-size: 15px;
  width: min(850px, 100%);
}

.journey-section,
.offer-section,
.results-section,
.cta-band{
  padding: 26px 0 40px;
}

.section-copy{
  margin-bottom: 20px;
}

.section-progress{
  margin-top: 0;
}

.section-carousel{
  margin-top: 18px;
}

.section-note{
  margin-top: 18px;
  max-width: 72ch;
}

.section-note p{
  margin: 0;
  color: rgba(15,23,42,.68);
  font-size: 15px;
  line-height: 1.65;
}

.section-title{
  margin: 0;
  max-width: 18ch;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: rgba(15,23,42,.94);
}

.journey-grid,
.offer-grid,
.results-metrics{
  display: grid;
  gap: 16px;
}

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

.journey-card,
.offer-card,
.metric-card{
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}

.journey-step{
  display: inline-block;
  margin: 14px 0 10px;
  color: rgba(30,58,138,.84);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}

.journey-card h3,
.offer-card h3{
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: rgba(15,23,42,.92);
}

.journey-card p,
.offer-card p,
.results-text,
.metric-card span{
  margin: 0;
  color: rgba(15,23,42,.68);
  font-size: 15px;
  line-height: 1.6;
}

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

.results-shell{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  gap: 18px;
  align-items: start;
}

.results-metrics{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.metric-card{
  min-height: 100%;
  background: linear-gradient(180deg, rgba(241,245,249,.88), rgba(255,255,255,.96));
}

.metric-card strong{
  display: block;
  margin-bottom: 8px;
  color: rgba(30,58,138,.94);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1;
}

.cta-band-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 28px;
  border: 1px solid rgba(15,23,42,.08);
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.14), transparent 30%),
    linear-gradient(135deg, rgba(232,242,255,.98), rgba(248,250,252,.98));
}

.cta-band-title{
  margin: 0;
  max-width: 18ch;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta-band-actions{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-map-band{
  padding: 28px 0 8px;
}

.site-map-shell{
  border-top: 1px solid rgba(15,23,42,.08);
  padding-top: 22px;
}

.site-map-shell,
.site-map-shell h2,
.site-map-shell h3,
.site-map-shell a{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.site-map-head{
  margin-bottom: 18px;
}

.site-map-title{
  margin: 0;
  max-width: none;
  color: rgba(30,58,138,.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-map-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: stretch;
  align-items: start;
  gap: 24px;
  padding: 0 0 22px;
  width: 100%;
}

.site-map-col{
  display: grid;
  align-content: start;
  gap: 6px;
  width: 100%;
  justify-self: stretch;
  min-width: 0;
  padding: 0;
}

.site-map-col h3{
  margin: 0 0 4px;
  color: rgba(15,23,42,.92);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.01em;
}

.site-map-col a{
  color: rgba(15,23,42,.68);
  font-size: 12px;
  line-height: 1.28;
  transition: color .15s ease;
}

.site-map-col a:hover{
  color: rgba(30,58,138,.95);
}

/* =========================
   LEGAL PAGES
   ========================= */
.legal-main{
  flex: 1;
  padding: 36px 0 44px;
}

.legal-card{
  width: min(980px, 92vw);
  margin: 0 auto;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 0;
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 60px rgba(2,8,23,.10);
  padding: clamp(20px, 3.5vw, 34px);
}

.login-popover,
.search-popover{
  position: fixed;
  display: none;
  z-index: 1210;
  width: 332px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(252,253,255,.24) 0%, rgba(255,255,255,.34) 100%);
  backdrop-filter: blur(15px) saturate(1.03);
  -webkit-backdrop-filter: blur(15px) saturate(1.03);
  box-shadow: 0 14px 32px rgba(15,23,42,.05), 0 3px 8px rgba(15,23,42,.03);
}

.login-popover.is-open,
.search-popover.is-open{
  display: block;
}

.login-popover[hidden],
.search-popover[hidden]{
  display: none !important;
}

#login-popover-form,
#search-popover-form{
  display: grid;
  gap: 8px;
}

#search-popover-form{
  gap: 10px;
}

#login-popover-form input{
  height: 34px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.22);
  color: rgba(15,23,42,.92);
  padding: 0 10px;
  font-size: 13px;
}

.search-popover-field{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.22);
  border-radius: 0;
  transition: border-color .15s ease, box-shadow .15s ease, color .15s ease;
}

.search-popover-field:focus-within{
  border-color: rgba(255,255,255,.42);
  box-shadow: none;
  outline: none;
}

.search-popover-field svg{
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: rgba(15,23,42,.56);
}

#search-popover-input{
  flex: 1 1 auto;
  min-width: 0;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(15,23,42,.92);
  font-size: 13px;
  box-shadow: none;
}

#search-popover-input:focus{
  border: 0;
  box-shadow: none;
  outline: none;
}

#search-popover-input:focus-visible{
  outline: none !important;
  box-shadow: none;
}

#login-popover-form input::placeholder,
#search-popover-input::placeholder{
  color: rgba(15,23,42,.46);
}

#login-popover-form input:focus{
  outline: none;
  border-color: rgba(38,75,165,.46);
  box-shadow: 0 0 0 2px rgba(38,75,165,.12);
}

.search-popover-results{
  display: grid;
  gap: 0;
  max-height: min(44vh, 280px);
  overflow: auto;
}

.search-popover-results[hidden]{
  display: none !important;
}

.search-popover-result{
  display: grid;
  gap: 3px;
  padding: 10px 2px 10px 0;
  color: rgba(15,23,42,.88);
  text-decoration: none;
  border-top: 1px solid rgba(15,23,42,.08);
  transition: color .15s ease, background .15s ease;
}

.search-popover-result:hover{
  color: #264BA5;
}

.search-popover-result-title{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.search-popover-result-meta{
  font-size: 12px;
  line-height: 1.35;
  color: rgba(15,23,42,.56);
}

.login-popover-captcha-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.login-popover-captcha-question{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 0;
  color: rgba(15,23,42,.88);
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,255,255,.22);
}

#login-popover-captcha-refresh{
  height: 30px;
  margin-top: 0;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 0;
  background: transparent;
  color: rgba(15,23,42,.84);
  font-size: 12px;
  font-weight: 600;
  padding: 0 8px;
  cursor: pointer;
  white-space: nowrap;
}

#login-popover-submit,
#search-popover-submit{
  height: 32px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 0;
  color: rgba(15,23,42,.92);
  background: transparent;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: color .15s ease, background .15s ease, border-color .15s ease;
}

#login-popover-submit:hover,
#search-popover-submit:hover,
#login-popover-captcha-refresh:hover{
  color: #264BA5;
  background: rgba(255,255,255,.18);
  border-color: rgba(38,75,165,.24);
}

#login-popover-submit:disabled,
#search-popover-submit:disabled{
  opacity: .7;
  cursor: not-allowed;
}

.login-popover-status,
.search-popover-status{
  min-height: 16px;
  margin: 0;
  color: rgba(15,23,42,.68);
  font-size: 12px;
}

.login-popover-status.is-error,
.search-popover-status.is-error{
  color: rgba(248,113,113,.96);
}

.login-popover-status.is-ok,
.search-popover-status.is-ok{
  color: rgba(134,239,172,.95);
}

.legal-card h1{
  margin: 0 0 8px;
  font-size: clamp(28px, 3.8vw, 38px);
  letter-spacing: -.02em;
}

.legal-updated{
  margin: 0 0 20px;
  color: rgba(15,23,42,.62);
  font-size: 14px;
}

.legal-card h2{
  margin: 20px 0 8px;
  font-size: 18px;
  color: rgba(15,23,42,.90);
}

.legal-card p,
.legal-card li{
  color: rgba(15,23,42,.72);
  line-height: 1.62;
  font-size: 15px;
}

.legal-card ul{
  margin: 8px 0 0 18px;
  padding: 0;
}

/* =========================
   CONTACT (modal premium)
   ========================= */
.contact-panel{
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(58px, 7.2vw, 76px) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) clamp(8px, 2.2vw, 32px);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 9999;
}
.contact-panel.is-open{ display: flex; }

.contact-panel.is-open .contact-inner{
  animation: contact-drop-in .28s cubic-bezier(.2,.7,.2,1) both;
}

.contact-inner{
  width: min(500px, 92vw);
  max-height: min(86vh, 780px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, rgba(252,253,255,.48) 0%, rgba(255,255,255,.62) 100%);
  backdrop-filter: blur(15px) saturate(1.03);
  -webkit-backdrop-filter: blur(15px) saturate(1.03);
  border-radius: 0;
  box-shadow: 0 14px 32px rgba(15,23,42,.05), 0 3px 8px rgba(15,23,42,.03);
  border: 1px solid rgba(255,255,255,.48);
  padding: 22px 20px 20px;
}

@keyframes contact-drop-in{
  from{
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  to{
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.contact-drag-handle{
  display: none;
}

@media (min-width: 700px){
  .contact-drag-handle{
    display: block;
    width: 88px;
    height: 7px;
    margin: 0 auto 14px;
    border-radius: 0;
    background: rgba(15,23,42,.16);
    cursor: grab;
    user-select: none;
  }

  .contact-inner.is-dragging .contact-drag-handle{
    cursor: grabbing;
    background: rgba(38,75,165,.26);
  }
}

.contact-head{
  display: none;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 8px;
}

.contact-close{
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.42);
  background: transparent;
  color: rgba(15,23,42,.84);
  font-size: 26px;
  line-height: 1;
  display: none;
  place-items: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.contact-close:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.18);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}

.contact-title{
  margin: 0 0 18px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,.94);
  font-size: clamp(22px, 2.4vw, 28px);
  cursor: grab;
  user-select: none;
}

.contact-inner.is-dragging .contact-title{
  cursor: grabbing;
}

.premium-form{
  width: 100%;
  min-width: 0;
  max-width: 430px;
  margin: 0 auto;
}

.form-grid{
  --form-gap-y: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 14px;
  row-gap: var(--form-gap-y);
}

.field{ position: relative; }
.field.full{ grid-column: 1 / -1; }
.field.full{ margin-top: 0; }
.field.field-compact{
  width: 75%;
  margin: 0;
}

.field.field-wide{
  width: 100%;
}

.field.field-medium{
  width: 85%;
}

.form-grid > .field.field-compact:not(.phone-field):nth-child(odd){
  justify-self: start;
}

.form-grid > .field.field-compact:not(.phone-field):nth-child(even){
  justify-self: end;
}

.phone-field.field-compact{
  width: 100%;
  justify-self: start;
}

.field.full.field-compact{
  width: 100%;
}

.field input,
.field textarea,
.field select{
  width: 100%;
  font-family: inherit;
  color: rgba(15,23,42,.92);
  border: 1px solid rgba(15,23,42,.14);
  background: #ffffff;
  border-radius: 0;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.field input,
.field textarea{
  padding: 15px 14px 10px;
  font-size: 16px;
}

.field textarea{
  resize: vertical;
  min-height: 110px;
  padding-top: 20px;
}

.field select{
  min-height: 50px;
  padding: 12px 12px;
  font-size: 16px;
}

.field.float label{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(15,23,42,.54);
  font-size: 13px;
  pointer-events: none;
  transition: all .15s ease;
}

.field.float textarea + label{
  top: 22px;
  transform: none;
}

.field.float input:focus,
.field.float textarea:focus{
  border-color: rgba(38,75,165,.46);
  box-shadow: 0 0 0 2px rgba(38,75,165,.12);
}

.field.float input:focus + label,
.field.float textarea:focus + label{
  top: 10px;
  transform: none;
  font-size: 11px;
  color: rgba(38,75,165,.88);
}

.field.float.has-value label,
.field.float input:not(:placeholder-shown) + label,
.field.float textarea:not(:placeholder-shown) + label{
  opacity: 0;
  visibility: hidden;
}

.phone-field{ grid-column: 1 / -1; }

.phone-row{
  display: grid;
  grid-template-columns: 44px 96px 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(15,23,42,.14);
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
}

.phone-flag{
  display: grid;
  place-items: center;
  min-width: 44px;
  padding: 0 8px;
  border-right: 1px solid rgba(15,23,42,.14);
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.phone-row:focus-within{
  border-color: rgba(38,75,165,.46);
  box-shadow: 0 0 0 2px rgba(38,75,165,.12);
}

.phone-row select{
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding-left: 12px;
  padding-right: 34px;
  border: 0;
  border-right: 1px solid rgba(15,23,42,.14);
  border-radius: 0;
  background: transparent;
  color: rgba(15,23,42,.92);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  box-shadow: none;
}

.phone-row select option{
  color: #0f172a;
}

.phone-row .phone-input input{
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phone-row .phone-input input:focus{
  box-shadow: none;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hp{ display:none; }

.form-legal{
  margin-top: 14px;
  padding: 14px;
  border-radius: 0;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.42);
}

.form-legal.form-legal-compact{
  width: 100%;
}

.consent{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(15,23,42,.76);
}
.consent input{ margin-top: 3px; }

.consent-optout{
  margin-top: 10px;
}

.legal-link{
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(38,75,165,.95);
  text-decoration: none;
}
.legal-link:hover{ text-decoration: underline; }

.btn-primary{
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  min-height: 48px;
  padding: 12px 3ch;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.46);
  background: transparent;
  color: rgba(15,23,42,.92);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
  background: rgba(255,255,255,.18);
  color: #264BA5;
  border-color: rgba(38,75,165,.24);
}
.btn-primary:disabled{
  opacity:.7;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
}

.status{
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: rgba(15,23,42,.68);
}

/* =========================
   FOOTER
   ========================= */
.site-footer{
  margin-top: auto;
  background: #fbfbfc;
}

.footer-bottom{
  border-top: 1px solid rgba(15,23,42,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,248,250,.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.footer-site-map{
  width: min(760px, 92vw);
  margin: 0 auto;
  padding: 18px 0 0;
}

.footer-site-map-inner{
  border-bottom: 1px solid rgba(15,23,42,.08);
  padding-bottom: 16px;
  width: 100%;
}

.footer-bottom-inner{
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 12px 0 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  text-align: left;
}

.footer-brand{
  order: 2;
  display: grid;
  gap: 6px;
  max-width: none;
  width: 100%;
  justify-items: center;
}

.footer-logo-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo{
  width: auto;
  height: 34px;
  display: block;
}

.footer-tagline{
  margin: 0;
  color: rgba(15,23,42,.7);
  font-size: 13px;
  line-height: 1.5;
}

.footer-site-map .site-map-grid{
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  align-items: start;
  row-gap: 12px;
  column-gap: clamp(22px, 3vw, 42px);
  padding: 0;
  width: 100%;
}

.footer-site-map .site-map-col{
  width: max-content;
  justify-self: start;
  align-self: start;
  gap: 4px;
}

.footer-site-map .site-map-col h3{
  margin-bottom: 6px;
  color: rgba(15,23,42,.54);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: .01em;
}

.footer-site-map .site-map-col a{
  color: rgba(15,23,42,.62);
  font-size: 12px;
  line-height: 1.45;
  padding: 2px 0;
}

.footer-site-map .site-map-col a:hover{
  color: rgba(15,23,42,.88);
}

.footer-links{
  order: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 6px 16px;
  max-width: none;
  width: auto;
  flex: 1 1 auto;
}

.footer-item{
  font-size: 12px;
  color: rgba(15,23,42,.58);
}

a.footer-item{
  transition: color .15s ease;
}

a.footer-item:hover{
  color: rgba(15,23,42,.86);
}

.footer-item-mobile-legal{
  display: none;
}

.footer-construction{
  color: #c91414;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-social{
  order: 3;
  position: static;
  left: auto;
  top: auto;
  bottom: auto;
  transform: none;
  z-index: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  margin: 0;
  flex: 0 0 auto;
}

body.has-cookie-banner .footer-social{
  top: auto;
  bottom: auto;
  transform: none;
}

.sbtn{
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  transition: opacity .15s ease;
  opacity: .92;
}
.sbtn svg{ width: 20px; height: 20px; display: block; }
.sbtn:hover{
  transform: none;
  background: transparent;
  opacity: 1;
}

.sbtn.linkedin{ color: #0A66C2; }
.sbtn.instagram{ color: #E4405F; }
.sbtn.facebook{ color: #1877F2; }
.sbtn.whatsapp{ color: #25D366; }
.sbtn.tiktok{ color: #111111; }
.sbtn.mail{ color: #EA4335; }

.cookie-banner{
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 1300;
  width: min(980px, calc(100vw - 24px));
  border: 1px solid rgba(15,23,42,.16);
  background: rgba(241,242,244,.86);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(2,8,23,.12);
  padding: 10px 12px;
}

.cookie-banner[hidden]{
  display: none !important;
}

.cookie-banner-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner-text{
  margin: 0;
  color: rgba(15,23,42,.8);
  font-size: 13px;
  line-height: 1.4;
  max-width: 66ch;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cookie-banner-text a{
  color: rgba(15,23,42,.9);
  text-decoration: underline;
}

.cookie-banner-actions{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn{
  border: 1px solid rgba(15,23,42,.24);
  background: transparent;
  color: rgba(15,23,42,.86);
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-preferences{
  margin-top: 10px;
  border-top: 1px solid rgba(15,23,42,.14);
  padding-top: 10px;
  display: grid;
  gap: 10px;
}

.cookie-pref-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-pref-title{
  margin: 0;
  color: rgba(15,23,42,.88);
  font-size: 13px;
  font-weight: 600;
}

.cookie-pref-desc{
  margin: 2px 0 0;
  color: rgba(15,23,42,.68);
  font-size: 12px;
  line-height: 1.35;
}

.cookie-pref-locked{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(15,23,42,.72);
  font-size: 12px;
  white-space: nowrap;
}

.cookie-pref-toggle input{
  width: 18px;
  height: 18px;
  accent-color: #1e3a8a;
}

@supports not (accent-color: auto){
  .cookie-pref-toggle input{
    width: auto;
    height: auto;
  }
}

.cookie-preferences-actions{
  display: flex;
  justify-content: flex-end;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px){
  .menu-backdrop.is-open{
    background: rgba(255,255,255,.01);
  }

  .contact-panel{
    padding: max(54px, calc(env(safe-area-inset-top) + 6px)) max(14px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) calc(8px + env(safe-area-inset-left));
  }

  .discover-carousel-wrap{
    --discover-arrow-size: 38px;
  }

  .header-inner{
    width: min(960px, 95vw);
    padding: 8px 6px;
  }

  .logo-header{ height: 30px; }
  .menu-trigger{ width: 44px; height: 44px; }
  .menu-trigger svg{ width: 28px; height: 28px; }
  .header-center-title{
    max-width: calc(100% - 230px);
    font-size: clamp(13px, 1.9vw, 18px);
  }

  .admin-quick-login input{
    width: 96px;
    height: 30px;
    font-size: 11px;
  }
  .admin-login-btn{
    height: 30px;
    font-size: 11px;
    padding: 0 10px;
  }

  .lang-toggle{
    font-size: 13px;
    min-width: 44px;
    min-height: 44px;
    padding: 4px 8px;
  }

  .header-search-btn,
  .header-login-btn{
    min-width: 40px;
    min-height: 40px;
    padding: 4px 7px;
  }

  .header-search-btn svg,
  .header-login-btn svg{
    width: 16px;
    height: 16px;
  }

  .header-auth{
    margin-right: 10px;
    gap: 6px;
  }

  .header-user{
    font-size: 12px;
    padding: 4px 8px;
  }

  .header-logout{
    font-size: 11px;
    padding: 5px 8px;
    min-width: 112px;
  }

  .page-breadcrumb .container{
    width: min(960px, 95vw);
    padding: 7px 6px;
    font-size: 12px;
  }

  .hero{
    padding: 52px 0 30px;
  }

  .hero-layout,
  .results-shell{
    grid-template-columns: 1fr;
  }

  .construction{ width: min(740px, 92vw); }

  .journey-grid,
  .offer-grid,
  .results-metrics{
    grid-template-columns: 1fr;
  }

  .cta-band-inner{
    align-items: flex-start;
    flex-direction: column;
  }

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

  .discover-title{
    font-size: clamp(24px, 4vw, 34px);
  }

  .discover-progress{
    width: min(420px, 60vw);
  }

  .discover-arrow{ font-size: 26px; }

  .discover-carousel-wrap{
    grid-template-columns: 39px minmax(0, min(960px, 95vw)) 39px;
  }

  .expertise-scroll{
    padding: 0;
    width: 100%;
  }

  .expertise-grid{
    --expertise-gap: 18px;
  }

  .menu-drawer{
    --menu-translate-x: -50%;
    width: min(86vw, 360px);
    top: max(54px, calc(env(safe-area-inset-top) + 6px));
    left: 50%;
    right: auto;
    padding: 12px 12px 14px;
    max-height: min(78vh, calc(100dvh - 76px));
    border-radius: 0;
  }

  .menu-close{
    display: grid;
  }

  .drawer-nav a{
    font-size: clamp(17px, 3vw, 20px);
    padding: 8px 9px;
  }

}

@media (max-width: 820px){
  .footer-site-map{
    display: none;
  }

  .discover-carousel-wrap{
    --discover-arrow-size: 36px;
  }

  .discover-carousel-wrap{
    grid-template-columns: minmax(0, 94vw);
  }

  .expertise-scroll{
    grid-column: 1;
  }

  .discover-arrow{
    display: none;
  }

  .menu-drawer{
    width: min(90vw, 340px);
    left: 50%;
    right: auto;
    max-height: min(82vh, calc(100dvh - 70px));
  }

  .drawer-nav a{
    font-size: clamp(16px, 4.8vw, 18px);
    min-height: 0;
  }

  .header-inner{
    width: 94vw;
    padding: 8px 4px;
    gap: 10px;
  }

  .logo-header{ height: 28px; }
  .menu-trigger{ width: 44px; height: 44px; }
  .menu-trigger svg{ width: 26px; height: 26px; }
  .header-center-title{
    max-width: calc(100% - 170px);
    font-size: 12px;
  }

  .admin-quick-login{
    gap: 4px;
  }
  .admin-quick-login input{
    width: 72px;
    height: 28px;
    padding: 0 8px;
    font-size: 10px;
  }
  .admin-login-btn{
    height: 28px;
    padding: 0 8px;
    font-size: 10px;
  }

  .lang-switch{ gap: 0; }
  .lang-toggle{
    font-size: 12px;
    min-width: 44px;
    min-height: 44px;
    padding: 4px 8px;
  }

  .header-search-btn,
  .header-login-btn{
    min-width: 40px;
    min-height: 40px;
    padding: 4px 6px;
  }

  .header-search-btn svg,
  .header-login-btn svg{
    width: 14px;
    height: 14px;
  }

  .header-auth{
    margin-right: 8px;
    gap: 5px;
  }

  .header-user{
    max-width: 92px;
    font-size: 11px;
    padding: 4px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-logout{
    padding: 5px 7px;
    min-width: 108px;
  }

  .page-breadcrumb .container{
    width: 94vw;
    padding: 7px 4px;
  }

  .hero{
    padding: 42px 0 22px;
  }

  .hero-eyebrow,
  .section-kicker,
  .cta-band-kicker,
  .hero-panel-kicker{
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: .1em;
  }

  .hero-title{
    max-width: none;
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.02;
  }

  .hero-sub{
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .hero-points{
    margin-top: 16px;
    gap: 8px;
  }

  .hero-points li{
    font-size: 13px;
    line-height: 1.35;
  }

  .hero-points li:nth-child(n+3){
    display: none;
  }

  .hero-panel{
    display: none;
  }

  .hero-panel-card,
  .journey-card,
  .offer-card,
  .metric-card,
  .cta-band-inner{
    padding: 18px;
    border-radius: 22px;
  }

  .discover-head{
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .discover-title{
    font-size: clamp(22px, 6.4vw, 30px);
  }

  .discover-progress{
    width: min(360px, 74vw);
    margin-top: 10px;
  }

  .section-progress,
  .discover-progress{
    display: none;
  }

  .discover-arrow{
    width: 39px;
    height: 39px;
    font-size: 23px;
  }

  .expertise-scroll{
    --expertise-card-w: min(78vw, 360px);
    --expertise-card-h: calc(var(--expertise-card-w) * .58);
    --expertise-card-r: 16px;
    padding: 0 clamp(10px, 3.2vw, 16px) 18px;
    margin-bottom: -18px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(10px, 3.2vw, 16px);
  }

  .discover-card{
    scroll-snap-align: start;
  }

  .discover-card-title{
    margin-top: 8px;
    font-size: clamp(17px, 4.2vw, 22px);
  }

  .discover-card-copy{
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .discover-card-cta{
    margin-top: 8px;
    font-size: 12px;
  }

  .expertise-scroll[data-expertise-size="s"]{
    --expertise-card-w: min(66vw, 300px);
    --expertise-card-h: calc(var(--expertise-card-w) * .58);
    --expertise-card-r: 14px;
  }

  .expertise-scroll[data-gallery-size="s"]{
    --expertise-card-w: min(66vw, 300px);
    --expertise-card-h: calc(var(--expertise-card-w) * .58);
    --expertise-card-r: 14px;
  }

  .expertise-scroll[data-expertise-size="m"]{
    --expertise-card-w: min(78vw, 360px);
    --expertise-card-h: calc(var(--expertise-card-w) * .58);
    --expertise-card-r: 16px;
  }

  .expertise-scroll[data-gallery-size="m"]{
    --expertise-card-w: min(78vw, 360px);
    --expertise-card-h: calc(var(--expertise-card-w) * .58);
    --expertise-card-r: 16px;
  }

  .expertise-scroll[data-expertise-size="l"]{
    --expertise-card-w: min(86vw, 420px);
    --expertise-card-h: calc(var(--expertise-card-w) * .58);
    --expertise-card-r: 18px;
  }

  .expertise-scroll[data-gallery-size="l"]{
    --expertise-card-w: min(86vw, 420px);
    --expertise-card-h: calc(var(--expertise-card-w) * .58);
    --expertise-card-r: 18px;
  }

  .btn-ghost{
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 14px;
  }

  .section-title,
  .cta-band-title{
    max-width: none;
    font-size: clamp(24px, 7vw, 32px);
  }

  .about,
  .expertises{
    padding-bottom: 34px;
  }

  .site-map-grid{
    gap: 18px;
  }

  .section-note p,
  .results-text{
    font-size: 14px;
    line-height: 1.55;
  }

  .contact-panel{
    padding: max(54px, calc(env(safe-area-inset-top) + 6px)) max(14px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) calc(6px + env(safe-area-inset-left));
  }
  .contact-inner{
    width: min(560px, 94vw);
    padding: 18px 16px 16px;
    border-radius: 0;
    max-height: min(88vh, calc(100dvh - 28px));
  }
  .site-main{
    overflow-x: hidden;
  }
  .premium-form{
    width: 100%;
    min-width: 0;
    max-width: none;
  }
  .form-grid{ grid-template-columns: 1fr; }
  .field.field-compact{ width: 100%; }
  .form-legal.form-legal-compact{ width: 100%; }
  .phone-row{
    grid-template-columns: 42px 96px 1fr;
    min-height: 52px;
  }

  .footer-bottom-inner{
    flex-direction: column;
    gap: 6px;
    padding: 8px 0 10px;
    font-size: 11px;
  }

  .footer-item,
  .footer-tagline{
    font-size: 11px;
  }

  .footer-bottom-inner{
    flex-wrap: nowrap;
    row-gap: 4px;
    align-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-links{
    max-width: none;
    width: 100%;
  }

  .footer-links{
    justify-content: center;
    gap: 6px 12px;
  }

  .footer-item-mobile-legal{
    display: inline-flex;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .contact-head{
    display: flex;
  }

  .contact-close{
    display: grid;
  }

  .footer-construction{
    font-size: 11px;
  }

  .footer-social{
    position: static;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    z-index: auto;
    width: fit-content;
    max-width: calc(100% - 24px);
    margin: 4px auto 0;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  body.has-cookie-banner .footer-social{
    top: auto;
    bottom: auto;
    transform: none;
  }
  .sbtn{
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
  }
  .sbtn svg{
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 600px){
  .discover-carousel-wrap{
    --discover-arrow-size: 33px;
  }

  .discover-carousel-wrap{
    grid-template-columns: minmax(0, 94vw);
    overflow-x: hidden;
  }

  .header-inner{ padding: 6px 2px; }
  .logo-header{ height: 25px; }
  .header-center-title{
    display: none;
  }

  .header-auth{
    margin-right: 6px;
    gap: 4px;
  }

  .header-search-btn,
  .header-login-btn{
    min-width: 36px;
    min-height: 36px;
    padding: 2px 5px;
  }

  .header-search-btn svg,
  .header-login-btn svg{
    width: 12px;
    height: 12px;
  }

  .lang-toggle{
    min-width: 38px;
    min-height: 38px;
    padding: 2px 6px;
    font-size: 11px;
  }

  .header-user{
    max-width: 72px;
    font-size: 11px;
    padding: 3px 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-logout{
    padding: 5px 6px;
    font-size: 10px;
    min-width: 102px;
  }

  .admin-quick-login{
    gap: 3px;
  }
  .admin-quick-login input{
    width: 66px;
    font-size: 10px;
    padding: 0 6px;
  }
  .admin-login-btn{
    font-size: 10px;
    padding: 0 7px;
  }

  .menu-drawer{
    width: min(94vw, 320px);
    top: max(52px, calc(env(safe-area-inset-top) + 4px));
    left: 50%;
    right: auto;
    padding: 12px 10px 14px;
    max-height: min(80vh, calc(100dvh - 66px));
    border-radius: 0;
  }

  .menu-close{
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .drawer-nav{
    gap: 3px;
  }

  .drawer-nav a{
    font-size: clamp(15px, 5.6vw, 17px);
    line-height: 1.12;
    padding: 7px 8px;
  }

  .hero{
    padding: 30px 0 16px;
  }

  .hero-sub{
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
  }

  .hero-points{
    display: none;
  }

  .hero-actions,
  .cta-band-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn{
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .construction{ width: 94vw; }
  .hero-title{ font-size: clamp(24px, 7vw, 32px); }
  .section-head h2{ font-size: 17px; }
  .about-text{ font-size: 14px; }

  .discover-progress{
    width: min(320px, 82vw);
  }

  .discover-arrow{
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .expertise-scroll{
    --expertise-card-w: min(84vw, 340px);
    --expertise-card-h: calc(var(--expertise-card-w) * .58);
    padding: 0 12px 16px;
    margin-bottom: -16px;
    scroll-padding-inline: 12px;
  }

  .expertise-scroll[data-expertise-size],
  .expertise-scroll[data-gallery-size]{
    --expertise-card-w: min(84vw, 340px);
    --expertise-card-h: calc(var(--expertise-card-w) * .58);
  }

  .contact-inner{
    width: 94vw;
    padding: 16px 14px calc(14px + env(safe-area-inset-bottom));
    border-radius: 0;
  }

  .contact-panel{
    padding: max(52px, calc(env(safe-area-inset-top) + 4px)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) calc(6px + env(safe-area-inset-left));
  }

  .phone-row{
    grid-template-columns: 40px 88px 1fr;
    min-height: 52px;
  }
  .contact-title{ font-size: clamp(20px, 6vw, 24px); }

  .btn-primary{
    margin-top: 14px;
    padding: 12px 2.6ch;
    font-size: 14px;
  }

  .footer-social{
    position: static;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: fit-content;
    max-width: calc(100% - 18px);
    margin: 4px auto 0;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .discover-carousel-wrap{
    overflow: hidden;
    padding: 0;
  }

  .discover-arrow{ font-size: 18px; }

  .section-progress,
  .discover-progress{
    display: none;
  }

  .site-map-grid{
    grid-template-columns: 1fr;
  }

  .site-map-col a{
    font-size: 12px;
    line-height: 1.22;
  }

  body.has-cookie-banner .footer-social{
    top: auto;
    bottom: auto;
    transform: none;
  }

  .sbtn{
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
  }

  .sbtn svg{
    width: 15px;
    height: 15px;
  }

  .cookie-banner{
    width: calc(100vw - 16px);
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  }

  .cookie-banner-inner{
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .cookie-banner-actions{
    width: 100%;
    justify-content: flex-end;
  }

  .cookie-pref-row{
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .cookie-preferences-actions{
    width: 100%;
    justify-content: flex-end;
  }

  .footer-bottom-inner{
    gap: 2px;
    font-size: 10px;
    padding: 6px 0;
  }

  .footer-item,
  .footer-sep{
    font-size: 10px;
  }

  .footer-construction{
    font-size: 10px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce){
  #open-contact{ animation: none; }
  .sbtn{ animation: none; }
  .contact-panel.is-open .contact-inner{ animation: none; }
}

@supports not (height: 100dvh){
  @media (max-width: 820px){
    .contact-inner{
      max-height: min(88vh, calc(100vh - 28px));
    }
  }

  @media (max-width: 600px){
    .menu-drawer{
      max-height: min(80vh, calc(100vh - 66px));
    }
  }
}
