﻿:root{
  --bg:#f5f7fb;
  --surface:#ffffff;
  --surface-soft:rgba(255,255,255,.78);
  --surface-strong:#f8fafc;
  --line:rgba(13,30,67,.09);
  --line-strong:rgba(13,30,67,.14);
  --text:#0f1d39;
  --muted:#5d6b82;
  --navy:#091a3d;
  --navy-2:#143468;
  --blue:#2e6cf6;
  --gold:#ba9550;
  --teal:#3ba3aa;
  --shadow:0 28px 70px rgba(12,26,58,.10);
  --shadow-soft:0 16px 40px rgba(12,26,58,.07);
  --radius-xl:34px;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:14px;
  --container:1200px;
  --sans:'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif:'Fraunces', Georgia, serif;
}
*{box-sizing:border-box}
html{
  scroll-behavior:auto;
  scrollbar-gutter:stable both-edges;
}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.98), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(143,208,255,.24), transparent 22%),
    radial-gradient(circle at 76% 78%, rgba(186,149,80,.10), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fe 34%, #eef4fc 100%);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:clip;
  position:relative;
}
body::before{
  content:'';
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(115deg, rgba(9,26,61,.038) 0 1px, transparent 1px 24px),
    linear-gradient(25deg, rgba(186,149,80,.03) 0 1px, transparent 1px 92px),
    radial-gradient(circle at 14% 22%, rgba(143,208,255,.14), transparent 20%),
    radial-gradient(circle at 82% 10%, rgba(186,149,80,.09), transparent 18%);
  background-size:46px 46px, 118px 118px, 100% 100%, 100% 100%;
  mask-image:radial-gradient(circle at 54% 10%, #000 0 50%, transparent 86%);
}
body::after{
  content:'';
  position:fixed;
  inset:-10vh -8vw;
  z-index:0;
  pointer-events:none;
  opacity:.38;
  background-image:url('silk-waves.svg');
  background-repeat:no-repeat;
  background-size:138vw auto;
  background-position:center 8vh;
  will-change:transform;
  transform:translate3d(0,0,0) scale(1);
  animation:paylexWaves 180s ease-in-out infinite alternate;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,select,textarea{font:inherit}
.site-shell{
  position:relative;
  z-index:1;
  overflow:hidden;
  isolation:isolate;
  background-image:url('pl-watermarks.png');
  background-repeat:repeat-y;
  background-size:min(1800px, 142vw) auto;
  background-position:center top;
}
.site-shell::before{
  content:'';
  position:fixed;
  inset:auto auto -20vh -12vw;
  width:32vw;
  height:32vw;
  min-width:260px;
  min-height:260px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(46,108,246,.12) 0%, rgba(46,108,246,0) 68%);
  pointer-events:none;
  z-index:-2;
}
.site-shell::after{
  content:'';
  position:fixed;
  inset:8vh -10vw auto auto;
  width:28vw;
  height:28vw;
  min-width:220px;
  min-height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(186,149,80,.12) 0%, rgba(186,149,80,0) 70%);
  pointer-events:none;
  z-index:-2;
}
.container{width:min(var(--container), calc(100% - 40px));margin:0 auto}
.section{padding:96px 0}
.section--tight{padding:72px 0}
.section--tint{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.22), rgba(229,236,247,.52));
}
.section--tint::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.34;
  background-image:url('silk-waves.svg');
  background-repeat:no-repeat;
  background-size:132vw auto;
  background-position:center center;
  will-change:transform;
  transform:translate3d(0,0,0) scale(1);
  animation:paylexWaves 190s ease-in-out infinite alternate;
}
.section--tint > .container{position:relative;z-index:1}
.section-head{max-width:760px;margin-bottom:34px}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(9,26,61,.08);
  background:rgba(255,255,255,.78);
  color:var(--navy-2);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.eyebrow::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--gold), #dcc48f);
  box-shadow:0 0 0 6px rgba(186,149,80,.10);
}
h1,h2,h3,h4,p{margin:0}
h1,h2{
  font-family:var(--serif);
  letter-spacing:-.04em;
  line-height:.98;
}
h1{font-size:clamp(3.1rem, 6vw, 6.1rem)}
h2{font-size:clamp(2.1rem, 4vw, 4rem)}
h3{font-size:1.2rem;line-height:1.2}
p{color:var(--muted)}
.lead{
  font-size:1.08rem;
  line-height:1.78;
  max-width:780px;
}
.home-page main > .section .section-head{margin-bottom:40px}
.home-page main > .section .section-head .eyebrow{margin-bottom:24px}
.home-page main > .section .section-head h2{
  margin-bottom:28px;
  line-height:1.02;
}
.home-page main > .section .section-head .lead{line-height:1.86}
.home-page .card h3,
.home-page .pricing-card h3,
.home-page .guarantee-card h3{margin:22px 0 14px}
.gold-accent{
  font-weight:800;
  color:var(--gold);
}
.muted{color:var(--muted)}
.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color:var(--navy);
}
.text-link::after{
  content:'\2192';
  font-size:1rem;
  transition:transform .25s ease;
}
.text-link:hover::after{transform:translateX(4px)}
.button-row,.hero-actions,.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.btn,.btn-secondary,.btn-ghost,.text-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.01em;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.btn:hover,.btn-secondary:hover,.btn-ghost:hover,.site-link:hover{transform:translateY(-1px)}
.btn{
  color:#fff;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 90%);
  box-shadow:0 18px 34px rgba(11,30,66,.18);
}
.btn-secondary{
  color:var(--navy);
  background:rgba(255,255,255,.92);
  border:1px solid rgba(9,26,61,.08);
  box-shadow:var(--shadow-soft);
}
.btn-ghost{
  color:var(--navy);
  border:1px solid rgba(9,26,61,.10);
  background:rgba(255,255,255,.62);
}
.text-pill{
  min-height:40px;
  padding:0 14px;
  border:1px solid rgba(9,26,61,.08);
  background:rgba(255,255,255,.72);
  color:var(--navy);
}
.icon-dot{
  width:30px;
  height:30px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--navy);
  background:linear-gradient(135deg, rgba(186,149,80,.18), rgba(59,163,170,.18));
  border:1px solid rgba(9,26,61,.08);
}
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:
    linear-gradient(180deg, rgba(255,255,255,.74), rgba(241,247,255,.58)),
    radial-gradient(circle at top right, rgba(186,149,80,.08), transparent 24%);
  backdrop-filter:blur(20px) saturate(1.45);
  -webkit-backdrop-filter:blur(20px) saturate(1.45);
  border-bottom:.5px solid rgba(0,0,0,.08);
  box-shadow:0 14px 34px rgba(10,26,60,.045);
  transition:background .32s ease, box-shadow .32s ease, border-color .32s ease, backdrop-filter .32s ease;
}
.site-header.is-scrolled{
  background:
    linear-gradient(180deg, rgba(255,255,255,.80), rgba(244,249,255,.66)),
    radial-gradient(circle at 84% 0%, rgba(186,149,80,.10), transparent 26%);
  backdrop-filter:blur(28px) saturate(1.8);
  -webkit-backdrop-filter:blur(28px) saturate(1.8);
  border-bottom:.5px solid rgba(0,0,0,.15);
  box-shadow:0 18px 46px rgba(10,26,60,.075);
}
.site-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  min-height:86px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.brand-mark{
  width:54px;
  height:54px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,249,255,.82));
  border:1px solid rgba(9,26,61,.08);
  box-shadow:var(--shadow-soft);
  padding:8px;
}
.brand-copy{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand-copy strong{
  font-size:.98rem;
  letter-spacing:.24em;
  color:var(--navy);
}
.brand-copy span{
  font-size:.71rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#76839a;
}
.nav-desktop{
  display:flex;
  align-items:center;
  gap:20px;
  margin-left:auto;
}
.menu{
  display:flex;
  align-items:center;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}
.menu > li{
  position:relative;
  padding-bottom:14px;
  margin-bottom:-14px;
}
.menu > li > a,
.menu > li > button,
.site-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:44px;
  padding:0 6px;
  color:var(--text);
  font-size:14px;
  font-weight:800;
  border:0;
  background:none;
  cursor:pointer;
}
.menu > li.is-open > a,
.menu > li.is-open > button,
.menu > li:hover > button{
  background:linear-gradient(180deg, rgba(255,255,255,.58), rgba(239,245,255,.42));
  border-radius:999px;
  box-shadow:0 12px 24px rgba(10,26,60,.06);
  backdrop-filter:blur(12px);
}
.caret{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  border-radius:50%;
  background:rgba(20,52,104,.08);
  color:var(--navy-2);
  font-size:10px;
}
.dropdown{
  position:absolute;
  top:calc(100% - 4px);
  left:50%;
  transform:translate(-50%, 12px);
  width:min(420px, calc(100vw - 32px));
  padding:12px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.56);
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(238,245,255,.7)),
    radial-gradient(circle at top right, rgba(186,149,80,.10), transparent 28%);
  box-shadow:0 24px 54px rgba(10,26,60,.12);
  backdrop-filter:blur(26px) saturate(1.22);
  opacity:0;
  pointer-events:none;
  transition:opacity .24s ease, transform .24s ease;
}
.menu > li:hover .dropdown,
.menu > li.is-open .dropdown,
.menu > li:focus-within .dropdown{
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%, 6px);
}
.dropdown-grid{display:grid;gap:8px}
.dropdown a{
  display:grid;
  gap:4px;
  padding:14px 16px;
  border-radius:18px;
  transition:background .24s ease, transform .24s ease;
}
.dropdown a:hover{
  background:linear-gradient(180deg, rgba(250,252,255,.96), rgba(238,245,255,.82));
  transform:translateY(-1px);
}
.dropdown strong{
  font-size:14px;
  color:var(--navy);
}
.dropdown span{
  font-size:12px;
  color:var(--muted);
  line-height:1.5;
}
.nav-utility{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav-utility .site-link{
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(240,247,255,.72));
  border:1px solid rgba(9,26,61,.10);
  box-shadow:0 12px 26px rgba(10,26,60,.055);
}
.nav-utility .site-link:hover{
  border-color:rgba(9,26,61,.18);
  box-shadow:0 16px 32px rgba(10,26,60,.08);
}
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid rgba(9,26,61,.09);
  background:rgba(255,255,255,.88);
  box-shadow:var(--shadow-soft);
}
.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:3px auto;
  background:var(--navy);
  border-radius:999px;
}
.mobile-panel{
  display:none;
  border-top:1px solid rgba(9,26,61,.06);
  background:rgba(255,255,255,.92);
}
.mobile-panel__inner{
  padding:18px 0 24px;
  display:grid;
  gap:12px;
}
.mobile-panel details{
  border:1px solid rgba(9,26,61,.08);
  border-radius:20px;
  background:rgba(255,255,255,.84);
  padding:0 16px;
}
.mobile-panel summary{
  list-style:none;
  cursor:pointer;
  font-weight:800;
  color:var(--navy);
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.mobile-panel summary::-webkit-details-marker{display:none}
.mobile-links{
  display:grid;
  gap:10px;
  padding:0 0 16px;
}
.mobile-links a{
  padding:12px 14px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(247,250,253,.95), rgba(241,246,252,.92));
  color:var(--muted);
}
.mobile-utility{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero{
  position:relative;
  padding:12px 0 24px;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 14%, rgba(255,255,255,.96), transparent 36%),
    radial-gradient(circle at 80% 12%, rgba(186,149,80,.12), transparent 16%),
    radial-gradient(circle at 78% 28%, rgba(46,108,246,.10), transparent 18%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  gap:22px;
  align-items:start;
}
.hero-top{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0, .98fr) minmax(360px, .88fr);
  gap:34px;
  align-items:start;
}
.hero-copy{
  position:relative;
  z-index:1;
  padding:10px 0 12px;
}
.hero-mark{
  position:absolute;
  left:50%;
  top:50%;
  width:min(420px, 42vw);
  transform:translate(-50%, -48%);
  opacity:.07;
  filter:grayscale(1);
  pointer-events:none;
}
.hero-copy h1{
  max-width:720px;
  margin:14px 0 16px;
  font-size:clamp(2.8rem, 4.75vw, 5.25rem);
}
.hero-copy h1 .hero-gradient{
  background:linear-gradient(90deg, #8fd0ff 0%, #4c90ff 35%, var(--navy) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.text-gradient-soft{
  display:inline-block;
  background:linear-gradient(92deg, #d1aa63 0%, #9bd8ff 22%, #5d9eff 52%, #224fa8 78%, var(--navy) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-carousel{
  position:relative;
  z-index:1;
  min-width:0;
}
.hero-services{
  position:relative;
  overflow:hidden;
  width:100%;
  margin:2px 0 0;
  mask-image:linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.hero-services__track{
  display:flex;
  gap:20px;
  width:max-content;
  padding:4px 4px 10px;
  animation:marquee 52s linear infinite;
}
.js .hero-services__track{
  animation:none;
  transform:translate3d(var(--carousel-x, 0px), 0, 0);
}
.hero-service-card{
  position:relative;
  width:min(390px, 72vw);
  min-height:344px;
  flex:0 0 auto;
  display:block;
  overflow:hidden;
  border-radius:30px;
  background:#10203d;
  border:1px solid rgba(255,255,255,.34);
  box-shadow:0 22px 48px rgba(10,26,60,.12);
  transition:transform .28s ease, box-shadow .28s ease;
}
.hero-service-card--featured{
  width:min(520px, 84vw);
}
.hero-service-card:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 52px rgba(12,26,58,.14);
}
.hero-service-card__media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.03);
  animation:panorama 20s ease-in-out infinite;
}
.hero-service-card__media::after{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(10,20,42,.08) 0%, rgba(10,20,42,.15) 26%, rgba(10,20,42,.68) 100%),
    radial-gradient(circle at top left, rgba(255,255,255,.16), transparent 34%);
}
.hero-service-card__copy{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:1;
  display:grid;
  gap:12px;
  padding:18px 18px 16px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.10));
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(18px) saturate(1.1);
  box-shadow:0 18px 36px rgba(6,16,36,.18);
}
.hero-service-card__copy strong{
  font-size:clamp(1.34rem, 1.8vw, 2rem);
  line-height:1.08;
  color:#fff;
}
.hero-service-card__copy p{
  font-size:1rem;
  line-height:1.56;
  color:rgba(255,255,255,.86);
}
.hero-service-card__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color:#fff;
}
.hero-service-card__link::after{
  content:'\2192';
}
.hero-pricing-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 16px;
}
.hero-pricing-pill{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(9,26,61,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(239,245,253,.9));
  box-shadow:var(--shadow-soft);
  color:var(--navy);
  white-space:nowrap;
  font-size:.85rem;
  font-weight:800;
  letter-spacing:.02em;
}
.hero-panel{
  position:relative;
  z-index:1;
  display:grid;
  gap:16px;
  align-self:start;
}
.hero-reminder{
  justify-self:start;
  width:100%;
  padding:28px 32px 30px;
  border-radius:32px;
  border:1px solid rgba(255,255,255,.46);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(244,248,255,.72)),
    radial-gradient(circle at top left, rgba(186,149,80,.08), transparent 30%);
  box-shadow:var(--shadow-soft);
  backdrop-filter:blur(22px) saturate(1.2);
}
.hero-reminder strong{
  display:flex;
  align-items:baseline;
  gap:12px;
  flex-wrap:wrap;
  margin:20px 0 10px;
  color:var(--navy);
  font-size:1.7rem;
  line-height:1.06;
}
.hero-reminder__price{
  font-family:var(--serif);
  font-size:4.1rem;
  line-height:.82;
  letter-spacing:-.06em;
  background:linear-gradient(135deg, #c9a15e 0%, #ecd5a2 26%, #c39a58 72%, #9d7641 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-reminder p{
  max-width:640px;
  font-size:1.1rem;
  line-height:1.7;
}
.hero-reminder p strong{
  color:var(--navy);
  font-weight:800;
}
.offer-rail{
  position:relative;
  overflow:hidden;
  margin:0 0 24px;
  mask-image:linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.offer-rail__track{
  display:flex;
  gap:12px;
  width:max-content;
  animation:marquee 24s linear infinite;
}
.offer-chip{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(239,245,253,.9));
  border:1px solid rgba(9,26,61,.08);
  box-shadow:var(--shadow-soft);
  color:var(--navy);
  white-space:nowrap;
  font-size:.86rem;
  font-weight:800;
  letter-spacing:.03em;
}
.hero-copy .lead{max-width:700px;margin-bottom:18px}
.hero-proof{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}
.hero-proof__item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 16px;
  border-radius:20px;
  background:rgba(255,255,255,.66);
  border:1px solid rgba(9,26,61,.08);
  box-shadow:var(--shadow-soft);
}
.hero-proof__item strong{
  display:block;
  margin-bottom:2px;
  color:var(--navy);
  font-size:.98rem;
}
.hero-proof__item p{font-size:.94rem}
.liquid-shell{
  position:relative;
  padding:22px;
  border-radius:32px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.46);
  background:
    linear-gradient(160deg, rgba(255,255,255,.82), rgba(242,247,255,.62));
  box-shadow:var(--shadow);
  transform-style:preserve-3d;
  will-change:transform;
  transition:transform .22s ease, box-shadow .28s ease;
}
.liquid-shell::before{
  content:'';
  position:absolute;
  inset:auto -10% -40% auto;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(46,108,246,.22) 0%, rgba(46,108,246,.02) 72%);
  filter:blur(6px);
  animation:drift 16s ease-in-out infinite;
}
.liquid-shell::after{
  content:'';
  position:absolute;
  inset:-18% auto auto -10%;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(186,149,80,.18) 0%, rgba(186,149,80,.02) 72%);
  animation:drift 18s ease-in-out infinite reverse;
}
.hero-visual{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  min-height:292px;
  background-size:cover;
  background-position:center 18%;
  animation:panorama 20s ease-in-out infinite;
}
.hero-visual::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(8,18,40,.04), rgba(8,18,40,.28));
}
.floating-cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:16px;
}
.glass-card{
  position:relative;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.54);
  border:1px solid rgba(255,255,255,.42);
  backdrop-filter:blur(14px);
  box-shadow:var(--shadow-soft);
  animation:floaty 8s ease-in-out infinite;
}
.glass-card:nth-child(2){animation-delay:-2.5s}
.glass-card:nth-child(3){animation-delay:-4s}
.glass-card strong{
  display:block;
  margin-bottom:6px;
  color:var(--navy);
}
.glass-card p{
  font-size:.92rem;
  line-height:1.55;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:18px;
  max-width:760px;
}
.stat-card{
  position:relative;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.8);
  border:1px solid rgba(9,26,61,.08);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.stat-card::before{
  content:'';
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, rgba(186,149,80,.42), rgba(143,208,255,.04));
}
.stat-card strong{
  display:block;
  font-size:1.35rem;
  line-height:1.1;
  color:var(--navy);
}
.stat-card span{
  display:block;
  margin-top:6px;
  font-size:.88rem;
  color:var(--muted);
}
.market-card{
  padding:28px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(241,246,253,.88));
  border:1px solid rgba(9,26,61,.08);
  box-shadow:var(--shadow-soft);
}
.market-card strong{
  display:block;
  font-family:var(--serif);
  font-size:2.4rem;
  line-height:1;
  letter-spacing:-.05em;
  color:var(--navy);
}
.market-card h3{
  margin:12px 0 10px;
  color:var(--navy);
  font-size:1.16rem;
}
.market-card p{
  font-size:.95rem;
}
.source-note{
  margin-top:16px;
  font-size:.86rem;
  color:var(--muted);
}
.marquee{
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(9,26,61,.06);
  border-bottom:1px solid rgba(9,26,61,.06);
  background:rgba(255,255,255,.58);
}
.marquee-track{
  display:flex;
  gap:14px;
  padding:14px 0;
  width:max-content;
  animation:marquee 28s linear infinite;
}
.marquee-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(9,26,61,.08);
  background:rgba(255,255,255,.76);
  color:var(--navy);
  font-size:.94rem;
  font-weight:800;
  box-shadow:var(--shadow-soft);
}
.three-grid,
.four-grid,
.sector-grid,
.card-grid{
  display:grid;
  gap:18px;
}
.three-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
.four-grid{grid-template-columns:repeat(4, minmax(0, 1fr))}
.sector-grid{grid-template-columns:repeat(auto-fit, minmax(220px, 1fr))}
.card-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
.card,
.info-card,
.value-card,
.feature-card,
.sector-card,
.guarantee-card,
.pricing-card,
.contact-card,
.login-card{
  padding:28px;
  border-radius:28px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(9,26,61,.08);
  box-shadow:var(--shadow-soft);
}
.card h3,
.info-card h3,
.value-card h3,
.feature-card h3,
.sector-card h3,
.guarantee-card h3,
.pricing-card h3,
.contact-card h3,
.login-card h3{margin:16px 0 10px;color:var(--navy)}
.card p,
.info-card p,
.value-card p,
.feature-card p,
.sector-card p,
.guarantee-card p,
.pricing-card p,
.contact-card p,
.login-card p{font-size:.97rem}
.icon-box{
  width:44px;
  height:44px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(9,26,61,.08);
  background:linear-gradient(180deg, rgba(244,248,255,.98), rgba(234,241,249,.92));
  color:var(--navy);
  box-shadow:var(--shadow-soft);
}
.icon-box svg{width:20px;height:20px}
.service-mosaic{
  display:grid;
  grid-template-columns:repeat(12, minmax(0, 1fr));
  gap:18px;
  margin-top:34px;
}
.service-card{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height:250px;
  border-radius:30px;
  border:1px solid rgba(9,26,61,.08);
  background:#fff;
  box-shadow:var(--shadow-soft);
  transition:transform .3s ease, box-shadow .3s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 54px rgba(12,26,58,.14);
}
.service-card--large{grid-column:span 5;min-height:460px}
.service-card--wide{grid-column:span 6;min-height:360px}
.service-card--medium{grid-column:span 4;min-height:280px}
.service-card--compact{grid-column:span 3;min-height:250px}
.service-card--tall{grid-column:span 6;min-height:360px}
.service-card--textonly{
  justify-content:flex-start;
  background:
    radial-gradient(circle at top right, rgba(143,208,255,.34), transparent 26%),
    radial-gradient(circle at bottom left, rgba(186,149,80,.22), transparent 24%),
    linear-gradient(160deg, rgba(9,26,61,.98), rgba(22,54,106,.94));
  min-height:360px;
}
.service-card--textonly::before{
  content:'';
  position:absolute;
  inset:auto -14px -12px auto;
  width:180px;
  height:180px;
  background:url('logo-paylex.png') center/contain no-repeat;
  opacity:.08;
  filter:grayscale(1) brightness(1.8);
}
.service-card--textonly::after{
  content:'';
  position:absolute;
  inset:18px 18px auto auto;
  width:74px;
  height:74px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(16px);
}
.service-card--textonly .service-copy{
  color:#fff;
  height:100%;
}
.service-card--textonly .service-copy p{
  color:rgba(255,255,255,.76);
}
.service-card--textonly .tag{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
}
.service-card--textonly .text-link{
  color:#fff;
}
.service-art{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
  animation:panorama 22s ease-in-out infinite;
}
.service-art::after{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(7,18,39,.02) 15%, rgba(7,18,39,.74) 100%),
    linear-gradient(135deg, rgba(20,52,104,.12), rgba(59,163,170,.08));
}
.service-copy{
  position:relative;
  z-index:1;
  padding:26px;
  color:#fff;
}
.service-copy p{color:rgba(255,255,255,.82)}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(10px);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.service-copy h3{margin:16px 0 10px;font-size:1.42rem}
.service-copy .text-link{margin-top:16px;color:#fff}
.split-panel{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(300px, .95fr);
  gap:24px;
  align-items:start;
}
.process-grid{
  display:grid;
  gap:14px;
}
.step-card{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:16px;
  padding:24px;
  border-radius:26px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(9,26,61,.08);
  box-shadow:var(--shadow-soft);
}
.step-number{
  width:44px;
  height:44px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow:0 18px 32px rgba(20,52,104,.22);
}
.quote-panel{
  position:relative;
  padding:32px;
  border-radius:32px;
  overflow:hidden;
  background:linear-gradient(160deg, rgba(9,26,61,.95), rgba(20,52,104,.92));
  color:#fff;
  box-shadow:var(--shadow);
}
.quote-panel::before{
  content:'';
  position:absolute;
  inset:auto -12% -22% auto;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.18), rgba(255,255,255,0) 70%);
}
.quote-panel p,.quote-panel li{color:rgba(255,255,255,.78)}
.quote-panel h3{color:#fff;margin-bottom:12px}
.quote-panel ul{
  margin:20px 0 0;
  padding-left:18px;
}
.quote-panel li + li{margin-top:8px}
.pricing-board{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(280px, .92fr);
  gap:24px;
  align-items:stretch;
}
.price-panel{
  padding:34px;
  border-radius:34px;
  background:linear-gradient(160deg, rgba(255,255,255,.94), rgba(241,246,252,.88));
  border:1px solid rgba(9,26,61,.08);
  box-shadow:var(--shadow);
}
.price-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:28px;
}
.price-item{
  padding:18px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(9,26,61,.08);
}
.price-item strong{
  display:block;
  font-size:1.7rem;
  line-height:1.05;
  color:var(--navy);
  letter-spacing:-.04em;
}
.price-item span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:.93rem;
}
.bullet-list{
  display:grid;
  gap:10px;
  margin-top:20px;
}
.bullet-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.64);
  border:1px solid rgba(9,26,61,.08);
}
.bullet-item strong{color:var(--navy)}
.bullet-item p{font-size:.93rem}
.page-hero{
  position:relative;
  padding:52px 0 22px;
}
.page-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,.94), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(46,108,246,.10), transparent 16%);
  pointer-events:none;
}
.page-hero__grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(320px, .98fr);
  gap:28px;
  align-items:start;
}
.page-copy{padding:0}
.page-copy h1{font-size:clamp(2.7rem, 5vw, 4.7rem);margin:18px 0 16px}
.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.pill{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(9,26,61,.08);
  background:rgba(255,255,255,.74);
  color:var(--navy);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
}
.visual-card{
  position:relative;
  overflow:hidden;
  min-height:360px;
  border-radius:34px;
  border:1px solid rgba(9,26,61,.08);
  box-shadow:var(--shadow);
  background-size:cover;
  background-position:center;
}
.visual-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(8,18,40,.08), rgba(8,18,40,.34));
}
.visual-badge{
  position:absolute;
  left:22px;
  bottom:22px;
  z-index:1;
  max-width:78%;
  padding:12px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.18);
  color:#fff;
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(12px);
  font-size:.92rem;
  font-weight:700;
}
.visual-card--abstract{
  background:
    radial-gradient(circle at top right, rgba(46,108,246,.28), transparent 24%),
    radial-gradient(circle at bottom left, rgba(186,149,80,.22), transparent 26%),
    linear-gradient(160deg, rgba(9,26,61,.96), rgba(27,66,120,.92)) !important;
}
.visual-card--abstract::before{
  content:'';
  position:absolute;
  inset:auto -22px -22px auto;
  width:220px;
  height:220px;
  background:url('logo-paylex.png') center/contain no-repeat;
  opacity:.08;
  filter:grayscale(1) brightness(1.8);
}
.visual-card--abstract::after{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(8,18,40,.18));
}
.page-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(300px, .92fr);
  gap:24px;
  align-items:start;
}
.stack{
  display:grid;
  gap:16px;
}
.side-panel{
  position:sticky;
  top:110px;
  display:grid;
  gap:16px;
}
.key-list{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.key-list .bullet-item{background:rgba(246,249,253,.94)}
.cta-panel{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:34px;
  border-radius:34px;
  background:linear-gradient(145deg, rgba(9,26,61,.97), rgba(18,52,104,.92));
  color:#fff;
  box-shadow:var(--shadow);
}
.home-page .cta-panel h2{
  font-size:clamp(2.05rem, 3.2vw, 2.95rem);
  line-height:1.05;
  margin-bottom:20px;
}
.cta-panel p{color:rgba(255,255,255,.78);max-width:720px}
.contact-layout{
  display:grid;
  grid-template-columns:minmax(320px, .9fr) minmax(0, 1.1fr);
  gap:22px;
}
.form-grid{
  display:grid;
  gap:14px;
}
.form-row{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.field{
  display:grid;
  gap:8px;
}
.field label{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--navy);
}
.field input,
.field textarea,
.field select{
  width:100%;
  border:1px solid rgba(9,26,61,.10);
  border-radius:18px;
  padding:15px 16px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,248,252,.92));
  color:var(--text);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}
