:root {
  --bg-night: #030510;
  --bg-space: #071122;
  --cyan: #88f7ff;
  --cyan-strong: #00e5ff;
  --ice: #dffcff;
  --gold: #ffd68a;
  --magenta: #ff5dd8;
  --violet: #8e7bff;
  --line: rgba(255, 255, 255, 0.1);
}

.pg-lang-switch {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 22000;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(0, 180, 216, 0.28);
  border-radius: 999px;
  background: rgba(4, 8, 22, 0.78);
  backdrop-filter: blur(8px);
}

.pg-lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #9ce7ff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.pg-lang-switch a.is-active {
  color: #03131a;
  background: #00b4d8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 93, 216, 0.16), transparent 20%),
    radial-gradient(circle at 80% 18%, rgba(0, 229, 255, 0.16), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(61, 92, 255, 0.12), transparent 36%),
    linear-gradient(180deg, #040610 0%, #060b19 38%, #091327 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.42) 0.7px, transparent 0.7px),
    radial-gradient(rgba(136, 247, 255, 0.2) 1px, transparent 1px);
  background-size: 120px 120px, 220px 220px;
  background-position: 0 0, 40px 70px;
  opacity: 0.34;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), rgba(4, 6, 16, 0.62) 36%, rgba(4, 6, 16, 0.94) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.1s ease;
}

body.is-loading::after {
  opacity: 1;
}

.theme-shell::before,
.theme-shell::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
  opacity: 0.34;
}

.theme-shell::before {
  top: 12%;
  left: -8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 93, 216, 0.22), rgba(142, 123, 255, 0.08) 46%, transparent 72%);
  animation: nebulaFloatOne 18s ease-in-out infinite;
}

.theme-shell::after {
  right: -10%;
  bottom: 8%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.18), rgba(136, 247, 255, 0.08) 42%, transparent 70%);
  animation: nebulaFloatTwo 24s ease-in-out infinite;
}

.theme-loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(7, 18, 42, 0.34), rgba(3, 5, 16, 0.94) 62%, #030510 100%);
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.theme-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.theme-loader__core,
.theme-loader__ring {
  position: absolute;
  border-radius: 50%;
}

.theme-loader__core {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(0, 229, 255, 0.36) 38%, rgba(4, 18, 34, 0) 72%);
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.34), 0 0 120px rgba(255, 93, 216, 0.18);
  animation: loaderPulse 1.8s ease-in-out infinite;
}

.theme-loader__ring--one {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(136, 247, 255, 0.36);
  animation: loaderSpin 6s linear infinite;
}

.theme-loader__ring--two {
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 214, 138, 0.24);
  animation: loaderSpinReverse 8s linear infinite;
}

.theme-loader__label {
  position: absolute;
  margin: 0;
  top: calc(50% + 110px);
  color: var(--ice);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(136, 247, 255, 0.4);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 14px;
  background: #ffffff;
  color: #040610;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.theme-shell {
  position: relative;
  overflow: hidden;
}

body.is-loading .theme-nav,
body.is-loading .theme-hero__content,
body.is-loading .theme-orbit,
body.is-loading .theme-section--intro,
body.is-loading .category-card,
body.is-loading .theme-panel,
body.is-loading .detail-panel,
body.is-loading .detail-demo-block {
  opacity: 0;
}

.theme-hero,
.theme-main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.theme-hero {
  position: relative;
  padding: 28px 0 48px;
}

.theme-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 12, 28, 0.56);
  backdrop-filter: blur(16px);
  transform: translateY(-24px) scale(0.98);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.theme-brand,
.theme-nav__link,
.theme-nav__cta,
.theme-hero__cta,
.theme-hero__ghost,
.theme-panel__cta {
  text-decoration: none;
}

.theme-brand {
  color: var(--ice);
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.theme-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-nav__link {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.theme-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ice), var(--cyan-strong));
  color: #04101a;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.theme-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 94px 0 72px;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.theme-kicker,
.theme-section__eyebrow,
.theme-panel__eyebrow,
.category-card__tag {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.theme-hero h1,
.theme-section h2,
.theme-panel h2,
.category-card h3 {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
}

.theme-hero h1 {
  font-size: clamp(36px, 6vw, 84px);
  line-height: 0.97;
}

.theme-hero__lead,
.theme-section__text,
.theme-panel p,
.category-card p,
.category-card__list {
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.6;
}

.theme-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}


.theme-hero__cta,
.theme-hero__ghost,
.theme-panel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.theme-hero__cta,
.theme-panel__cta {
  background: linear-gradient(135deg, var(--gold), #fff0b5);
  color: #1a1200;
}

.theme-hero__ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   THEME ORBIT : TERRE SIGNATURE 3D
   ========================================================================== */

.theme-orbit {
  position: absolute;
  right: -80px;
  top: 120px;
  width: min(46vw, 560px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  transform-style: preserve-3d;
  z-index: 1;
  transform: scale(0.82) rotate(-12deg);
  opacity: 0;
  transition: transform 1.2s ease, opacity 1.2s ease;
}

.theme-orbit__core {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.92), rgba(0, 229, 255, 0.42) 32%, rgba(4, 18, 34, 0.12) 66%, rgba(4, 18, 34, 0) 100%);
  box-shadow: 0 0 80px rgba(0, 229, 255, 0.34), 0 0 180px rgba(142, 123, 255, 0.18);
  animation: orbitCorePulse 6s ease-in-out infinite;
}

.theme-orbit__ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(136, 247, 255, 0.24);
}

.theme-orbit__ring--one {
  transform: rotateX(72deg) rotateY(18deg);
  animation: orbitSpin 16s linear infinite;
}

.theme-orbit__ring--two {
  inset: 14%;
  border-color: rgba(255, 93, 216, 0.24);
  transform: rotateX(34deg) rotateY(64deg);
  animation: orbitSpinReverse 20s linear infinite;
}

.theme-orbit__satellite {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.86);
}

.theme-orbit__satellite--one {
  top: 22%;
  left: 16%;
  animation: satelliteDrift 7s ease-in-out infinite;
}

.theme-orbit__satellite--two {
  right: 12%;
  bottom: 20%;
  background: var(--gold);
  box-shadow: 0 0 32px rgba(255, 214, 138, 0.72);
  animation: satelliteDrift 8.6s ease-in-out infinite reverse;
}

