/* ================================================================
   Preferred Search Hub — app.css
   Aesthetic: Soft Glassmorphism + Floating Language Chips
   Palette:   indigo-blue #5B6CFF · teal #1FB6C1 · navy #193E4A
              bg #F4F7FF · surface #FFFFFF · muted #6B7785
   Type:      Manrope (display) + Plus Jakarta Sans (body)
================================================================ */

/* ----------------------------------------------------------------
   1. Custom Properties
---------------------------------------------------------------- */
:root {
  --bg:               #F4F7FF;
  --bg-alt:           #EEF2FF;
  --surface:          #FFFFFF;
  --accent:           #5B6CFF;
  --accent-2:         #1FB6C1;
  --text:             #193E4A;
  --text-muted:       #6B7785;
  --border:           #DDE2F7;
  --chip-bg:          rgba(91, 108, 255, 0.08);
  --chip-border:      rgba(91, 108, 255, 0.22);
  --radius-card:      20px;
  --radius-pill:      100px;
  --shadow-sm:        0 2px 8px rgba(91, 108, 255, 0.10);
  --shadow-md:        0 8px 28px rgba(91, 108, 255, 0.14);
  --gradient-main:    linear-gradient(115deg, #5B6CFF 0%, #1FB6C1 100%);
}

/* ----------------------------------------------------------------
   2. Base / Reset
---------------------------------------------------------------- */
html {
  font-size: 10px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  margin-top: 0;
}

svg { display: block; }

a, button, input, textarea, select {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

button { cursor: pointer; outline: 0; }

input, textarea, select {
  width: 100%;
  padding: 10px 12px;
  outline: 0;
}

a {
  text-decoration: none;
  color: var(--accent);
}

@media (hover: hover) {
  a:hover { text-decoration: underline; }
}

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

/* ----------------------------------------------------------------
   3. Template-required selectors
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 992px;
  padding: 0 20px;
}

.title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 4.4rem;
  line-height: 1.15;
  color: var(--text);
}

.title-big {
  font-size: 5.6rem;
  font-weight: 800;
}

.title-small {
  font-size: 3.2rem;
}

.text {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Gradient text — padding-bottom prevents descender clipping */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.15em;
  display: inline-block;
}

/* ----------------------------------------------------------------
   4. Buttons
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #ffffff;
  white-space: nowrap;
  border: 0;
  line-height: 1;
  background: var(--gradient-main);
  box-shadow: 0 8px 20px rgba(91, 108, 255, 0.28);
  border-radius: var(--radius-pill);
  min-height: 4.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn_main {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 5.4rem;
  padding: 1.4rem 3.4rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  border-radius: var(--radius-pill);
  background: var(--gradient-main);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(91, 108, 255, 0.32);
  border: none;
  background-clip: padding-box;
}

.btn:focus { box-shadow: none; }
.btn:active { box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.12); }

@media (hover: hover) {
  .btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(91, 108, 255, 0.38);
  }
  .btn_main:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(91, 108, 255, 0.38);
  }
}

.btn-wrapper { margin-top: 4rem; }

/* ----------------------------------------------------------------
   5. Back to top
---------------------------------------------------------------- */
.return-to-top {
  position: fixed;
  bottom: -3rem;
  right: 2rem;
  width: 4.2rem;
  height: 4.2rem;
  background: var(--accent);
  line-height: 4.2rem;
  text-align: center;
  cursor: pointer;
  z-index: 998;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.return-to-top > i {
  position: relative;
  overflow: hidden;
  font-size: 12px;
  width: inherit;
  height: inherit;
  line-height: inherit;
  display: block;
  color: transparent;
  text-shadow: 0px 0px #ffffff, 0px 50px #ffffff;
  -webkit-transition: text-shadow 0.2s ease;
  transition: text-shadow 0.2s ease;
  z-index: 1;
}

.return-to-top > i:before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  border: solid 2px #ffffff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-top: 0;
  border-right: 0;
  top: 1.8rem;
  left: 1.6rem;
  position: absolute;
}

.return-to-top:hover {
  -webkit-transform: scale(1.07);
  transform: scale(1.07);
  box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.15);
}

.return-to-top:hover > i {
  text-shadow: 0px -50px #ffffff, 0px 0px #ffffff;
}