.custom-select{
  position:relative;
}
.custom-select__trigger{
  width:100%;
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:0 18px;
  border-radius:18px;
  border:1px solid rgba(9,26,61,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,248,252,.92));
  color:var(--text);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}
.custom-select__label{
  text-align:left;
  color:var(--muted);
}
.custom-select.has-value .custom-select__label{
  color:var(--text);
}
.custom-select__icon{
  color:var(--navy);
  font-size:12px;
  transition:transform .24s ease;
}
.custom-select.is-open .custom-select__icon{
  transform:rotate(180deg);
}
.custom-select__menu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  right:0;
  display:grid;
  gap:8px;
  padding:10px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.48);
  background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(242,247,255,.8));
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
  opacity:0;
  pointer-events:none;
  transform:translateY(6px);
  transition:opacity .22s ease, transform .22s ease;
  z-index:20;
}
.custom-select.is-open .custom-select__menu{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.custom-select__option{
  width:100%;
  padding:14px 16px;
  text-align:left;
  border:0;
  border-radius:16px;
  background:rgba(255,255,255,.58);
  color:var(--navy);
  font-weight:700;
  transition:background .22s ease, transform .22s ease;
}
.custom-select__option:hover{
  background:linear-gradient(180deg, rgba(245,249,255,.95), rgba(236,244,255,.92));
  transform:translateY(-1px);
}
.field textarea{min-height:150px;resize:vertical}
.field select{
  appearance:none;
  -webkit-appearance:none;
  background-image:linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,248,252,.92)),
                   url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23091a3d' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat;
  background-position:right 16px center;
  padding-right:44px;
}
.field-required{color:#b8851a;margin-left:2px;font-weight:700}
.hp-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.field-consent{margin-top:4px}
.checkbox-label{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:14px;
  font-weight:500;
  letter-spacing:0;
  text-transform:none;
  color:var(--text);
  cursor:pointer;
  line-height:1.45;
}
.checkbox-label input[type="checkbox"]{
  margin-top:3px;
  width:18px;
  height:18px;
  accent-color:var(--navy);
  flex:0 0 auto;
}
.checkbox-label a{
  color:var(--navy);
  text-decoration:underline;
  text-underline-offset:3px;
}
.form-promise{
  font-size:13px;
  color:var(--muted);
  margin:0;
  font-weight:600;
}
.contact-steps{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.step-line{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  align-items:start;
}
.step-line strong{color:var(--navy)}
.login-layout{
  display:grid;
  grid-template-columns:minmax(320px, .95fr) minmax(0, 1.05fr);
  gap:22px;
}
.login-card form{display:grid;gap:12px;margin-top:18px}
.portal-stage{
  position:relative;
  overflow:hidden;
  min-height:420px;
  padding:28px;
  border-radius:34px;
  border:1px solid rgba(9,26,61,.08);
  background:
    radial-gradient(circle at top right, rgba(72,150,255,.28), transparent 24%),
    radial-gradient(circle at bottom left, rgba(186,149,80,.22), transparent 26%),
    linear-gradient(160deg, rgba(9,26,61,.96), rgba(25,66,118,.92));
  box-shadow:var(--shadow);
  transform-style:preserve-3d;
  will-change:transform;
  transition:transform .22s ease, box-shadow .28s ease;
}
.portal-stage::before{
  content:'';
  position:absolute;
  inset:auto auto -26% -12%;
  width:260px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.16), rgba(255,255,255,0) 72%);
  animation:drift 14s ease-in-out infinite;
}
.portal-stage::after{
  content:'';
  position:absolute;
  inset:-30% auto auto 38%;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.14), rgba(255,255,255,0) 72%);
  animation:drift 12s ease-in-out infinite reverse;
}
.portal-watermark-shell{
  position:absolute;
  right:22px;
  bottom:22px;
  width:122px;
  height:122px;
  padding:16px;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,.1));
  border:1px solid rgba(255,255,255,.18);
  box-shadow:var(--shadow-soft);
  backdrop-filter:blur(18px);
  z-index:0;
}
.portal-watermark{
  width:100%;
  height:100%;
  object-fit:contain;
  opacity:.95;
  filter:brightness(1.8);
  pointer-events:none;
}
.portal-shell{
  position:relative;
  z-index:1;
  display:grid;
  gap:14px;
}
.portal-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.portal-chip{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  color:#fff;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.05em;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(12px);
}
.portal-panel{
  padding:18px;
  border-radius:24px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:var(--shadow-soft);
  backdrop-filter:blur(16px);
  color:#fff;
  animation:floaty 11s ease-in-out infinite;
}
.portal-grid .portal-panel:nth-child(1){animation-delay:-2.5s}
.portal-grid .portal-panel:nth-child(2){animation-delay:-4.5s}
.portal-panel strong{
  display:block;
  margin-bottom:6px;
  font-size:1rem;
}
.portal-panel p{
  color:rgba(255,255,255,.76);
  font-size:.92rem;
}
.portal-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.portal-lines{
  display:grid;
  gap:8px;
  margin-top:14px;
}
.portal-line{
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  overflow:hidden;
}
.portal-line span{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(255,255,255,.88), rgba(183,214,255,.78));
}
.portal-mini{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.12);
}
.portal-mini b{
  color:#fff;
  font-size:.88rem;
}
.portal-mini span{
  color:rgba(255,255,255,.68);
  font-size:.8rem;
}
.portal-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg, #8dd2ff, #ffffff);
  box-shadow:0 0 0 6px rgba(141,210,255,.14);
}
.hint-list{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.hint-list li{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(246,249,253,.95);
  border:1px solid rgba(9,26,61,.08);
  color:var(--muted);
}
.site-footer{
  padding:44px 0 28px;
  border-top:1px solid rgba(9,26,61,.08);
  background:rgba(255,255,255,.72);
}
.footer-inner{
  display:grid;
  grid-template-columns:minmax(220px, 320px) minmax(0, 1fr);
  gap:36px 48px;
  align-items:start;
}
.footer-brand{
  display:grid;
  gap:10px;
}
.footer-brand strong{
  font-family:'Fraunces', Georgia, serif;
  font-size:1.6rem;
  color:var(--navy);
  letter-spacing:.02em;
}
.footer-brand p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.footer-cols{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(140px, 1fr));
  gap:24px 28px;
}
.footer-col{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-col-title{
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--navy);
  margin-bottom:4px;
}
.footer-col a{
  color:var(--text);
  font-weight:500;
  font-size:14px;
  text-decoration:none;
  transition:color .18s ease;
}
.footer-col a:hover{
  color:var(--navy);
}
.footer-bottom{
  margin-top:32px;
  padding-top:18px;
  border-top:1px solid rgba(9,26,61,.06);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:10px 24px;
  font-size:13px;
  color:var(--muted);
}
.footer-bottom a{
  color:var(--muted);
  text-decoration:underline;
  text-underline-offset:3px;
}
.footer-bottom a:hover{
  color:var(--navy);
}
/* Pages legales (mentions, politique de confidentialite, CGV) */
.legal-content{
  display:grid;
  gap:32px;
  max-width:840px;
  margin:0 auto;
}
.legal-block{
  display:grid;
  gap:12px;
}
.legal-block h2{
  font-family:'Fraunces', Georgia, serif;
  font-size:1.5rem;
  color:var(--navy);
  margin:0;
  letter-spacing:.01em;
}
.legal-block h3{
  font-size:1.05rem;
  color:var(--navy);
  margin:8px 0 0;
  font-weight:700;
}
.legal-block p,
.legal-block li{
  color:var(--text);
  line-height:1.65;
  font-size:15px;
}
.legal-block ul{
  margin:0;
  padding-left:22px;
  display:grid;
  gap:6px;
}
.legal-block a{
  color:var(--navy);
  text-decoration:underline;
  text-underline-offset:3px;
}
.legal-block em{color:#7a6b1f;font-style:normal;font-weight:600}
.legal-update{
  margin-top:8px;
  font-size:13px;
  color:var(--muted);
  text-align:right;
}
/* Compatibilite avec l'ancien layout .footer-links si une page n'est pas migree */
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
}
.footer-links a{
  color:var(--navy);
  font-weight:700;
}
@media (max-width: 720px){
  .footer-inner{
    grid-template-columns:1fr;
    gap:28px;
  }
  .footer-cols{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:20px;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}
[data-reveal]{
  opacity:0;
  transform:translateY(26px) scale(.985);
  filter:blur(8px);
  transition:opacity .82s cubic-bezier(.2,.8,.2,1), transform .82s cubic-bezier(.2,.8,.2,1), filter .82s ease;
  transition-delay:var(--reveal-delay, 0ms);
}
.hero [data-reveal],
.page-hero [data-reveal]{
  opacity:1;
  transform:none;
  transition:none;
}
[data-reveal].is-visible{
  opacity:1;
  transform:none;
  filter:none;
}
.market-card strong[data-count-target]{
  display:inline-flex;
  align-items:baseline;
  min-width:3.4ch;
}
.market-card strong[data-count-target]::after{
  content:' %';
  font-size:.82em;
}
.stat-card,
.market-card,
.card,
.info-card,
.value-card,
.pricing-card,
.guarantee-card,
.sector-card,
.contact-card{
  transition:transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.stat-card:hover,
.market-card:hover,
.card:hover,
.info-card:hover,
.value-card:hover,
.pricing-card:hover,
.guarantee-card:hover,
.sector-card:hover,
.contact-card:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 56px rgba(12,26,58,.10);
  border-color:rgba(46,108,246,.14);
}
@keyframes marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
@keyframes paylexWaves{
  from{transform:translate3d(-2.5vw, 0, 0) scale(1.02)}
  to{transform:translate3d(2.5vw, -1.5vh, 0) scale(1.045)}
}
@keyframes floaty{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
@keyframes drift{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(18px,-12px,0) scale(1.06)}
}
@keyframes panorama{
  0%,100%{transform:scale(1.03) translateX(0)}
  50%{transform:scale(1.08) translateX(-10px)}
}
@media (max-width:1120px){
  .nav-desktop{display:none}
  .menu-toggle{display:inline-flex;align-items:center;justify-content:center}
  .mobile-panel.is-open{display:block}
  .hero-grid,
  .hero-top,
  .page-hero__grid,
  .split-panel,
  .pricing-board,
  .page-grid,
  .contact-layout,
  .login-layout{grid-template-columns:1fr}
  .hero-reminder{justify-self:start;width:100%}
  .side-panel{position:static}
  .service-card--large,
  .service-card--wide,
  .service-card--medium,
  .service-card--compact,
  .service-card--tall{grid-column:span 6}
  .three-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .four-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .card-grid{grid-template-columns:1fr}
}
@media (max-width:760px){
  .container{width:min(var(--container), calc(100% - 28px))}
  .site-header__inner{min-height:78px}
  .brand-mark{width:48px;height:48px;border-radius:16px}
  .brand-copy span{display:none}
  .hero{padding-top:10px}
  .hero-mark{width:min(280px, 62vw);top:31%}
  .hero-actions,.cta-actions,.button-row,.mobile-utility{width:100%}
  .hero-service-card{
    width:86vw;
    min-height:320px;
  }
  .hero-service-card__media{
    transform:scale(1.02);
  }
  .hero-reminder{padding:22px}
  .hero-reminder__price{font-size:3.2rem}
  .hero-service-card__copy strong{font-size:1.22rem}
  .hero-stats,
  .price-grid,
  .form-row,
  .three-grid,
  .four-grid,
  .hero-proof{grid-template-columns:1fr}
  .floating-cards{grid-template-columns:1fr}
  .portal-grid{grid-template-columns:1fr}
  .service-mosaic{grid-template-columns:1fr}
  .service-card--large,
  .service-card--wide,
  .service-card--medium,
  .service-card--compact,
  .service-card--tall{grid-column:span 1;min-height:250px}
  .cta-panel{flex-direction:column;align-items:flex-start}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  body::after,
  .section--tint::before{animation:none}
  [data-reveal]{opacity:1;transform:none;filter:none}
  .hero-services__track,
  .marquee-track,
  .glass-card,
  .portal-panel,
  .hero-service-card__media,
  .hero-visual,
  .service-art,
  .liquid-shell::before,
  .liquid-shell::after,
  .portal-stage::before,
  .portal-stage::after{animation:none}
  .liquid-shell,
  .portal-stage{transition:none;transform:none}
}

/* =========================================================================
   WP8 - Polish UX
   Ajouts sobres : accessibilite (focus-visible), hover plus naturel sur les
   cards, respect prefers-reduced-motion, cohérence des transitions. Pas de
   refonte du systeme graphique existant.
   ========================================================================= */

/* Focus-visible accessible : visible au clavier, invisible a la souris.
   Critique pour passer l'audit Lighthouse accessibility >= 95. */
:focus{outline:none}
:focus-visible{
  outline:2px solid var(--blue);
  outline-offset:2px;
  border-radius:6px;
}
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.btn-secondary:focus-visible,
.site-link:focus-visible,
.text-link:focus-visible,
.menu > li > button:focus-visible,
.menu-toggle:focus-visible{
  outline:2px solid var(--blue);
  outline-offset:3px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.custom-select__trigger:focus-visible{
  outline:none;
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(46,108,246,.14);
}

/* Hover naturel sur les cards de contenu. Une seule regle pour
   harmoniser tous les types (card, info-card, value-card, sector-card,
   guarantee-card, market-card, contact-card, metric-card). */
.card,
.info-card,
.value-card,
.sector-card,
.guarantee-card,
.market-card,
.contact-card,
.pricing-card,
.step-card{
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  will-change:transform;
}
.card:hover,
.info-card:hover,
.value-card:hover,
.sector-card:hover,
.guarantee-card:hover,
.market-card:hover,
.pricing-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}

/* CTA panel : ombre plus douce, plus presente */
.cta-panel{
  transition:box-shadow .28s ease;
}
.cta-panel:hover{
  box-shadow:0 32px 80px rgba(12,26,58,.14);
}

/* Btns : transition unifie + hover plus tangible */
.btn,
.btn-secondary{
  transition:transform .18s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 38px rgba(9,26,61,.22);
}
.btn:active{
  transform:translateY(0);
}
.btn-secondary:hover{
  transform:translateY(-1px);
}

/* Text-link plus lisible */
.text-link{
  position:relative;
  transition:color .2s ease;
}
.text-link::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:1px;
  background:currentColor;
  opacity:.45;
  transform:scaleX(.5);
  transform-origin:left;
  transition:transform .25s ease, opacity .25s ease;
}
.text-link:hover::after{
  transform:scaleX(1);
  opacity:1;
}