.theme-main {
  position: relative;
  z-index: 2;
  padding-bottom: 84px;
}

.theme-section--intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
  transform: translateY(34px);
  opacity: 0;
  transition: transform 0.85s ease, opacity 0.85s ease;
}

.theme-section h2,
.theme-panel h2 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  position: relative;
  grid-column: span 4;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(9, 18, 36, 0.84), rgba(7, 11, 24, 0.95));
  overflow: clip;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.3);
  transform: translateY(44px) scale(0.98);
  opacity: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.03, 0.98, 0.52, 0.99), opacity 0.85s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.16) 50%, transparent 70%);
  opacity: 0;
  transform: translateX(-18%) translateY(10%) scale(1.02);
  transition: opacity 0.45s ease, transform 0.7s ease;
  pointer-events: none;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: auto -40px -90px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transform: scale(0.7);
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 34px 92px rgba(0, 0, 0, 0.42), 0 0 42px rgba(136, 247, 255, 0.12);
}

.category-card:hover::before {
  opacity: 1;
  transform: translateX(8%) translateY(0) scale(1);
}

.category-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.category-card--wide {
  grid-column: span 8;
}

.category-card__glow {
  position: absolute;
  inset: auto auto -50px -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
}

.category-card--immersive .category-card__glow {
  background: radial-gradient(circle, rgba(142, 123, 255, 0.52), transparent 68%);
}

.category-card--commerce .category-card__glow {
  background: radial-gradient(circle, rgba(255, 214, 138, 0.52), transparent 68%);
}

.category-card--funnel .category-card__glow {
  background: radial-gradient(circle, rgba(0, 229, 255, 0.52), transparent 68%);
}

.category-card--editorial .category-card__glow {
  background: radial-gradient(circle, rgba(255, 93, 216, 0.48), transparent 68%);
}

.category-card--launch .category-card__glow {
  background: radial-gradient(circle, rgba(136, 247, 255, 0.48), transparent 68%);
}

.category-card__demo-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.category-card__captures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.category-card__capture {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 124px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(20, 27, 48, 0.94), rgba(11, 15, 28, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.category-card__capture::before,
.category-card__capture::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.category-card__capture::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 46%);
}

.category-card__capture--shop::after {
  inset: 14px 12px auto 12px;
  height: 78px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 20%, rgba(136, 247, 255, 0.4), transparent 24%),
    radial-gradient(circle at 72% 56%, rgba(255, 93, 216, 0.32), transparent 24%),
    linear-gradient(180deg, rgba(34, 44, 74, 0.9), rgba(18, 24, 42, 0.96));
}

.category-card__capture--catalog::after {
  inset: 14px 12px auto 12px;
  height: 78px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 64%, rgba(136, 247, 255, 0.22), transparent 20%),
    radial-gradient(circle at 74% 30%, rgba(181, 255, 161, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(20, 28, 42, 0.96), rgba(13, 18, 30, 0.98));
}

.category-card__capture-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.category-card__demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(136, 247, 255, 0.18), rgba(255, 93, 216, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(136, 247, 255, 0.08);
}

.category-card__capture:hover,
.category-card__demo-link:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 26px rgba(136, 247, 255, 0.12);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 18px;
  margin-bottom: 22px;
}

.detail-panel,
.detail-demo-block {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.03, 0.98, 0.52, 0.99), border-color 0.4s ease, box-shadow 0.4s ease;
}

.detail-panel::before,
.detail-demo-block::before,
.pg-product-block::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--glow-angle, 220deg), transparent 40%, rgba(0, 229, 255, 0.5) 50%, rgba(142, 123, 255, 0.5) 55%, transparent 65%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.detail-panel::after,
.detail-demo-block::after,
.pg-product-block::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.18), transparent 70%);
  top: var(--glow-y, 50%);
  left: var(--glow-x, 50%);
  transform: translate(-50%, -50%);
  filter: blur(48px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.detail-panel:hover::before,
.detail-demo-block:hover::before,
.pg-product-block:hover::before {
  opacity: 1;
}

.detail-panel:hover::after,
.detail-demo-block:hover::after,
.pg-product-block:hover::after {
  opacity: 1;
}

.detail-panel:hover,
.detail-demo-block:hover {
  border-color: rgba(0, 229, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 80px rgba(0, 0, 0, 0.36), 0 0 42px rgba(0, 229, 255, 0.08);
}

.detail-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.detail-captures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-capture {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 188px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 27, 48, 0.94), rgba(11, 15, 28, 0.98));
  text-decoration: none;
}

.detail-capture::before,
.detail-capture::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.detail-capture::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 46%);
}

.detail-capture--shop::after {
  inset: 16px 14px auto 14px;
  height: 118px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 20%, rgba(136, 247, 255, 0.4), transparent 24%),
    radial-gradient(circle at 72% 56%, rgba(255, 93, 216, 0.32), transparent 24%),
    linear-gradient(180deg, rgba(34, 44, 74, 0.9), rgba(18, 24, 42, 0.96));
}

.detail-capture--catalog::after {
  inset: 16px 14px auto 14px;
  height: 118px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 20% 64%, rgba(136, 247, 255, 0.22), transparent 20%),
    radial-gradient(circle at 74% 30%, rgba(181, 255, 161, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(20, 28, 42, 0.96), rgba(13, 18, 30, 0.98));
}

.detail-capture__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.detail-demo-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, rgba(136, 247, 255, 0.08), rgba(255, 93, 216, 0.08));
}

.detail-demo-block__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(136, 247, 255, 0.2), rgba(255, 93, 216, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(136, 247, 255, 0.1);
}

.detail-capture:hover,
.detail-demo-block__cta:hover {
  border-color: rgba(0, 229, 255, 0.32);
  box-shadow: 0 0 36px rgba(136, 247, 255, 0.18), 0 0 80px rgba(142, 123, 255, 0.08);
  transform: translateY(-3px);
}