.return-to-top.back-top {
  bottom: 2rem;
  opacity: 1;
}

/* ----------------------------------------------------------------
   6. Animation keyframes
---------------------------------------------------------------- */
@keyframes pixFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes pixFadeUp {
  0%   { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
  100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes pixFadeUp {
  0%   { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); }
  100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@-webkit-keyframes pixFadeDown {
  0%   { opacity: 0; -webkit-transform: translateY(-20px); transform: translateY(-20px); }
  100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes pixFadeDown {
  0%   { opacity: 0; -webkit-transform: translateY(-20px); transform: translateY(-20px); }
  100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@-webkit-keyframes pixFadeLeft {
  0%   { opacity: 0; -webkit-transform: translateX(20px); transform: translateX(20px); }
  100% { opacity: 1; -webkit-transform: translateX(0); transform: translateX(0); }
}
@keyframes pixFadeLeft {
  0%   { opacity: 0; -webkit-transform: translateX(20px); transform: translateX(20px); }
  100% { opacity: 1; -webkit-transform: translateX(0); transform: translateX(0); }
}

@-webkit-keyframes pixFadeRight {
  0%   { opacity: 0; -webkit-transform: translateX(-20px); transform: translateX(-20px); }
  100% { opacity: 1; -webkit-transform: translateX(0); transform: translateX(0); }
}
@keyframes pixFadeRight {
  0%   { opacity: 0; -webkit-transform: translateX(-20px); transform: translateX(-20px); }
  100% { opacity: 1; -webkit-transform: translateX(0); transform: translateX(0); }
}

@-webkit-keyframes pixZoomIn {
  0%   { opacity: 0; -webkit-transform: scale(0.7); transform: scale(0.7); }
  100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
}
@keyframes pixZoomIn {
  0%   { opacity: 0; -webkit-transform: scale(0.7); transform: scale(0.7); }
  100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
}

@-webkit-keyframes pixBounceIn {
  0%   { -webkit-transform: scale(0.1); transform: scale(0.1); opacity: 0; }
  60%  { -webkit-transform: scale(1.1); transform: scale(1.1); opacity: 1; }
  100% { -webkit-transform: scale(1); transform: scale(1); }
}
@keyframes pixBounceIn {
  0%   { -webkit-transform: scale(0.1); transform: scale(0.1); opacity: 0; }
  60%  { -webkit-transform: scale(1.1); transform: scale(1.1); opacity: 1; }
  100% { -webkit-transform: scale(1); transform: scale(1); }
}

.pixFade      { -webkit-animation-name: pixFade;      animation-name: pixFade; }
.pixFadeUp    { -webkit-animation-name: pixFadeUp;    animation-name: pixFadeUp; }
.pixFadeDown  { -webkit-animation-name: pixFadeDown;  animation-name: pixFadeDown; }
.pixFadeLeft  { -webkit-animation-name: pixFadeLeft;  animation-name: pixFadeLeft; }
.pixFadeRight { -webkit-animation-name: pixFadeRight; animation-name: pixFadeRight; }
.pixZoomIn    { -webkit-animation-name: pixZoomIn;    animation-name: pixZoomIn; }
.pixBounceIn  { -webkit-animation-name: pixBounceIn;  animation-name: pixBounceIn; }

@keyframes float-chip {
  0%, 100% { transform: translateY(0px) rotate(-3deg); }
  50%       { transform: translateY(-10px) rotate(3deg); }
}

/* ----------------------------------------------------------------
   7. Page Loader
---------------------------------------------------------------- */
.page-loader {
  background: var(--bg);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999999;
}

.page-loader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page-loader svg { display: none; }

.blobs {
  -webkit-filter: url(#goo);
  filter: url(#goo);
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 70px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.blobs .blob-center {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  background: var(--accent);
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
  transform: scale(0.9) translate(-50%, -50%);
  -webkit-animation: blob-grow linear 3.4s infinite;
  animation: blob-grow linear 3.4s infinite;
  border-radius: 50%;
  -webkit-box-shadow: 0 -10px 40px -5px var(--accent);
  box-shadow: 0 -10px 40px -5px var(--accent);
}

.blob {
  position: absolute;
  background: var(--accent);
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-animation: blobs ease-out 3.4s infinite;
  animation: blobs ease-out 3.4s infinite;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
  transform: scale(0.9) translate(-50%, -50%);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  opacity: 0;
}

.blob:nth-child(1) { -webkit-animation-delay: 0.2s; animation-delay: 0.2s; }
.blob:nth-child(2) { -webkit-animation-delay: 0.4s; animation-delay: 0.4s; }
.blob:nth-child(3) { -webkit-animation-delay: 0.6s; animation-delay: 0.6s; }
.blob:nth-child(4) { -webkit-animation-delay: 0.8s; animation-delay: 0.8s; }
.blob:nth-child(5) { -webkit-animation-delay: 1.0s; animation-delay: 1.0s; }

@-webkit-keyframes blobs {
  0%          { opacity: 0; -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%); transform: scale(0) translate(calc(-330px - 50%), -50%); }
  1%          { opacity: 1; }
  35%, 65%    { opacity: 1; -webkit-transform: scale(0.9) translate(-50%, -50%); transform: scale(0.9) translate(-50%, -50%); }
  99%         { opacity: 1; }
  100%        { opacity: 0; -webkit-transform: scale(0) translate(calc(330px - 50%), -50%); transform: scale(0) translate(calc(330px - 50%), -50%); }
}
@keyframes blobs {
  0%          { opacity: 0; -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%); transform: scale(0) translate(calc(-330px - 50%), -50%); }
  1%          { opacity: 1; }
  35%, 65%    { opacity: 1; -webkit-transform: scale(0.9) translate(-50%, -50%); transform: scale(0.9) translate(-50%, -50%); }
  99%         { opacity: 1; }
  100%        { opacity: 0; -webkit-transform: scale(0) translate(calc(330px - 50%), -50%); transform: scale(0) translate(calc(330px - 50%), -50%); }
}

@-webkit-keyframes blob-grow {
  0%, 39%     { -webkit-transform: scale(0) translate(-50%, -50%); transform: scale(0) translate(-50%, -50%); }
  40%, 42%    { -webkit-transform: scale(1, 0.9) translate(-50%, -50%); transform: scale(1, 0.9) translate(-50%, -50%); }
  43%, 44%    { -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%); transform: scale(1.2, 1.1) translate(-50%, -50%); }
  52%         { -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%); transform: scale(1.5, 1.4) translate(-50%, -50%); }
  58%         { -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%); transform: scale(1.8, 1.7) translate(-50%, -50%); }
  68%, 70%    { -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%); transform: scale(1.7, 1.5) translate(-50%, -50%); }
  80%, 81%    { -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%); transform: scale(1.5, 1.4) translate(-50%, -50%); }
  84%, 85%    { -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%); transform: scale(1.3, 1.2) translate(-50%, -50%); }
  90%, 91%    { -webkit-transform: scale(1, 0.9) translate(-50%, -50%); transform: scale(1, 0.9) translate(-50%, -50%); }
  92%, 100%   { -webkit-transform: scale(0) translate(-50%, -50%); transform: scale(0) translate(-50%, -50%); }
}
@keyframes blob-grow {
  0%, 39%     { -webkit-transform: scale(0) translate(-50%, -50%); transform: scale(0) translate(-50%, -50%); }
  40%, 42%    { -webkit-transform: scale(1, 0.9) translate(-50%, -50%); transform: scale(1, 0.9) translate(-50%, -50%); }
  43%, 44%    { -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%); transform: scale(1.2, 1.1) translate(-50%, -50%); }
  52%         { -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%); transform: scale(1.5, 1.4) translate(-50%, -50%); }
  58%         { -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%); transform: scale(1.8, 1.7) translate(-50%, -50%); }
  68%, 70%    { -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%); transform: scale(1.7, 1.5) translate(-50%, -50%); }
  80%, 81%    { -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%); transform: scale(1.5, 1.4) translate(-50%, -50%); }
  84%, 85%    { -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%); transform: scale(1.3, 1.2) translate(-50%, -50%); }
  90%, 91%    { -webkit-transform: scale(1, 0.9) translate(-50%, -50%); transform: scale(1, 0.9) translate(-50%, -50%); }
  92%, 100%   { -webkit-transform: scale(0) translate(-50%, -50%); transform: scale(0) translate(-50%, -50%); }
}