/* Pills : hover discret pour signaler les zones cliquables (si on en met) */
.pill{
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}

/* Respiration verticale sur desktop : sections plus aerees */
@media (min-width: 920px){
  .section{
    padding-top:clamp(56px, 6vw, 88px);
    padding-bottom:clamp(56px, 6vw, 88px);
  }
  .section--tight{
    padding-top:clamp(40px, 4vw, 56px);
    padding-bottom:clamp(40px, 4vw, 56px);
  }
}

/* Selection texte : couleur Paylex au lieu du bleu navigateur par defaut */
::selection{
  background:rgba(46,108,246,.22);
  color:var(--navy);
}

/* Respect des preferences utilisateur : reduit animations si demande */
@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
  .card:hover,
  .info-card:hover,
  .value-card:hover,
  .sector-card:hover,
  .guarantee-card:hover,
  .market-card:hover,
  .pricing-card:hover,
  .btn:hover,
  .btn-secondary:hover{
    transform:none;
  }
}

/* =========================================================================
   WP8.1 - Brand polish final (cabinet conseil, jamais SaaS futuriste)
   ========================================================================= */

/* --- Brand header : "PAY OUTSOURCING" plus compact -------------------- */
.brand-copy strong{
  letter-spacing:.04em;
  font-size:1.05rem;
}
@media (max-width: 760px){
  .brand-copy strong{font-size:1rem}
}