.detail-capture {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.detail-demo-block__cta {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.detail-demo-block__cta:hover {
  background: linear-gradient(135deg, rgba(136, 247, 255, 0.32), rgba(255, 93, 216, 0.28));
}

.service-catalogue-layout {
  align-items: stretch;
}

.service-catalogue-panel--accent {
  background: linear-gradient(135deg, rgba(136, 247, 255, 0.08), rgba(255, 214, 138, 0.1), rgba(255, 93, 216, 0.08));
}

.service-catalogue-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-catalogue-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08;
}

.service-catalogue-card p {
  margin: 0;
}

.service-catalogue-card__badge {
  display: inline-flex;
  align-self: flex-start;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.service-catalogue-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-catalogue-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 12, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.2px;
}

.service-catalogue-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(136, 247, 255, 0.22), rgba(255, 214, 138, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 1.25px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(136, 247, 255, 0.1);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.service-catalogue-card__cta:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.32);
  background: linear-gradient(135deg, rgba(136, 247, 255, 0.32), rgba(255, 214, 138, 0.28));
  box-shadow: 0 0 36px rgba(136, 247, 255, 0.18), 0 0 80px rgba(255, 214, 138, 0.08);
}

.category-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
  transition: transform 0.35s ease, text-shadow 0.35s ease;
}

.category-card p,
.category-card__list {
  position: relative;
  z-index: 1;
  font-size: 18px;
  transition: transform 0.35s ease, color 0.35s ease;
}

.category-card__list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.category-card__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 44px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.category-card__tag {
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease, color 0.35s ease;
}

.category-card__glow {
  transition: opacity 0.4s ease, transform 0.5s ease, filter 0.5s ease;
}

.category-card:hover .category-card__tag {
  color: #fff2c8;
  transform: translateY(-2px);
}

.category-card:hover h3 {
  transform: translateY(-4px);
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.14);
}

.category-card:hover p,
.category-card:hover .category-card__list {
  transform: translateY(-2px);
  color: rgba(255, 255, 255, 0.9);
}

.category-card:hover .category-card__glow {
  opacity: 0.82;
  transform: scale(1.14);
  filter: blur(14px);
}

.category-card:hover .category-card__cta {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.category-card--immersive:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 34px 92px rgba(0, 0, 0, 0.42), 0 0 54px rgba(142, 123, 255, 0.2);
}

.category-card--commerce:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 34px 92px rgba(0, 0, 0, 0.42), 0 0 54px rgba(255, 214, 138, 0.18);
}

.category-card--funnel:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 34px 92px rgba(0, 0, 0, 0.42), 0 0 56px rgba(0, 229, 255, 0.18);
}

.category-card--editorial:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 34px 92px rgba(0, 0, 0, 0.42), 0 0 54px rgba(255, 93, 216, 0.18);
}

.category-card--launch:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 34px 92px rgba(0, 0, 0, 0.42), 0 0 56px rgba(136, 247, 255, 0.18);
}

@media (hover: none), (pointer: coarse) {
  .category-card::before,
  .category-card::after {
    display: none;
  }

  .category-card:hover {
    transform: none;
  }
}

.theme-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.theme-panel {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(36px);
  opacity: 0;
  transition: transform 0.85s ease, opacity 0.85s ease;
}

.theme-panel--accent {
  background: linear-gradient(135deg, rgba(255, 214, 138, 0.1), rgba(255, 255, 255, 0.04));
}

.theme-panel__cta {
  margin-top: 18px;
}

body.is-ready .theme-nav,
body.is-ready .theme-hero__content,
body.is-ready .theme-orbit,
body.is-ready .theme-section--intro,
body.is-ready .category-card,
body.is-ready .theme-panel,
body.is-ready .detail-panel,
body.is-ready .detail-demo-block,
body.is-ready .pg-product-block,
body.is-ready .pg-product-detail {
  opacity: 1;
}

body.is-ready .theme-nav,
body.is-ready .theme-hero__content,
body.is-ready .theme-orbit,
body.is-ready .theme-section--intro,
body.is-ready .theme-panel {
  transform: none;
}

/* Tiltables : on reset le translateY sans bloquer le JS tilt */
body.is-ready .detail-panel,
body.is-ready .detail-demo-block,
body.is-ready .pg-product-block,
body.is-ready .pg-product-detail,
body.is-ready .category-card {
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
}

body.is-ready .category-card:nth-child(1) { transition-delay: 0.10s; }
body.is-ready .category-card:nth-child(2) { transition-delay: 0.18s; }
body.is-ready .category-card:nth-child(3) { transition-delay: 0.26s; }
body.is-ready .category-card:nth-child(4) { transition-delay: 0.34s; }
body.is-ready .category-card:nth-child(5) { transition-delay: 0.42s; }

body.is-ready .theme-panel:nth-child(1) { transition-delay: 0.18s; }
body.is-ready .theme-panel:nth-child(2) { transition-delay: 0.26s; }

@keyframes loaderPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.84; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes loaderSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes loaderSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes orbitCorePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 80px rgba(0, 229, 255, 0.34), 0 0 180px rgba(142, 123, 255, 0.18); }
  50% { transform: scale(1.04); box-shadow: 0 0 96px rgba(0, 229, 255, 0.42), 0 0 220px rgba(142, 123, 255, 0.24); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg) rotateX(72deg) rotateY(18deg); }
  to { transform: rotate(360deg) rotateX(72deg) rotateY(18deg); }
}

@keyframes orbitSpinReverse {
  from { transform: rotate(360deg) rotateX(34deg) rotateY(64deg); }
  to { transform: rotate(0deg) rotateX(34deg) rotateY(64deg); }
}

@keyframes satelliteDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(10px, -12px, 0) scale(1.08); }
}

@keyframes nebulaFloatOne {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(44px, 24px, 0) scale(1.08); }
}