/* ----------------------------------------------------------------
   8. Header
---------------------------------------------------------------- */
.site-header {
  background: transparent;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 1.2rem 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-top: 24px;
}

.header-container {
  max-width: 1200px;
  padding: 0 40px;
}

.site-header .inverse-logo,
.site-header.header-light .inverse-logo { display: none !important; }

.site-header.pix-header-fixed.header-light .sticky-logo { display: inline-block !important; }

.site-logo { max-width: 200px; }

.site-header .header-inner {
  position: relative;
  padding: 16px 28px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 56px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header .header-inner .site-logo a { display: block; }
.site-header .header-inner .site-logo a .sticky-logo { display: none; }

.site-header .header-inner .site-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.site-header .header-inner .site-nav .menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
}

.site-header .header-inner .site-nav .menu-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.site-header .site-mobile-logo { display: none; }

.site-header .site-main-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.site-header .site-main-menu li {
  position: relative;
  padding: 1rem 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.site-header .site-main-menu li:last-child { margin-right: 0; padding: 0; }

.site-header .site-main-menu li > a {
  margin: 0 1.4rem;
  display: inline-block;
  padding: 0;
  color: var(--text);
  font-weight: 500;
  font-size: 1.5rem;
  -webkit-transition: 0.2s ease;
  transition: 0.3s ease;
}

.site-header .site-main-menu li > a.active { color: var(--accent); }

@media (hover: hover) {
  .site-header .site-main-menu li > a:hover {
    color: var(--accent);
    text-decoration: none;
  }
}

.site-header .toggle-menu .bar { background: var(--accent); }

.site-header .header-inner .site-nav {
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.logo-sticky { display: none; }

.pix-header-fixed {
  padding: 1.2rem 0;
  z-index: 1000;
  position: sticky;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0px 3px 20px rgba(91, 108, 255, 0.12);
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.pix-header-fixed .site-logo .main-logo { display: none; }
.pix-header-fixed .site-logo .sticky-logo { display: block; }

.mask-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  top: 0;
  left: 0;
}

.close-menu { display: none; }
.hidden { display: none; }

/* ----------------------------------------------------------------
   9. Signature ornament: Language chips
---------------------------------------------------------------- */
.lang-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1.2em;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  border-radius: 100px;
  color: var(--accent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.lang-chip--sm {
  font-size: 1rem;
  padding: 0.3em 0.7em;
}

/* Floating background chips in hero */
.lang-chips-bg {
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 32px;
  right: 32px;
  pointer-events: none;
  z-index: 0;
}

.lang-chips-bg .lang-chip {
  position: absolute;
  animation: float-chip 5s ease-in-out infinite;
}

/* ---- Default: small/mid laptop (1280-1439) ----
   Popup is near the right edge of the frame, so right-side chips sit
   above and below it (corners) to avoid hiding behind it. */

/* Left side */
.lang-chip--en  { top: 10%; left: 3%;  animation-delay: 0s;    animation-duration: 6s; }
.lang-chip--ja  { top: 48%; left: 2%;  animation-delay: 1.2s;  animation-duration: 7.2s; }
.lang-chip--ar  { top: 80%; left: 5%;  animation-delay: 1.6s;  animation-duration: 7s; }

/* Top & bottom middle */
.lang-chip--es  { top: 6%;  left: 38%; animation-delay: 2.2s;  animation-duration: 6.4s; }
.lang-chip--it  { top: 88%; left: 50%; animation-delay: 0.6s;  animation-duration: 5.4s; }

/* Between text and popup (middle gap) */
.lang-chip--zh  { top: 50%; left: 52%; animation-delay: 3s;    animation-duration: 6s; }

/* Right side (above/below popup) */
.lang-chip--fr  { top: 4%;  right: 6%; animation-delay: 0.8s;  animation-duration: 5.5s; }
.lang-chip--de  { top: 92%; right: 8%; animation-delay: 0.4s;  animation-duration: 5.8s; }

/* ---- Wider laptops / desktops (≥1440) ----
   Popup has comfortable margin from right edge, so right-side chips
   can sit beside it for a more balanced "orbit" composition. */
@media (min-width: 1440px) {
  .lang-chip--fr { top: 14%; right: 3%; }
  .lang-chip--de { top: 84%; right: 4%; }
  .lang-chip--it { top: 50%; left: auto; right: 1%; }
}

/* ---- Wide desktops (≥1700) ----
   Even more space, push edge chips out further and tighten middle. */
@media (min-width: 1700px) {
  .lang-chip--en { top: 14%; left: 6%; }
  .lang-chip--ja { top: 50%; left: 3%; }
  .lang-chip--ar { top: 84%; left: 7%; }
  .lang-chip--fr { top: 14%; right: 6%; }
  .lang-chip--de { top: 84%; right: 7%; }
  .lang-chip--it { top: 50%; right: 3%; }
  .lang-chip--es { top: 8%;  left: 42%; }
  .lang-chip--zh { top: 50%; left: 52%; }
}

/* ----------------------------------------------------------------
   10. Main background panel
---------------------------------------------------------------- */
.main-bg {
  position: absolute;
  top: 20px;
  left: 32px;
  right: 32px;
  height: 780px;
  background: linear-gradient(160deg, #ECF0FF 0%, #F0FBFC 60%, #E8F9FF 100%);
  border-radius: 24px;
  z-index: -1;
}

.section-404 .main-bg,
.removed-section .main-bg {
  background-image: url('../images/404-page/404-bg.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

header:has(.pix-header-fixed) + section .main-bg { top: 0; }

/* ----------------------------------------------------------------
   11. Fullscreen / Hero
---------------------------------------------------------------- */
.fullscreen {
  padding: 4rem 0 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

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

/* Two-column split layout */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(4rem, 6vw, 9rem);
  text-align: left;
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2.4rem 6rem;
  box-sizing: border-box;
}

/* Wider desktops — let the layout spread for visual balance */
@media (min-width: 1440px) { .hero-split { max-width: 1180px; } }
@media (min-width: 1700px) { .hero-split { max-width: 1280px; } }

.hero-split__text {
  flex: 1 1 0;
  min-width: 0;
}

.hero-split__popup {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(91, 108, 255, 0.22);
}

.hero-split__popup img {
  display: block;
  border-radius: 20px;
  width: 320px;
  height: auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.4rem;
  margin-bottom: 2rem;
}

.hero-title {
  max-width: 480px;
  margin: 0 0 1.6rem;
  font-size: 4.4rem;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 400px;
  margin: 0 0 2.8rem;
  font-size: 1.7rem;
  color: var(--text-muted);
}

.fullscreen__btn--wrapper { margin-bottom: 0; }
.fullscreen__btn--wrapper .btn_main { min-width: 220px; }

/* ----------------------------------------------------------------
   12. How it works section
---------------------------------------------------------------- */
.hiw-section {
  padding: 8rem 0 8rem;
  position: relative;
}

.hiw-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(31, 182, 193, 0.08);
  border: 1px solid rgba(31, 182, 193, 0.22);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.4rem;
  margin-bottom: 1.6rem;
}

.hiw-section .title { margin-bottom: 1.6rem; }

.hiw-intro {
  max-width: 500px;
  margin: 0 auto 5.6rem;
}

/* Step cards */
.hiw-steps { margin-bottom: 6rem; }

.step-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 5.6rem 2.4rem 2.8rem;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.step-card__chips {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
}

.step-card__number {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1.6rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.15em;
}

.step-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, rgba(91,108,255,0.10) 0%, rgba(31,182,193,0.10) 100%);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.step-card__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.step-card__text {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Before/After comparison */
.hiw-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hiw-comparison__img {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  max-width: 420px;
  width: 100%;
}

.hiw-comparison__label {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}

.hiw-comparison__label--before {
  background: rgba(107, 119, 133, 0.12);
  color: var(--text-muted);
}

.hiw-comparison__label--after {
  background: rgba(31, 182, 193, 0.12);
  color: var(--accent-2);
}

.hiw-comparison__arrow {
  font-size: 2.4rem;
  color: var(--accent);
  font-weight: 700;
}

/* ----------------------------------------------------------------
   13. Features section
---------------------------------------------------------------- */
.features-section {
  padding: 7rem 0 8rem;
  background: var(--surface);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--surface) 100%);
  z-index: 0;
}

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

.features-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.4rem;
  margin-bottom: 1.6rem;
}

.features-section .title { margin-bottom: 1.6rem; }

.features-intro {
  max-width: 520px;
  margin: 0 auto 5.6rem;
}

.features-grid { gap: 0; }
.features-grid [class*="col-"] { padding: 12px; }

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 2.8rem 2.4rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

@media (hover: hover) {
  .feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(91,108,255,0.10) 0%, rgba(31,182,193,0.10) 100%);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.feature-card__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.feature-card__text {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ----------------------------------------------------------------
   14. Bottom CTA
---------------------------------------------------------------- */
.bottom-cta {
  padding: 9rem 0 10rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.bottom-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bottom-cta__bg .lang-chip { position: absolute; }
.lang-chip--cta.lang-chip--en  { top: 15%; left: 8%;   animation: float-chip 6s ease-in-out infinite; }
.lang-chip--cta.lang-chip--fr  { top: 60%; left: 6%;   animation: float-chip 7s ease-in-out 0.5s infinite; }
.lang-chip--cta.lang-chip--ar  { top: 25%; right: 7%;  animation: float-chip 5.5s ease-in-out 1s infinite; }
.lang-chip--cta.lang-chip--es  { top: 70%; right: 10%; animation: float-chip 6.5s ease-in-out 1.5s infinite; }
.lang-chip--cta.lang-chip--de  { top: 42%; left: 3%;   animation: float-chip 7.5s ease-in-out 2s infinite; }

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

.bottom-cta__title {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.bottom-cta__sub {
  max-width: 440px;
  margin: 0 auto 4rem;
  font-size: 1.7rem;
}

/* ----------------------------------------------------------------
   15. Inner pages — shared
---------------------------------------------------------------- */
.inner-page {
  min-height: calc(80vh - 70px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 5rem 0;
  position: relative;
}

.contact-section {
  padding: 2.4rem 0 20rem;
}

.contact-section__container.container {
  max-width: 960px;
  padding: 0 40px;
}

.contact-section__container .title {
  margin-bottom: 60px;
}

.contact-card {
  margin: 0 auto;
  padding: 3.2rem;
  height: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-radius: 2.4rem;
}

.contact-card__text {
  margin-bottom: 1.6rem;
  font-size: 1.5rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: var(--text-muted);
}

.contact-card__subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text);
}

.uninstall-section { padding: 7rem 0 13rem; }
.uninstall-section .title { margin-bottom: 5.2rem; }

.removed-section { padding: 2.4rem 0 11rem; }
.removed-section .title { margin-bottom: 16px; }

.section-404 { padding: 2.4rem 0 11rem; }
.section-404 .text {
  max-width: 660px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.thanks-page .title { margin-bottom: 16px; }
.thanks-page .text {
  max-width: 756px;
  margin: 0 auto 10px;
}

/* ----------------------------------------------------------------
   16. Terms / Privacy
---------------------------------------------------------------- */
.terms-section { padding: 6rem 0; }
.terms-section .title { margin-bottom: 5rem; }

.terms-privacy h2,
.terms-privacy h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: var(--text);
}

.terms-privacy h2 { font-size: 2.4rem; }
.terms-privacy h3 { font-size: 2rem; }

.terms-privacy p,
.terms-privacy table,
.terms-privacy ul,
.terms-privacy ol {
  margin-bottom: 2.4rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--text);
}

.terms-privacy a { color: var(--accent); }
.terms-privacy li { margin-bottom: 0.8rem; }

th { font-weight: 700; }

/* ----------------------------------------------------------------
   17. Footer
---------------------------------------------------------------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer .container { max-width: 1200px; }

.footer-content { padding: 4.8rem 0; }

.footer-link {
  color: var(--text-muted);
  display: block;
  line-height: 1.5;
  font-weight: 400;
  font-size: 1.5rem;
}

.footer__title {
  color: var(--text-muted);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav-wrapper {
  display: flex;
  gap: 64px;
}

.footer-link:hover {
  text-decoration: underline;
  color: var(--text);
}

.footer-copyright {
  padding: 2.4rem 2rem 4rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-copyright p {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text-muted);
}