/* --- Classe gradient unique reutilisable partout ---------------------- */
/* Bleu Paylex profond -> bleu clair -> leger or. Un seul axe, fluide.    */
.gradient-text,
.text-gradient,
.text-gradient-soft,
.hero-gradient,
.hero-copy h1 .hero-gradient{
  background:linear-gradient(96deg,
    var(--navy) 0%,
    #2e6cf6 38%,
    #6fa9ff 62%,
    #d6b87a 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;
}

/* --- Titres : eviter le point final orphelin, harmoniser les tailles -- */
h1, h2{
  text-wrap:balance;
  hyphens:none;
}
.page-hero h1,
.hero-copy h1{
  font-size:clamp(2rem, 1.4rem + 2.4vw, 3.4rem);
  line-height:1.08;
  letter-spacing:-.01em;
  max-width:22ch;
}
.section-head h2,
.cta-panel h2{
  font-size:clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  line-height:1.16;
  letter-spacing:-.005em;
  max-width:30ch;
}
.cta-panel h2{max-width:34ch}

/* Sector cards : hauteur harmonisee + meilleure respiration */
.sector-grid{
  align-items:stretch;
}
.sector-card{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:24px;
}
.sector-card h3{
  margin:0;
}
.sector-card p{
  flex:1 0 auto;
  margin:0;
  line-height:1.55;
}
.sector-card .text-link{
  margin-top:auto;
  align-self:flex-start;
}

/* --- Background "waves" sobre, animation lente ----------------------- */
/* Vagues larges, opacite tres faible, mouvement de 50s. Aucune
   distraction lecture. Active uniquement sur .home-page et .has-waves. */
.animated-waves-bg{
  position:relative;
  isolation:isolate;
}
.animated-waves-bg::before{
  content:'';
  position:fixed;
  inset:-20vh 0 0 0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(ellipse 80vw 50vh at 25% 20%, rgba(46,108,246,.04), transparent 60%),
    radial-gradient(ellipse 70vw 45vh at 75% 35%, rgba(214,184,122,.025), transparent 60%),
    radial-gradient(ellipse 60vw 40vh at 50% 70%, rgba(46,108,246,.03), transparent 60%);
  background-size:200% 200%, 220% 220%, 240% 240%;
  background-position:0% 0%, 100% 50%, 50% 100%;
  animation:paylex-waves 52s ease-in-out infinite;
}
@keyframes paylex-waves{
  0%   {background-position:  0% 0%, 100% 50%, 50% 100%;}
  50%  {background-position:100% 50%,  0% 100%,  0%  50%;}
  100% {background-position:  0% 0%, 100% 50%, 50% 100%;}
}
@media (prefers-reduced-motion: reduce){
  .animated-waves-bg::before{
    animation:none;
  }
}

/* =========================================================================
   WP8.2 - Restoration du liquid glass premium
   Annule les aplats "papier blanc" introduits par erreur en WP8.1 :
   transparence elegante, blur 16-22px, saturation legere, bordure
   diffuse, ombre douce. Reste corporate (pas gaming, pas neon), mais
   redonne la profondeur attendue par l'identite Paylex.
   ========================================================================= */

/* --- Dropdowns du header : menus Services / Secteurs -------------------- */
.dropdown,
.dropdown-grid{
  background:linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(248,251,255,.66) 100%);
  border:1px solid rgba(255,255,255,.65);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 20px 50px rgba(12,26,58,.16);
  backdrop-filter:blur(22px) saturate(1.18);
  -webkit-backdrop-filter:blur(22px) saturate(1.18);
}
.dropdown-grid a{
  background:rgba(255,255,255,.5);
  border:1px solid rgba(255,255,255,.55);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  transition:background .22s ease, border-color .22s ease, transform .22s ease;
}
.dropdown-grid a:hover{
  background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(240,247,255,.78));
  border-color:rgba(255,255,255,.78);
  transform:translateY(-1px);
}