@keyframes nebulaFloatTwo {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-36px, -28px, 0) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body::after,
  .theme-loader,
  .theme-nav,
  .theme-hero__content,
  .theme-orbit,
  .theme-section--intro,
  .category-card,
  .theme-panel,
  .detail-panel,
  .detail-demo-block {
    transition: none;
  }

  .theme-loader__core,
  .theme-loader__ring,
  .theme-orbit__core,
  .theme-orbit__ring,
  .theme-orbit__satellite,
  .theme-shell::before,
  .theme-shell::after {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .theme-orbit {
    position: relative;
    right: auto;
    top: auto;
    width: min(72vw, 460px);
    margin: 0 auto;
  }

  .theme-hero__content {
    max-width: none;
    padding-bottom: 34px;
  }

  .theme-section--intro,
  .theme-panels {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card--wide {
    grid-column: span 6;
  }
}

@media (max-width: 780px) {
  .theme-hero,
  .theme-main {
    width: min(100% - 24px, 1240px);
  }

  .theme-nav {
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
  }

  .theme-nav__actions,
  .theme-hero__actions {
    flex-direction: column;
  }

  .detail-layout,
  .detail-demo-block,
  .detail-captures {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card--wide {
    grid-column: auto;
    min-height: auto;
  }

  .category-card__cta {
    width: 100%;
  }

  .category-card__captures {
    grid-template-columns: 1fr;
  }

  .theme-hero__lead,
  .theme-section__text,
  .theme-panel p,
  .category-card p,
  .category-card__list {
    font-size: 18px;
  }

  .pg-product-block {
    flex-direction: column;
    text-align: center;
  }

  .pg-product-block__action {
    align-items: center;
  }

  .pg-cart-float {
    bottom: max(12px, env(safe-area-inset-bottom));
    right: 12px;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 24px;
    max-width: calc(100vw - 24px);
  }

  .pg-cart-float__icon {
    font-size: 16px;
  }

  .pg-cart-float__count {
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 11px;
  }

  .pg-cart-float__total {
    font-size: 13px;
  }
}

/* ═══════ BLOC PRODUIT ═══════ */

.pg-product-block {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 48px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(140deg, rgba(142, 123, 255, 0.08) 0%, rgba(0, 229, 255, 0.04) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 80px rgba(0, 0, 0, 0.32);
  transform: translateY(36px);
  opacity: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.03, 0.98, 0.52, 0.99), border-color 0.4s ease, box-shadow 0.4s ease, opacity 0.85s ease;
}

.pg-product-block:hover {
  border-color: rgba(0, 229, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 32px 100px rgba(0, 0, 0, 0.42), 0 0 56px rgba(0, 229, 255, 0.1), 0 0 120px rgba(142, 123, 255, 0.06);
}

body.is-ready .pg-product-block {
  opacity: 1;
}

.pg-product-block__info {
  flex: 1;
}

.pg-product-block__info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin: 8px 0 14px;
}

.pg-product-block__info p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.pg-product-block__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pg-product-block__features span {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  background: rgba(0, 229, 255, 0.06);
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 0.5px;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.pg-product-block__features span:hover {
  border-color: rgba(0, 229, 255, 0.45);
  background: rgba(0, 229, 255, 0.12);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.15);
  transform: translateY(-2px);
}

.pg-product-block__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  flex-shrink: 0;
}

.pg-product-block__price {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 28px rgba(0, 229, 255, 0.3);
}

/* ─── Toggle Switch ─── */

.pg-product-block__toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.pg-product-block__toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pg-product-block__toggle-track {
  position: relative;
  width: 56px;
  height: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.pg-product-block__toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s ease;
}

.pg-product-block__toggle input:checked + .pg-product-block__toggle-track {
  background: var(--cyan);
  border-color: var(--cyan);
}

.pg-product-block__toggle input:checked + .pg-product-block__toggle-track .pg-product-block__toggle-knob {
  transform: translateX(26px);
}

.pg-product-block__toggle-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s ease;
}

.pg-product-block__toggle input:checked ~ .pg-product-block__toggle-label {
  color: var(--cyan);
}

/* ─── Bouton Payer ─── */

.pg-product-block__pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 32px;
  border: none;
  background: linear-gradient(135deg, var(--cyan), #8e7bff);
  color: #060812;
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(0, 229, 255, 0.3), 0 0 48px rgba(142, 123, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.pg-product-block__pay-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px rgba(0, 229, 255, 0.5), 0 0 80px rgba(142, 123, 255, 0.3), 0 0 120px rgba(0, 229, 255, 0.1);
}

.pg-product-block__pay-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 16px rgba(0, 229, 255, 0.3);
}

/* ─── Choix de paiement ─── */

.pg-product-block__methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 8px;
}

.pg-product-block__methods-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.pg-product-block__method {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.pg-product-block__method:hover {
  border-color: rgba(0, 229, 255, 0.18);
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.pg-product-block__method-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.pg-product-block__method-icon {
  font-size: 20px;
}

.pg-product-block__method-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

/* ═══════ DESCRIPTION DÉTAILLÉE + FICHES ═══════ */

.pg-product-detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin: 22px 0;
}

.pg-product-detail__desc,
.pg-product-detail__extras {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.03, 0.98, 0.52, 0.99), border-color 0.4s ease, box-shadow 0.4s ease;
}

.pg-product-detail__desc:hover,
.pg-product-detail__extras:hover {
  border-color: rgba(0, 229, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 80px rgba(0, 0, 0, 0.36), 0 0 42px rgba(0, 229, 255, 0.08);
}

.pg-product-detail__text {
  margin-top: 14px;
}

.pg-product-detail__text p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
}

.pg-product-detail__text p:last-child {
  margin-bottom: 0;
}

.pg-product-detail__attachments {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.pg-product-detail__attachment {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pg-product-detail__attachment--note {
  cursor: pointer;
}

.pg-product-detail__attachment:hover {
  border-color: rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 229, 255, 0.08);
}

.pg-product-detail__attachment-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.pg-product-detail__attachment-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.pg-product-detail__attachment-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.pg-product-detail__attachment-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

.pg-product-detail__attachment-action {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 229, 255, 0.82);
}

.pg-product-detail__empty {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

@media (max-width: 768px) {
  .pg-product-detail {
    grid-template-columns: 1fr;
  }
}

/* ═══════ PANIER FLOTTANT ═══════ */

.pg-cart-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 40px;
  border: 1px solid rgba(0, 229, 255, 0.28);
  background: rgba(6, 8, 18, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 42px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 229, 255, 0.12);
  font-family: 'Rajdhani', sans-serif;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(120px);
  opacity: 0;
}

.pg-cart-float.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.pg-cart-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 56px rgba(0, 0, 0, 0.55), 0 0 36px rgba(0, 229, 255, 0.2);
}

.pg-cart-float__icon {
  font-size: 20px;
}

.pg-cart-float__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 12px;
  background: var(--cyan);
  color: #060812;
  font-size: 13px;
  font-weight: 700;
}

.pg-cart-float__total {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.pg-cart-float.has-items {
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 8px 42px rgba(0, 0, 0, 0.5), 0 0 32px rgba(0, 229, 255, 0.2);
  animation: pg-cart-pulse 2.5s ease-in-out infinite;
}

@keyframes pg-cart-pulse {
  0%, 100% { box-shadow: 0 8px 42px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 229, 255, 0.15); }
  50% { box-shadow: 0 8px 42px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.35); }
}