/* --- Select custom (formulaire de contact, etc.) ----------------------- */
.custom-select__menu{
  background:linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(244,249,255,.7) 100%);
  border:1px solid rgba(255,255,255,.68);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 18px 44px rgba(12,26,58,.14);
  backdrop-filter:blur(20px) saturate(1.15);
  -webkit-backdrop-filter:blur(20px) saturate(1.15);
}

/* --- Cards principales : verre subtil avec reflet doux ----------------- */
.card,
.info-card,
.value-card,
.guarantee-card,
.market-card,
.contact-card,
.pricing-card,
.price-panel,
.quote-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.68) 0%, rgba(248,251,255,.56) 100%);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:
    0 1px 0 rgba(255,255,255,.65) inset,
    0 18px 40px rgba(12,26,58,.10),
    0 2px 6px rgba(12,26,58,.04);
  backdrop-filter:blur(18px) saturate(1.18);
  -webkit-backdrop-filter:blur(18px) saturate(1.18);
}

/* --- Sector cards (cabinets / ETI / PME / TPE / BTP / HCR) ------------- */
/* Memes regles mais legerement plus opaque pour rester tres lisibles.    */
.sector-card{
  background:linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(244,249,255,.6) 100%);
  border:1px solid rgba(255,255,255,.6);
  box-shadow:
    0 1px 0 rgba(255,255,255,.65) inset,
    0 20px 44px rgba(12,26,58,.10),
    0 2px 6px rgba(12,26,58,.04);
  backdrop-filter:blur(20px) saturate(1.18);
  -webkit-backdrop-filter:blur(20px) saturate(1.18);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.sector-card:hover{
  background:linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(244,249,255,.7) 100%);
  border-color:rgba(255,255,255,.78);
  box-shadow:
    0 1px 0 rgba(255,255,255,.78) inset,
    0 30px 60px rgba(12,26,58,.16),
    0 4px 10px rgba(12,26,58,.06);
  transform:translateY(-3px);
}