/* ═══════ DRAWER OVERLAY ═══════ */

.pg-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(2, 4, 12, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.pg-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ═══════ DRAWER PANEL ═══════ */

.pg-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: min(420px, 92vw);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, #080c1a 0%, #060812 60%, #0a0e20 100%);
  border-left: 1px solid rgba(0, 229, 255, 0.18);
  box-shadow: -12px 0 60px rgba(0, 0, 0, 0.7), -4px 0 32px rgba(0, 229, 255, 0.08);
  font-family: 'Rajdhani', sans-serif;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.pg-drawer.is-open {
  transform: translateX(0);
}

/* ── Header ── */

.pg-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.pg-drawer__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pg-drawer__icon {
  font-size: 22px;
}

.pg-drawer__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.pg-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #8ca0b0;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.pg-drawer__close:hover {
  color: #fff;
  border-color: rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.08);
}

/* ── Body ── */

.pg-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 229, 255, 0.2) transparent;
}

.pg-drawer__body::-webkit-scrollbar { width: 5px; }
.pg-drawer__body::-webkit-scrollbar-track { background: transparent; }
.pg-drawer__body::-webkit-scrollbar-thumb { background: rgba(0, 229, 255, 0.2); border-radius: 4px; }

/* ── Empty state ── */

.pg-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.pg-drawer__empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.pg-drawer__empty p {
  color: #8ca0b0;
  font-size: 16px;
  margin: 0;
}

.pg-drawer__empty-hint {
  margin-top: 8px !important;
  font-size: 13px !important;
  opacity: 0.6;
}

/* ── Items list ── */

.pg-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pg-drawer__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 229, 255, 0.1);
  background: rgba(0, 229, 255, 0.03);
  transition: border-color 0.2s, background 0.2s;
  animation: pg-drawer-item-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pg-drawer-item-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.pg-drawer__item:hover {
  border-color: rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.06);
}

.pg-drawer__item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.pg-drawer__item-name {
  color: #d0e4f0;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pg-drawer__item-price {
  font-family: 'Share Tech Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan, #00e5ff);
}

.pg-drawer__item-remove {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 8px;
  background: rgba(255, 107, 107, 0.05);
  color: #ff6b6b;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.pg-drawer__item-remove:hover {
  background: rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.5);
}

/* ── Footer ── */

.pg-drawer__footer {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pg-drawer__footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pg-drawer__total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pg-drawer__total-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8ca0b0;
}

.pg-drawer__total-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #00e5ff, #00b4d8, #90e0ef);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.15s ease;
}

.pg-drawer__notice {
  font-size: 12px;
  color: #8ca0b0;
  margin: 0 0 16px;
  opacity: 0.8;
}

.pg-drawer__checkout {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 0;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #00e5ff, #00b4d8);
  color: #00131a;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 22px rgba(0, 229, 255, 0.18);
}

.pg-drawer__checkout:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 229, 255, 0.26);
}

.pg-drawer__clear {
  display: block;
  width: 100%;
  padding: 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #8ca0b0;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.pg-drawer__clear:hover {
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.3);
  background: rgba(255, 107, 107, 0.06);
}

/* ==========================================================================
   ✨ TITRE MAGIQUE : EFFET CHROME & LUEUR NÉON
   ========================================================================== */

.titre-magique {
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 700;
  max-width: 800px;
  filter: drop-shadow(0px 15px 25px rgba(0, 180, 216, 0.2)) 
          drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.6));
  color: #a0c4d8;
  opacity: 0.9;
}

.titre-magique__highlight {
  display: inline-block;
  margin-bottom: 15px;
  background: linear-gradient(
    135deg, 
    #ffffff 0%, 
    #c8f0ff 40%, 
    #00b4d8 80%, 
    #0077b6 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: lueurStellaire 4s ease-in-out infinite alternate;
}

@keyframes lueurStellaire {
  0% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(0, 180, 216, 0.3));
  }
  100% {
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(0, 180, 216, 0.8));
  }
}

/* ==========================================================================
   🚀 CARROUSEL NAVIGATION THÈMES — FLÈCHES SPATIALES
   ========================================================================== */

.theme-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 20px 12px;
  margin-bottom: 8px;
  overflow: hidden;
}

/* ── Track : défilement horizontal ── */
.theme-carousel__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
  max-width: 340px;
}
.theme-carousel__track::-webkit-scrollbar { display: none; }

/* ── Slide individuelle ── */
.theme-carousel__slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 40px;
  background: rgba(0, 180, 216, 0.04);
  cursor: pointer;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  white-space: nowrap;
  user-select: none;
}
.theme-carousel__slide:hover {
  border-color: rgba(0, 180, 216, 0.4);
  background: rgba(0, 180, 216, 0.08);
}
.theme-carousel__slide--active {
  border-color: var(--cyan, #00b4d8);
  background: rgba(0, 180, 216, 0.12);
  box-shadow: 0 0 18px rgba(0, 180, 216, 0.25), inset 0 0 8px rgba(0, 180, 216, 0.08);
}

.theme-carousel__num {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan, #00b4d8);
  letter-spacing: 2px;
}
.theme-carousel__name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: #a0c4d8;
  letter-spacing: 0.5px;
}
.theme-carousel__slide--active .theme-carousel__name {
  color: #fff;
}

/* ── Flèches spatiales ── */
.theme-carousel__arrow {
  flex: 0 0 auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(0, 180, 216, 0.3));
}
.theme-carousel__arrow:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 14px rgba(0, 180, 216, 0.7)) 
          drop-shadow(0 0 30px rgba(123, 47, 247, 0.4));
}
.theme-carousel__arrow:active {
  transform: scale(0.95);
}
.theme-carousel__arrow[disabled] {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* Dot pulsant au bout de la flèche */
.rocket-dot {
  animation: rocketPulse 1.6s ease-in-out infinite alternate;
}
@keyframes rocketPulse {
  0%   { r: 3; opacity: 0.8; }
  100% { r: 5; opacity: 1; }
}

/* Traînée propulseur */
.rocket-trail {
  animation: trailFlicker 0.8s ease-in-out infinite alternate;
}
@keyframes trailFlicker {
  0%   { opacity: 0.2; stroke-width: 1; }
  100% { opacity: 0.7; stroke-width: 2; }
}

/* Halo lumineux derrière la flèche au hover */
.theme-carousel__arrow::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.theme-carousel__arrow:hover::before {
  opacity: 1;
}

/* ── Dots indicateurs ── */
.theme-carousel__dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.theme-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 180, 216, 0.3);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.theme-carousel__dot:hover {
  border-color: var(--cyan, #00b4d8);
}
.theme-carousel__dot--active {
  background: var(--cyan, #00b4d8);
  border-color: var(--cyan, #00b4d8);
  box-shadow: 0 0 8px rgba(0, 180, 216, 0.6);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .theme-carousel { gap: 8px; padding: 18px 10px 14px; }
  .theme-carousel__arrow svg { width: 36px; height: 36px; }
  .theme-carousel__slide { padding: 8px 16px; }
  .theme-carousel__num { font-size: 0.75rem; }
  .theme-carousel__name { font-size: 0.85rem; }
}

/* ==========================================================================
   🌌 PAGE OFFRES — GRILLE CATÉGORIES AWWWARDS
   ========================================================================== */

/* ── Grille ── */
.offre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  padding: 0 var(--theme-gutter, 24px) 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.offre-card--wide {
  grid-column: span 2;
}
@media (max-width: 700px) {
  .offre-grid { grid-template-columns: 1fr; }
  .offre-card--wide { grid-column: span 1; }
}

/* ── Carte de base ── */
.offre-card {
  position: relative;
  padding: 36px 30px 30px;
  border-radius: 18px;
  background: rgba(10, 14, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: clip;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Conic gradient border glow (même principe que detail-panel) */
.offre-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--glow-angle, 0deg), transparent 40%, var(--card-glow, rgba(0, 180, 216, 0.35)) 50%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.offre-card:hover::before {
  opacity: 1;
}

/* Radial light orb */
.offre-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(400px circle at var(--glow-x, 50%) var(--glow-y, 50%), var(--card-glow, rgba(0, 180, 216, 0.06)), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.offre-card:hover::after {
  opacity: 1;
}

.offre-card:hover {
  border-color: var(--card-glow, rgba(0, 180, 216, 0.3));
  box-shadow: 0 0 40px var(--card-shadow, rgba(0, 180, 216, 0.1));
}

/* ── Couleurs par catégorie ── */
.offre-card--themes     { --card-glow: rgba(0, 180, 216, 0.35); --card-shadow: rgba(0, 180, 216, 0.12); --card-accent: #00b4d8; }
.offre-card--cle-en-main{ --card-glow: rgba(123, 47, 247, 0.35); --card-shadow: rgba(123, 47, 247, 0.12); --card-accent: #7b2ff7; }
.offre-card--vitrine    { --card-glow: rgba(0, 212, 170, 0.35); --card-shadow: rgba(0, 212, 170, 0.12); --card-accent: #00d4aa; }
.offre-card--application{ --card-glow: rgba(255, 107, 107, 0.35); --card-shadow: rgba(255, 107, 107, 0.12); --card-accent: #ff6b6b; }
.offre-card--service    { --card-glow: rgba(255, 217, 61, 0.35); --card-shadow: rgba(255, 217, 61, 0.12); --card-accent: #ffd93d; }

/* ── Icône SVG ── */
.offre-card__icon {
  margin-bottom: 18px;
  filter: drop-shadow(0 0 8px var(--card-glow, rgba(0, 180, 216, 0.3)));
  transition: filter 0.4s ease, transform 0.4s ease;
}
.offre-card:hover .offre-card__icon {
  filter: drop-shadow(0 0 18px var(--card-glow, rgba(0, 180, 216, 0.6)));
  transform: translateY(-3px) scale(1.05);
}

/* ── Numéro ── */
.offre-card__num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--card-accent, #00b4d8);
  opacity: 0.6;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* ── Titre ── */
.offre-card__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  transition: text-shadow 0.4s ease;
}
.offre-card:hover .offre-card__title {
  text-shadow: 0 0 20px var(--card-glow, rgba(0, 180, 216, 0.4));
}

/* ── Description ── */
.offre-card__desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #8ba3b5;
  margin: 0 0 16px;
}

.offre-card__note {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 18px;
}

/* ── Liste features ── */
.offre-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.offre-card__list li {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  color: #607a8a;
  letter-spacing: 0.5px;
  padding-left: 16px;
  position: relative;
}
.offre-card__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--card-accent, #00b4d8);
  font-weight: 700;
}

/* ── CTA ── */
.offre-card__cta {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 40px;
  border: 1px solid var(--card-accent, #00b4d8);
  color: var(--card-accent, #00b4d8);
  background: transparent;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.offre-card__cta:hover {
  background: var(--card-accent, #00b4d8);
  color: #0a0e1a;
  box-shadow: 0 0 24px var(--card-shadow, rgba(0, 180, 216, 0.3));
}

.offre-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.offre-card__actions--stack {
  flex-direction: column;
  align-items: stretch;
}

.offre-card__actions--stack .offre-card__cta {
  text-align: center;
}

.offre-card__cta--ghost {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.03);
}

/* ── CTA variantes couleurs ── */
.offre-card__cta--violet { --card-accent: #7b2ff7; }
.offre-card__cta--emerald { --card-accent: #00d4aa; }
.offre-card__cta--coral { --card-accent: #ff6b6b; }
.offre-card__cta--gold { --card-accent: #ffd93d; }

/* ── Glow interne au survol ── */
.offre-card__glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle at 50% -20%, var(--card-glow, rgba(0, 180, 216, 0.08)) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.offre-card:hover .offre-card__glow {
  opacity: 1;
}

/* ══════════════════════════════════
   CTA — État désactivé (Bientôt disponible)
   ══════════════════════════════════ */
.offre-card__cta--disabled,
.category-card__cta--disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
  filter: grayscale(0.5);
  border-style: dashed !important;
  position: relative;
}
.offre-card__cta--disabled::after,
.category-card__cta--disabled::after {
  content: '🔒';
  margin-left: 0.5em;
  font-size: 0.85em;
}

/* ══════════════════════════════════
   DEVICE PREVIEW — iframe mockup
   ══════════════════════════════════ */
.pg-device-preview {
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 180, 216, 0.15);
  background: #000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.pg-device-preview__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 180, 216, 0.06);
  border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}
.pg-device-preview__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b6b;
  opacity: 0.5;
}
.pg-device-preview__dot:nth-child(2) { background: #ffd93d; }
.pg-device-preview__dot:nth-child(3) { background: #00d4aa; }
.pg-device-preview__url {
  margin-left: 0.6rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: rgba(200, 210, 230, 0.35);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pg-device-preview iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .pg-device-preview iframe {
    height: 320px;
  }
}

/* ══════════════════════════════════
   FOOTER — PG Footer (sous-pages)
   ══════════════════════════════════ */
.pg-footer {
  position: relative;
  margin-top: 4rem;
  padding: 3rem 2rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 20%, rgba(4,8,20,0.95) 100%);
  border-top: 1px solid rgba(0, 180, 216, 0.12);
}
.pg-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.pg-footer__brand {
  flex: 1 1 260px;
  min-width: 220px;
}
.pg-footer__logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00b4d8;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pg-footer__logo:hover {
  color: #00d4ff;
  text-shadow: 0 0 12px rgba(0,180,216,0.4);
}
.pg-footer__tagline {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: rgba(200,210,230,0.5);
  line-height: 1.5;
  max-width: 280px;
}
.pg-footer__nav {
  flex: 2 1 500px;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.pg-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 140px;
}
.pg-footer__col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0,180,216,0.6);
  margin-bottom: 0.4rem;
}
.pg-footer__col a {
  color: rgba(200,210,230,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s ease;
}
.pg-footer__col a:hover {
  color: #00d4ff;
}
.pg-footer__address {
  font-size: 0.75rem;
  color: rgba(200,210,230,0.35);
  margin-top: 0.2rem;
  line-height: 1.4;
}
.pg-footer__bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,180,216,0.08);
  text-align: center;
}
.pg-footer__bottom p {
  font-size: 0.72rem;
  color: rgba(200,210,230,0.3);
  letter-spacing: 0.04em;
}

/* ── Footer responsive ── */
@media (max-width: 768px) {
  .pg-footer {
    padding: 2rem 1.2rem 1.2rem;
  }
  .pg-footer__inner {
    flex-direction: column;
    gap: 2rem;
  }
  .pg-footer__nav {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .pg-footer__brand {
    text-align: center;
  }
  .pg-footer__tagline {
    max-width: 100%;
  }
  .pg-footer__col {
    align-items: center;
    text-align: center;
  }
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .offre-card { padding: 28px 22px 24px; }
  .offre-card__title { font-size: 1.15rem; }
  .offre-card__icon svg { width: 42px; height: 42px; }
}

/* ==========================================================================
   🌍 GLOBE PHOTORÉALISTE — 7 COUCHES NASA
   Réutilisé sur offres.html (et toute page qui charge themes.css)
   ========================================================================== */

@keyframes rotateGlobe {
  from { background-position: 0 0; }
  to   { background-position: -200% 0; }
}
@keyframes spinR1 { to { transform: rotateX(70deg) rotateY(380deg); } }
@keyframes spinR2 { to { transform: rotateX(40deg) rotateY(420deg); } }
@keyframes spinR3 { to { transform: rotateZ(360deg) rotateX(80deg) rotateY(10deg); } }

@keyframes auraPulse {
  0%   { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes globeBreath {
  0%   { box-shadow: 0 0 60px rgba(0, 160, 255, 0.35), 0 0 120px rgba(0, 80, 200, 0.15); }
  100% { box-shadow: 0 0 80px rgba(0, 180, 255, 0.5),  0 0 160px rgba(0, 100, 220, 0.25); }
}
@keyframes cityFlicker {
  0%   { opacity: 0.5; }
  100% { opacity: 0.8; }
}
@keyframes atmosphereShimmer {
  0%   { opacity: 0.8; filter: brightness(1); }
  100% { opacity: 1;   filter: brightness(1.15); }
}

.entry-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Modificateur hero : positionné dans le header */
.entry-globe--hero {
  top: 55%;
  right: -60px;
  left: auto;
  transform: translateY(-50%);
}

.entry-globe__aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.12) 0%, rgba(0, 120, 255, 0.06) 30%, rgba(0, 60, 180, 0.02) 50%, transparent 70%);
  filter: blur(30px);
  animation: auraPulse 6s ease-in-out infinite alternate;
}
.entry-globe__aura--2 {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(100, 180, 255, 0.05) 0%, rgba(0, 100, 200, 0.02) 40%, transparent 65%);
  filter: blur(50px);
  animation: auraPulse 8s ease-in-out infinite alternate-reverse;
}

.entry-globe__wrapper {
  position: relative;
  padding: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(180, 220, 255, 0.04) 0%, rgba(3, 10, 20, 0.35) 100%);
  border: 1px solid rgba(0, 200, 255, 0.12);
  box-shadow: inset 0 0 50px rgba(0, 200, 255, 0.08), 0 0 80px rgba(0, 140, 255, 0.1), 0 0 160px rgba(0, 100, 200, 0.06);
}
.entry-globe__wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(0, 240, 255, 0.35);
  border-bottom-color: rgba(255, 0, 234, 0.2);
  opacity: 0.6;
  pointer-events: none;
  animation: spinR3 12s linear infinite;
}

.entry-globe__sphere {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: globeBreath 8s ease-in-out infinite alternate;
}

/* Couche 1 : Surface Terre */
.entry-globe__surface {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #010d1f;
  background-image: url('https://raw.githubusercontent.com/mrdoob/three.js/master/examples/textures/planets/earth_atmos_2048.jpg');
  background-repeat: repeat-x;
  background-size: 200% 100%;
  box-shadow:
    inset -80px -50px 80px rgba(0, 0, 0, 0.97),
    inset -130px -80px 120px rgba(0, 0, 0, 0.9),
    inset 30px 15px 50px rgba(200, 230, 255, 0.25),
    inset 10px 5px 20px rgba(255, 255, 255, 0.1),
    inset 0 0 30px rgba(0, 180, 255, 0.15);
  animation: rotateGlobe 60s linear infinite;
}

/* Couche 2 : City Lights */
.entry-globe__citylights {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at 70% 60%, transparent 0%, transparent 30%, rgba(255, 200, 80, 0.03) 45%, rgba(255, 180, 60, 0.06) 55%, rgba(255, 160, 40, 0.04) 65%, rgba(255, 140, 30, 0.02) 80%, transparent 100%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: cityFlicker 4s ease-in-out infinite alternate;
}

/* Couche 3 : Nuages */
.entry-globe__clouds {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background-image: url('https://raw.githubusercontent.com/mrdoob/three.js/master/examples/textures/planets/earth_clouds_1024.png');
  background-repeat: repeat-x;
  background-size: 200% 100%;
  mix-blend-mode: screen;
  opacity: 0.7;
  box-shadow: inset -80px -50px 80px rgba(0, 0, 0, 1), inset 30px 15px 60px rgba(255, 255, 255, 0.2);
  animation: rotateGlobe 80s linear infinite;
  pointer-events: none;
}

/* Couche 4 : Spéculaire */
.entry-globe__specular {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse 35% 40% at 32% 28%, rgba(255, 255, 255, 0.25) 0%, rgba(200, 230, 255, 0.12) 25%, rgba(150, 200, 255, 0.04) 50%, transparent 70%);
  pointer-events: none;
}

/* Couche 5 : Fresnel */
.entry-globe__fresnel {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 55%, rgba(80, 180, 255, 0.08) 65%, rgba(60, 160, 255, 0.15) 75%, rgba(40, 140, 255, 0.25) 85%, rgba(20, 120, 255, 0.35) 92%, rgba(0, 180, 255, 0.55) 100%);
  pointer-events: none;
}

/* Couche 6 : Atmosphère */
.entry-globe__atmosphere {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 52%, rgba(40, 140, 255, 0.0) 58%, rgba(50, 160, 255, 0.06) 65%, rgba(60, 180, 255, 0.1) 72%, rgba(70, 200, 255, 0.06) 82%, transparent 92%);
  box-shadow: inset 0 0 40px rgba(0, 150, 255, 0.08);
  pointer-events: none;
  animation: atmosphereShimmer 10s ease-in-out infinite alternate;
}

/* Couche 7 : Anneaux */
.entry-globe__rings {
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  transform-style: preserve-3d;
}
.entry-globe__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
}
.entry-globe__ring--1 {
  border-image: linear-gradient(135deg, rgba(0, 240, 255, 0.4) 0%, rgba(0, 240, 255, 0.05) 40%, rgba(0, 240, 255, 0.3) 70%, rgba(0, 240, 255, 0.05) 100%) 1;
  border-width: 1.5px;
  border-style: solid;
  filter: drop-shadow(0 0 4px rgba(0, 200, 255, 0.3));
  transform: rotateX(70deg) rotateY(20deg);
  animation: spinR1 10s linear infinite;
}
.entry-globe__ring--2 {
  border-image: linear-gradient(45deg, rgba(0, 200, 255, 0.3) 0%, rgba(0, 200, 255, 0.02) 50%, rgba(0, 200, 255, 0.25) 100%) 1;
  border-width: 1px;
  border-style: solid;
  filter: drop-shadow(0 0 3px rgba(0, 180, 255, 0.2));
  transform: rotateX(40deg) rotateY(60deg);
  animation: spinR2 15s linear infinite reverse;
}
.entry-globe__ring--3 {
  border-image: linear-gradient(90deg, rgba(255, 0, 234, 0.35) 0%, rgba(255, 0, 234, 0.03) 45%, rgba(255, 0, 234, 0.3) 80%, rgba(255, 0, 234, 0.03) 100%) 1;
  border-width: 1px;
  border-style: solid;
  filter: drop-shadow(0 0 5px rgba(255, 0, 234, 0.25));
  transform: rotateX(80deg) rotateY(10deg);
  animation: spinR3 12s linear infinite;
}

/* Responsive globe */
@media (max-width: 768px) {
  .entry-globe__sphere { width: 220px; height: 220px; }
  .entry-globe__wrapper { padding: 26px; }
  .entry-globe__rings { inset: -36px; }
  .entry-globe__aura { width: 380px; height: 380px; }
  .entry-globe__aura--2 { width: 460px; height: 460px; }
  .entry-globe--hero { right: -40px; }
  .entry-globe { opacity: 0.55; }
}
@media (max-width: 480px) {
  .entry-globe__sphere { width: 170px; height: 170px; }
  .entry-globe__wrapper { padding: 20px; }
  .entry-globe__rings { inset: -26px; }
  .entry-globe__aura { width: 280px; height: 280px; }
  .entry-globe__aura--2 { width: 340px; height: 340px; }
  .entry-globe--hero { position: relative; right: auto; top: auto; transform: none; margin: 0 auto; opacity: 0.6; }
  .entry-globe { opacity: 0.4; }
}

/* ═══════ CURSEUR SNIPER AWWWARDS (rubriques) ═══════ */
@media (pointer: fine) {
  html,
  body,
  *,
  a,
  button {
    cursor: none !important;
  }

  .png-sniper-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: normal;
    transform: translate3d(var(--cx, -100px), var(--cy, -100px), 0);
    transition: none;
  }

  .png-sniper-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.85);
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .png-sniper-wrapper.is-hovering .png-sniper-dot {
    transform: translate(-50%, -50%) scale(0.3);
    background: #00f0ff;
    box-shadow: 0 0 15px rgba(0, 240, 255, 1);
  }

  .png-sniper-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
    animation: pg-sniper-rotate 10s linear infinite;
  }

  .png-sniper-wrapper.is-hovering .png-sniper-ring {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.92);
    border-style: dashed;
    animation-play-state: paused;
  }

  .png-tick {
    position: absolute;
    background: rgba(255, 255, 255, 0.64);
  }

  .png-tick.top {
    width: 2px;
    height: 6px;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
  }

  .png-tick.bottom {
    width: 2px;
    height: 6px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
  }

  .png-tick.left {
    width: 6px;
    height: 2px;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
  }

  .png-tick.right {
    width: 6px;
    height: 2px;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
  }

  .png-sniper-wrapper.is-hovering .png-tick {
    background: #00f0ff;
    box-shadow: 0 0 8px #00f0ff;
  }

  .png-sniper-text {
    position: absolute;
    top: -24px;
    left: 16px;
    color: rgba(255, 255, 255, 0.84);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .png-sniper-wrapper.is-hovering .png-sniper-text {
    opacity: 1;
    transform: translateX(0);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.62);
  }
}

@keyframes pg-sniper-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}