/* --- Hero stats stat-card : retour au verre, plus lumineux ------------- */
.hero-stats .stat-card{
  background:linear-gradient(180deg, rgba(255,255,255,.7) 0%, rgba(244,249,255,.58) 100%);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 18px 40px rgba(12,26,58,.10);
  backdrop-filter:blur(18px) saturate(1.15);
  -webkit-backdrop-filter:blur(18px) saturate(1.15);
}

/* --- CTA panel : verre legerement plus marque pour signaler l'action --- */
.cta-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.76) 0%, rgba(248,251,255,.64) 100%);
  border:1px solid rgba(255,255,255,.6);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 24px 60px rgba(12,26,58,.14);
  backdrop-filter:blur(22px) saturate(1.2);
  -webkit-backdrop-filter:blur(22px) saturate(1.2);
}

/* --- Hero reminder (encart prix) : verre dore subtil ------------------- */
.hero-reminder{
  background:linear-gradient(180deg, rgba(255,255,255,.74) 0%, rgba(252,247,235,.62) 100%);
  border:1px solid rgba(255,255,255,.6);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 18px 44px rgba(12,26,58,.12);
  backdrop-filter:blur(20px) saturate(1.18);
  -webkit-backdrop-filter:blur(20px) saturate(1.18);
}

/* --- Reduced motion : on coupe le hover transform sur sector-card ------ */
@media (prefers-reduced-motion: reduce){
  .sector-card:hover{transform:none}
}

/* =========================================================================
   WP8.3 - QA visuelle finale
   1. Brand 3 niveaux : PAYLEX (principal) / PAY OUTSOURCING (baseline) /
      tagline. Le logo PL reste le repere fort.
   2. Vrai liquid glass premium (gradient diagonal 135deg + blur 24px
      saturate 1.4 + bordure rgba(255,255,255,.35) + reflet inset blanc
      + grande ombre douce).
   3. Background waves SVG visible mais lent (3 layers, drift horizontal
      en 60s/70s/80s).
   ========================================================================= */

/* --- Brand stack : PAYLEX / PAY OUTSOURCING / tagline ---------------- */
/* Override des styles brand-copy precedents pour gerer le 3e niveau.   */
.brand-copy{
  display:flex;
  flex-direction:column;
  gap:1px;
  line-height:1;
}
.brand-copy strong{
  font-family:'Fraunces', Georgia, serif;
  font-size:1.32rem;
  font-weight:700;
  letter-spacing:.06em;
  color:var(--navy);
  line-height:1;
  margin:0;
}
.brand-copy em{
  font-style:normal;
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--gold);
  line-height:1;
  margin-top:3px;
}
.brand-copy > span{
  font-size:.66rem;
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#7a8499;
  line-height:1;
  margin-top:2px;
}
@media (max-width: 760px){
  .brand-copy strong{font-size:1.15rem}
  /* Sous 760px : on masque la baseline en majuscules pour eviter
     l'effet 3-lignes ecrase. PAYLEX + tagline suffisent. */
  .brand-copy em{display:none}
  .brand-copy > span{display:none}
}

/* --- Vrai liquid glass premium --------------------------------------- */
/* Override final sur les surfaces qui doivent avoir le vrai effet vitre.
   Surfaces : dropdowns header, cartes secteurs, CTA panels, visual cards,
   hero reminder. Pas applique partout (cards textuelles restent sobres). */
.dropdown,
.dropdown-grid,
.custom-select__menu,
.sector-card,
.cta-panel,
.visual-card,
.hero-reminder,
.glass-card,
.page-hero .visual-card,
.quote-panel{
  background:linear-gradient(135deg,
    rgba(255,255,255,.36) 0%,
    rgba(255,255,255,.14) 100%);
  border:1px solid rgba(255,255,255,.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 24px 60px rgba(12,26,58,.16),
    0 4px 14px rgba(12,26,58,.06);
  backdrop-filter:blur(24px) saturate(1.4);
  -webkit-backdrop-filter:blur(24px) saturate(1.4);
}

/* Variant plus opaque sur sector-card pour la lisibilite du texte */
.sector-card{
  background:linear-gradient(135deg,
    rgba(255,255,255,.48) 0%,
    rgba(255,255,255,.22) 100%);
  border-color:rgba(255,255,255,.42);
}
.sector-card:hover{
  background:linear-gradient(135deg,
    rgba(255,255,255,.58) 0%,
    rgba(255,255,255,.32) 100%);
  border-color:rgba(255,255,255,.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    0 32px 70px rgba(12,26,58,.18),
    0 6px 18px rgba(12,26,58,.08);
  transform:translateY(-3px);
}

/* Dropdown header : plus opaque pour lisibilite menu */
.dropdown,
.dropdown-grid{
  background:linear-gradient(135deg,
    rgba(255,255,255,.55) 0%,
    rgba(255,255,255,.28) 100%);
  border-color:rgba(255,255,255,.45);
}
.dropdown-grid a{
  background:linear-gradient(135deg,
    rgba(255,255,255,.32) 0%,
    rgba(255,255,255,.12) 100%);
  border:1px solid rgba(255,255,255,.32);
  backdrop-filter:blur(10px) saturate(1.2);
  -webkit-backdrop-filter:blur(10px) saturate(1.2);
}
.dropdown-grid a:hover{
  background:linear-gradient(135deg,
    rgba(255,255,255,.48) 0%,
    rgba(255,255,255,.22) 100%);
  border-color:rgba(255,255,255,.5);
  transform:translateY(-1px);
}

/* --- Background waves SVG : lumiere mouvante, calibree institutionnelle */
/* Deux couches SVG en data URI superposees. Mouvement lent de 110-130s.
   Opacite calibree pour rester "ressentie avant d'etre remarquee".     */
.animated-waves-bg::before{
  content:'';
  position:fixed;
  inset:-10vh -10vw;
  z-index:-1;
  pointer-events:none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 600' preserveAspectRatio='none'><path d='M-100,300 C200,200 500,420 900,280 C1200,180 1500,360 1800,300 L1800,700 L-100,700 Z' fill='rgba(255,255,255,0.42)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 600' preserveAspectRatio='none'><path d='M-100,360 C300,260 700,480 1100,340 C1400,230 1700,420 1800,360 L1800,700 L-100,700 Z' fill='rgba(214,184,122,0.10)'/></svg>");
  background-size:240% 100%, 280% 100%;
  background-position:0% 60%, 0% 70%;
  background-repeat:no-repeat;
  opacity:.65;
  animation:paylex-waves-drift 130s linear infinite;
}
@keyframes paylex-waves-drift{
  from{background-position:0% 60%, 100% 70%}
  to  {background-position:100% 60%, 0% 70%}
}
@media (prefers-reduced-motion: reduce){
  .animated-waves-bg::before{animation:none}
}

/* Override : on n'a plus besoin du animation paylex-waves de WP8.1 */
.animated-waves-bg{
  position:relative;
  isolation:isolate;
}

/* --- Dropdown : taille plus compacte (entrees Secteurs reduites) ----- */
.dropdown{
  width:min(380px, calc(100vw - 32px));
  padding:10px;
}
.dropdown a{
  padding:12px 14px;
}

/* --- Brand mark : eviter qu'il soit ecrase par le 3-stack du brand-copy */
.brand-mark{
  flex-shrink:0;
}

/* =========================================================================
   design: elevate Paylex premium B2B visual identity
   Recadrage final pour aller vers "Apple Business x Stripe x cabinet
   financier". Animations ressenties avant d'etre remarquees. Chaque
   suppression doit ameliorer la confiance.
   ========================================================================= */

/* --- Hero pillars : remplace le carrousel photos Unsplash --------------- */
/* 4 cartes typographiques sobres, fond glass subtle, focus sur le label  */
/* metier + l'intitule + le lien. Pas de photo, pas de marquee.            */
.hero-pillars{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
  width:100%;
  margin-top:32px;
}
.hero-pillar{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:22px 22px 20px;
  border-radius:22px;
  background:linear-gradient(180deg,
    rgba(255,255,255,.62) 0%,
    rgba(248,251,255,.42) 100%);
  border:1px solid rgba(255,255,255,.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 16px 36px rgba(12,26,58,.08);
  backdrop-filter:blur(20px) saturate(1.25);
  -webkit-backdrop-filter:blur(20px) saturate(1.25);
  text-decoration:none;
  color:var(--text);
  transition:transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease;
}
.hero-pillar:hover{
  transform:translateY(-2px);
  background:linear-gradient(180deg,
    rgba(255,255,255,.78) 0%,
    rgba(248,251,255,.6) 100%);
  border-color:rgba(255,255,255,.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.75),
    0 26px 50px rgba(12,26,58,.12);
}
.hero-pillar__label{
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
}
.hero-pillar__title{
  font-family:'Fraunces', Georgia, serif;
  font-size:1.05rem;
  font-weight:600;
  line-height:1.32;
  color:var(--navy);
  flex:1 0 auto;
}
.hero-pillar__link{
  font-size:.86rem;
  font-weight:700;
  color:var(--navy);
  letter-spacing:.01em;
  border-top:1px solid rgba(9,26,61,.10);
  padding-top:10px;
  margin-top:4px;
}
@media (max-width: 1080px){
  .hero-pillars{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 640px){
  .hero-pillars{grid-template-columns:1fr}
}

/* --- Insight row dashboard : remplace l'insight-strip carrousel ------- */
.insight-row{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  padding:18px 22px;
  border-radius:var(--radius-lg, 18px);
  background:linear-gradient(180deg,
    rgba(255,255,255,.62) 0%,
    rgba(248,251,255,.42) 100%);
  border:1px solid rgba(255,255,255,.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 14px 30px rgba(12,26,58,.08);
  backdrop-filter:blur(18px) saturate(1.2);
  -webkit-backdrop-filter:blur(18px) saturate(1.2);
}
.insight-cell{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.insight-cell span{
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#7a8499;
}
.insight-cell strong{
  font-family:'Fraunces', Georgia, serif;
  font-size:1.05rem;
  font-weight:600;
  color:#091a3d;
  line-height:1.28;
}
@media (max-width: 720px){
  .insight-row{grid-template-columns:1fr;padding:14px 16px}
}

/* --- Recadrage du glass premium : SEULEMENT sur les surfaces cles ----- */
/* Les .card generiques (sections "Pourquoi Paylex", "Garanties", etc.)   */
/* gardent un rendu plus discret pour la lisibilite. On retire le glass   */
/* lourd qui avait ete pose en WP8.3 sur .visual-card et .quote-panel.    */
.visual-card,
.quote-panel,
.page-hero .visual-card{
  background:linear-gradient(180deg,
    rgba(255,255,255,.58) 0%,
    rgba(248,251,255,.40) 100%);
  border:1px solid rgba(255,255,255,.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 18px 40px rgba(12,26,58,.08);
  backdrop-filter:blur(16px) saturate(1.15);
  -webkit-backdrop-filter:blur(16px) saturate(1.15);
}

/* Les anciennes .card / .info-card / .value-card / .pricing-card /
   .market-card / .guarantee-card / .contact-card heritent du look
   defini dans le bloc principal des styles (lignes ~944+). On les laisse
   tranquilles : surface neutre, ombre legere. */
.card,
.info-card,
.value-card,
.pricing-card,
.market-card,
.guarantee-card,
.contact-card,
.price-panel{
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

/* =========================================================================
   fix: correct Paylex visual regressions before deploy
   - Brand 2 lignes (PAYLEX + PAY OUTSOURCING) meme style, meme taille,
     pas d italique, pas de tagline.
   - Waves SVG reellement perceptibles mais lentes (2 layers, directions
     opposees, opacite calibree pour cabinet financier).
   - Glass plus transparent (vrai verre, pas plastique blanc opaque).
   ========================================================================= */

/* --- Brand header 2 lignes, meme style, meme taille -------------------- */
/* Override final des regles brand-copy precedentes. */
.brand-copy{
  display:flex;
  flex-direction:column;
  gap:3px;
  line-height:1;
  justify-content:center;
}
.brand-copy strong,
.brand-copy > span{
  font-family:'Manrope', -apple-system, 'Segoe UI', sans-serif;
  font-weight:700;
  font-size:.94rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--navy);
  line-height:1.05;
  font-style:normal;
  margin:0;
}
.brand-copy > span{
  font-weight:500;
  color:#5d6b82;
}
@media (max-width: 760px){
  .brand-copy strong,
  .brand-copy > span{font-size:.86rem;letter-spacing:.18em}
}

/* --- Waves perceptibles : 2 layers, directions opposees, durees -------- */
/* On reecrit complete pour avoir une animation vraiment visible mais   */
/* lente. Chaque layer drift dans son sens propre pour eviter le freeze.*/
.animated-waves-bg::before{
  content:'';
  position:fixed;
  inset:-10vh -10vw;
  z-index:-1;
  pointer-events:none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 600' preserveAspectRatio='none'><path d='M-100,320 C200,200 500,440 900,290 C1200,180 1500,370 1800,310 L1800,700 L-100,700 Z' fill='rgba(255,255,255,0.55)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 600' preserveAspectRatio='none'><path d='M-100,370 C300,250 700,490 1100,330 C1400,210 1700,420 1800,360 L1800,700 L-100,700 Z' fill='rgba(214,184,122,0.14)'/></svg>");
  background-size:240% 100%, 280% 100%;
  background-repeat:no-repeat;
  background-position:0% 60%, 100% 70%;
  opacity:.75;
  animation:
    paylex-wave-a 95s linear infinite,
    paylex-wave-b 130s linear infinite;
}
@keyframes paylex-wave-a{
  from{background-position:  0% 60%, 100% 70%}
  to  {background-position:100% 60%, 100% 70%}
}
@keyframes paylex-wave-b{
  from{background-position:0% 60%,   100% 70%}
  to  {background-position:0% 60%,  -100% 70%}
}
@media (prefers-reduced-motion: reduce){
  .animated-waves-bg::before{animation:none}
}

/* --- Vrai liquid glass : transparence reelle + blur visible ----------- */
/* Override final, plus transparent que WP8.3.                            */
.dropdown,
.dropdown-grid{
  background:linear-gradient(135deg,
    rgba(255,255,255,.38) 0%,
    rgba(255,255,255,.16) 100%);
  border:1px solid rgba(255,255,255,.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 24px 60px rgba(12,26,58,.16);
  backdrop-filter:blur(22px) saturate(1.35);
  -webkit-backdrop-filter:blur(22px) saturate(1.35);
}
.dropdown-grid a{
  background:linear-gradient(135deg,
    rgba(255,255,255,.28) 0%,
    rgba(255,255,255,.10) 100%);
  border:1px solid rgba(255,255,255,.30);
  backdrop-filter:blur(8px) saturate(1.15);
  -webkit-backdrop-filter:blur(8px) saturate(1.15);
}
.dropdown-grid a:hover{
  background:linear-gradient(135deg,
    rgba(255,255,255,.46) 0%,
    rgba(255,255,255,.22) 100%);
  border-color:rgba(255,255,255,.48);
}

.sector-card{
  background:linear-gradient(135deg,
    rgba(255,255,255,.42) 0%,
    rgba(255,255,255,.18) 100%);
  border:1px solid rgba(255,255,255,.38);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 22px 50px rgba(12,26,58,.14),
    0 3px 8px rgba(12,26,58,.05);
  backdrop-filter:blur(22px) saturate(1.35);
  -webkit-backdrop-filter:blur(22px) saturate(1.35);
}
.sector-card:hover{
  background:linear-gradient(135deg,
    rgba(255,255,255,.54) 0%,
    rgba(255,255,255,.26) 100%);
  border-color:rgba(255,255,255,.50);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    0 30px 64px rgba(12,26,58,.18),
    0 5px 14px rgba(12,26,58,.07);
}

.cta-panel{
  background:linear-gradient(135deg,
    rgba(255,255,255,.46) 0%,
    rgba(255,255,255,.20) 100%);
  border:1px solid rgba(255,255,255,.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 26px 60px rgba(12,26,58,.16);
  backdrop-filter:blur(24px) saturate(1.35);
  -webkit-backdrop-filter:blur(24px) saturate(1.35);
}

.hero-reminder{
  background:linear-gradient(135deg,
    rgba(255,255,255,.42) 0%,
    rgba(252,247,235,.20) 100%);
  border:1px solid rgba(255,255,255,.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 22px 50px rgba(12,26,58,.14);
  backdrop-filter:blur(22px) saturate(1.3);
  -webkit-backdrop-filter:blur(22px) saturate(1.3);
}

.hero-pillars .hero-pillar{
  background:linear-gradient(135deg,
    rgba(255,255,255,.40) 0%,
    rgba(255,255,255,.16) 100%);
  border:1px solid rgba(255,255,255,.40);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 18px 40px rgba(12,26,58,.10);
  backdrop-filter:blur(22px) saturate(1.3);
  -webkit-backdrop-filter:blur(22px) saturate(1.3);
}
.hero-pillars .hero-pillar:hover{
  background:linear-gradient(135deg,
    rgba(255,255,255,.56) 0%,
    rgba(255,255,255,.26) 100%);
  border-color:rgba(255,255,255,.55);
}

.insight-row{
  background:linear-gradient(135deg,
    rgba(255,255,255,.40) 0%,
    rgba(255,255,255,.18) 100%);
  border:1px solid rgba(255,255,255,.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 16px 36px rgba(12,26,58,.08);
  backdrop-filter:blur(20px) saturate(1.3);
  -webkit-backdrop-filter:blur(20px) saturate(1.3);
}

/* =========================================================================
   fix: final visual stability pass before deploy
   - restore premium header hierarchy
   - restore CTA contrast on light glass
   - restore hero image framing after background shorthand regressions
   - calm wave motion for production readiness
   ========================================================================= */

.brand-copy{
  gap:4px;
}
.brand-copy strong{
  font-family:var(--sans);
  font-size:1.06rem;
  font-weight:800;
  letter-spacing:.22em;
  color:var(--navy);
}
.brand-copy > span{
  display:block;
  font-family:var(--sans);
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:#6f7d94;
}
@media (max-width:760px){
  .brand-copy{
    gap:3px;
  }
  .brand-copy strong{
    font-size:.94rem;
    letter-spacing:.18em;
  }
  .brand-copy > span{
    display:block;
    font-size:.54rem;
    letter-spacing:.22em;
  }
}

.footer-brand strong{
  font-family:var(--sans);
  font-size:.92rem;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--navy);
}

.cta-panel{
  color:var(--navy);
  background:linear-gradient(135deg, rgba(255,255,255,.82) 0%, rgba(244,248,255,.64) 100%);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.82),
    0 24px 54px rgba(12,26,58,.14);
}
.cta-panel h2{
  color:var(--navy);
}
.cta-panel p{
  color:var(--muted);
}

.visual-card{
  background-color:#dfe7f2;
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
}
.page-hero .visual-card{
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
}
.visual-badge{
  background:rgba(9,26,61,.72);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
}

body::after{
  opacity:.18;
  background-size:144vw auto;
  background-position:center 10vh;
  animation-duration:140s;
}
.section--tint::before{
  opacity:.18;
  animation-duration:150s;
}
.animated-waves-bg::before{
  background-size:220% 100%, 260% 100%;
  background-position:0% 62%, 100% 72%;
  opacity:.18;
  animation:
    paylex-wave-a 118s linear infinite,
    paylex-wave-b 148s linear infinite;
}

@media (prefers-reduced-motion:reduce){
  body::after,
  .section--tint::before,
  .animated-waves-bg::before{
    animation:none;
  }
}

/* =========================================================================
   fix: restore premium title gradients on key H1 segments
   ========================================================================= */

.hero-copy h1 .hero-gradient,
.page-hero h1 .hero-gradient,
.page-hero h1 .text-gradient-soft,
.page-hero h1 .gradient-text,
.page-hero h1 .text-gradient{
  display:inline;
  background-image:linear-gradient(96deg,
    #234eab 0%,
    #2e6cf6 34%,
    #8ebfff 70%,
    #c79f5f 100%);
  background-repeat:no-repeat;
  background-size:100% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-box-decoration-break:clone;
  box-decoration-break:clone;
  -webkit-text-fill-color:transparent;
  color:transparent;
}

/* =========================================================================
   fix: final cleanup for ghost panels + front-end performance
   ========================================================================= */

.quote-panel,
.cta-panel,
.hero-reminder,
.hero-pillars .hero-pillar,
.insight-row,
.visual-card,
.page-hero .visual-card{
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.quote-panel{
  background:linear-gradient(160deg,
    rgba(9,26,61,.96) 0%,
    rgba(17,44,92,.94) 62%,
    rgba(27,66,122,.90) 100%);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 24px 54px rgba(8,20,46,.24);
  color:#fff;
}
.quote-panel::before{
  inset:auto -14% -20% auto;
  width:220px;
  height:220px;
  opacity:.72;
}
.quote-panel h3{
  color:#fff;
}
.quote-panel p,
.quote-panel li{
  color:rgba(255,255,255,.84);
}

.hero-pillars{
  gap:18px;
  align-items:stretch;
}
.hero-pillars .hero-pillar{
  min-height:188px;
  gap:10px;
  padding:20px 20px 18px;
  border-radius:20px;
  background:linear-gradient(180deg,
    rgba(255,255,255,.96) 0%,
    rgba(246,249,253,.92) 100%);
  border:1px solid rgba(209,220,235,.95);
  box-shadow:
    0 1px 0 rgba(255,255,255,.78) inset,
    0 14px 30px rgba(12,26,58,.08);
  transition:border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.hero-pillars .hero-pillar:hover{
  transform:none;
  background:linear-gradient(180deg,
    rgba(255,255,255,.98) 0%,
    rgba(249,251,255,.94) 100%);
  border-color:rgba(180,196,220,.95);
  box-shadow:
    0 1px 0 rgba(255,255,255,.82) inset,
    0 18px 34px rgba(12,26,58,.10);
}
.hero-pillars .hero-pillar__title{
  font-size:1rem;
  line-height:1.38;
}
.hero-pillars .hero-pillar__link{
  margin-top:6px;
  padding-top:12px;
  color:#12366d;
}

.hero-reminder{
  background:linear-gradient(160deg,
    rgba(255,255,255,.90) 0%,
    rgba(243,247,253,.86) 100%);
  box-shadow:0 18px 42px rgba(12,26,58,.12);
}
.insight-row{
  background:linear-gradient(180deg,
    rgba(255,255,255,.90) 0%,
    rgba(245,248,252,.84) 100%);
  border:1px solid rgba(214,224,238,.90);
  box-shadow:
    0 1px 0 rgba(255,255,255,.80) inset,
    0 14px 30px rgba(12,26,58,.08);
}

.liquid-shell{
  will-change:auto;
}
.liquid-shell::before,
.liquid-shell::after,
.hero-visual{
  animation:none;
}

body::after,
.section--tint::before{
  content:none;
}
.animated-waves-bg::before{
  inset:-10vh 0 0 0;
  background-image:url('silk-waves.svg');
  background-repeat:no-repeat;
  background-size:180vw auto;
  background-position:center 10vh;
  opacity:.24;
  animation:paylex-wave-satin 116s ease-in-out infinite alternate;
}
@keyframes paylex-wave-satin{
  0%{
    transform:translate3d(-3%, 0, 0) scale(1.02);
  }
  50%{
    transform:translate3d(3%, 1.2%, 0) scale(1.05);
  }
  100%{
    transform:translate3d(-3%, 0, 0) scale(1.02);
  }
}

@media (max-width:640px){
  .hero-pillars .hero-pillar{
    min-height:0;
    padding:18px 18px 16px;
  }
}

@media (prefers-reduced-motion:reduce){
  .animated-waves-bg::before,
  .liquid-shell::before,
  .liquid-shell::after,
  .hero-visual{
    animation:none;
  }
}

/* =========================================================================
   design: final premium visual polish
   ========================================================================= */

.page-hero h1{
  font-size:clamp(1.82rem, 1.18rem + 2.08vw, 3.12rem);
  line-height:1.06;
  max-width:19.5ch;
}

.page-hero .pill-row{
  gap:12px;
  margin-top:22px;
}
.page-hero .pill{
  min-height:36px;
  padding:0 15px;
  border-radius:999px;
  border:1px solid rgba(198,210,228,.92);
  background:rgba(255,255,255,.88);
  box-shadow:
    0 1px 0 rgba(255,255,255,.82) inset,
    0 10px 22px rgba(12,26,58,.05);
  color:var(--navy);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.page-hero .pill::before{
  content:'\2713';
  margin-right:8px;
  color:var(--gold);
  font-size:12px;
  line-height:1;
}

.visual-card::after{
  background:linear-gradient(180deg, rgba(8,18,40,.04), rgba(8,18,40,.24));
}
.visual-badge{
  max-width:74%;
  padding:11px 14px;
  border-radius:17px;
  background:linear-gradient(160deg,
    rgba(11,29,67,.78) 0%,
    rgba(17,44,92,.66) 100%);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    0 14px 32px rgba(8,20,46,.20),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(10px) saturate(1.06);
  -webkit-backdrop-filter:blur(10px) saturate(1.06);
  font-size:.88rem;
  font-weight:700;
  line-height:1.42;
}

.animated-waves-bg::before{
  background-size:174vw auto;
  background-position:center 12vh;
  opacity:.20;
  animation-duration:132s;
}
.animated-waves-bg::after{
  content:'';
  position:fixed;
  inset:-12vh -18vw auto auto;
  width:44vw;
  height:44vw;
  min-width:340px;
  min-height:340px;
  z-index:-1;
  pointer-events:none;
  border-radius:50%;
  background:radial-gradient(circle,
    rgba(255,255,255,.16) 0%,
    rgba(255,255,255,.07) 24%,
    rgba(255,255,255,0) 70%);
  opacity:.08;
}

@media (max-width:640px){
  .page-hero h1{
    max-width:11.4ch;
  }
  .page-hero .pill-row{
    gap:10px;
  }
  .page-hero .pill{
    min-height:34px;
    padding:0 13px;
    font-size:10.5px;
    letter-spacing:.07em;
  }
  .visual-badge{
    left:16px;
    right:16px;
    bottom:16px;
    max-width:none;
    font-size:.82rem;
  }
}

@media (prefers-reduced-motion:reduce){
  .animated-waves-bg::before{
    animation:none;
  }
}

/* =========================================================================
   design: restore premium liquid interactions
   Micro patch only: reinforce open dropdown readability and give the
   service mosaic back a little depth without reintroducing heavy blur.
   ========================================================================= */

.menu > li > a,
.menu > li > button{
  transition:
    background .32s ease,
    box-shadow .32s ease,
    color .32s ease;
}

.menu > li.is-open > a,
.menu > li.is-open > button,
.menu > li:hover > button,
.menu > li:focus-within > button{
  background:linear-gradient(180deg,
    rgba(255,255,255,.72) 0%,
    rgba(243,247,253,.54) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.74),
    0 14px 28px rgba(10,26,60,.08);
  backdrop-filter:blur(10px) saturate(1.04);
  -webkit-backdrop-filter:blur(10px) saturate(1.04);
}

.dropdown{
  background:linear-gradient(180deg,
    rgba(255,255,255,.62) 0%,
    rgba(247,250,255,.40) 100%);
  border:1px solid rgba(255,255,255,.58);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.62),
    0 18px 38px rgba(12,26,58,.12);
  backdrop-filter:blur(10px) saturate(1.06);
  -webkit-backdrop-filter:blur(10px) saturate(1.06);
  transition:
    opacity .32s ease,
    transform .32s ease,
    background .32s ease,
    border-color .32s ease,
    box-shadow .32s ease,
    backdrop-filter .32s ease;
}

.menu > li:hover .dropdown,
.menu > li.is-open .dropdown,
.menu > li:focus-within .dropdown{
  background:linear-gradient(180deg,
    rgba(255,255,255,.92) 0%,
    rgba(245,249,255,.84) 100%);
  border-color:rgba(220,229,241,.94);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.84),
    0 22px 48px rgba(12,26,58,.15),
    0 4px 14px rgba(12,26,58,.05);
  backdrop-filter:blur(16px) saturate(1.08);
  -webkit-backdrop-filter:blur(16px) saturate(1.08);
}

.dropdown-grid{
  gap:10px;
}

.dropdown a,
.dropdown-grid a{
  background:linear-gradient(180deg,
    rgba(255,255,255,.56) 0%,
    rgba(248,251,255,.32) 100%);
  border:1px solid rgba(227,235,245,.88);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.56),
    0 8px 18px rgba(12,26,58,.04);
  transition:
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    transform .28s ease;
}

.dropdown a:hover,
.dropdown-grid a:hover{
  background:linear-gradient(180deg,
    rgba(255,255,255,.78) 0%,
    rgba(242,247,255,.58) 100%);
  border-color:rgba(205,219,236,.96);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    0 12px 24px rgba(12,26,58,.07);
  transform:translateY(-1px);
}

.service-card:not(.service-card--textonly){
  border:1px solid rgba(211,221,235,.88);
  background:linear-gradient(180deg,
    rgba(255,255,255,.98) 0%,
    rgba(247,250,255,.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    0 18px 38px rgba(12,26,58,.10),
    0 3px 10px rgba(12,26,58,.03);
  transition:
    transform .32s ease,
    box-shadow .32s ease,
    border-color .32s ease;
}

.service-card:not(.service-card--textonly)::after{
  content:'';
  position:absolute;
  inset:1px;
  border-radius:29px;
  pointer-events:none;
  z-index:1;
  background:linear-gradient(180deg,
    rgba(255,255,255,.18) 0%,
    rgba(255,255,255,.05) 30%,
    rgba(255,255,255,.10) 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.34);
}

.service-card .service-art{
  z-index:0;
}

.service-card .service-copy{
  z-index:2;
}

.service-card:not(.service-card--textonly):hover{
  transform:translateY(-2px);
  border-color:rgba(199,213,231,.96);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.78),
    0 22px 42px rgba(12,26,58,.12),
    0 6px 14px rgba(12,26,58,.05);
}

@media (prefers-reduced-motion:reduce){
  .menu > li > a,
  .menu > li > button,
  .dropdown,
  .dropdown a,
  .dropdown-grid a,
  .service-card{
    transition:none;
  }
  .dropdown a:hover,
  .dropdown-grid a:hover,
  .service-card:hover{
    transform:none;
  }
}
