/* Global Style -----------------------------------------------------------------------------*/

:root {
  --bg: #ffffff;
  --dark: #000000;
  --duration: 0.92s;
  --accent: #E52338;
  --accent-blue: #000000;
  --ease: cubic-bezier(.22, .98, .36, 1);
  --reveal-ease: cubic-bezier(0.25, 0.72, 0.21, 1.02);

  --headers: #1d1d1f;
  --text: #d7d7d9;
  --faded-text: #8b8b8f;
  --surface: #1A1A1C;
  --surface-deep: #1313159f;
  --border: 1px solid rgba(255, 255, 255, 0.25);

  --icon: 40px;
  --max-width: 1040px;
  --radius: 20px;
  --padding: 24px;

  --h1: clamp(2.6rem, 4vw, 3.4rem);
  --h2: clamp(2.0rem, 3vw, 2.5rem);
  --h3: clamp(1rem, 2.3vw, 1.2rem);
  --p: clamp(.90rem, 1.3vw, 1rem);

  --p-lg: clamp(.9rem, 1.6vw, .95rem);
  --p-sm: clamp(0.87rem, 1.1vw, 0.90rem);
  --p-xs: clamp(0.8rem, 0.95vw, 0.87rem);
  --p-xxs: clamp(0.75rem, 0.90vw, 0.80rem);
  --p-xxxs: clamp(0.60rem, 0.90vw, 0.65rem);
  --eyebrow: clamp(0.75rem, 1vw, 0.9rem);

  --shadow-medium: 0 15px 30px rgba(255, 51, 51, 0.2);
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  --ease: cubic-bezier(.22, .98, .36, 1);
  --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  --box-shadow-hover: 0 6px 18px rgba(0, 0, 0, 0.08);
  --box-shadow-strong: 0 12px 30px rgba(0, 0, 0, 0.10);
  --transition: 0.3s ease;

  /* HEADER & NAV — glossy translucent glass */
  --nav-bg: rgba(22, 22, 24, 0.55);
  --nav-bg-scrolled: rgba(22, 22, 24, 0.92);
  --nav-text: #f7f7f8;
  --hairline: rgba(255, 255, 255, 0.12);

  /* FOOTER */
  --footer-bg: #000000;
  --footer-text: #9c9ca1;
  --footer-title: #ffffff;
  --footer-border: rgba(255, 255, 255, 0.08);
}


/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%
}

body {
  background: var(--dark);
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;

  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* sr-only helper */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px
}



/* ===== Global Scrollbar Style ===== */

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

body::-webkit-scrollbar-track {
  background: black;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--accent);
}



/* smooth easing curve */

/* Base state */
.fade-in {
  opacity: 0;
  will-change: opacity, transform;
  transform: translateY(30px);
  /* default mobile */
  transition: opacity 0.75s var(--reveal-ease),
    transform 0.75s var(--reveal-ease);
}

/* Visible */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop override */
@media (min-width: 900px) {
  .fade-in {
    transform: translateY(55px);
    /* stronger Apple motion */
    transition: opacity 1s var(--reveal-ease),
      transform 1s var(--reveal-ease);
  }
}







/* End Global Style--------------------------------------------------------------------------*/
/*/////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////*/
.modern-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--hairline);
  z-index: 9999;
  transition: background .35s ease;
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo img {
  width: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: var(--p-xs);
  text-decoration: none;
  color: var(--nav-text);
  transition: .3s ease;
}

/* ================= TOGGLE ================== */
.theme-toggle {
  width: 55px;
  height: 25px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 2px 7px;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.theme-toggle.dark .toggle-thumb {
  transform: translateX(26px);
  background: rgb(25, 25, 25);
}

.toggle-icon {
  color: var(--nav-text);
  transition: opacity .3s ease;
}

.theme-toggle.dark .moon {
  opacity: .2;

}

.theme-toggle.dark .sun {
  opacity: 1;
}

.theme-toggle:not(.dark) .sun {

  opacity: .2;
}

.theme-toggle:not(.dark) .moon {
  opacity: 1;
}

/* ================ HAMBURGER ================= */
.hamburger {
  width: 24px;
  height: 20px;
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background: var(--nav-text);
  transition: .25s ease;
}

.hamburger span:nth-child(1) {
  top: 6px;
}

.hamburger span:nth-child(2) {
  top: 14px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  transform: rotate(-45deg);
  top: 10px;
}

/* =============== MOBILE NAV =============== */
.mobile-nav-panel {
  position: fixed;
  inset: 0;
  padding-top: 65px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: .25s ease;
  backdrop-filter: blur(18px);
  background: var(--nav-bg);
  display: flex;
  flex-direction: column;
  z-index: 9990;
}

.mobile-nav-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-panel a {
  font-size: var(--h3);
  font-weight: 600;
  padding: 12px 26px;
  text-decoration: none;
  color: var(--nav-text);
}

/* ============ RESPONSIVE FIXED LOGIC ============ */
@media (max-width: 850px) {

  /* Hide only the links, not the container */
  .nav-links>a {
    display: none;
  }

  .nav-links {
    display: flex;
    align-items: center;
  }

  .hamburger {
    display: block;
  }

  /* Move toggle left of hamburger */
  .theme-toggle {
    display: flex !important;
    position: absolute;
    right: 60px;
    top: 6px;
    z-index: 999;
  }
}

/* End Header -------------------------------------------------------------------------------*/
/*/////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////*/
/* Hero Slider ------------------------------------------------------------------------------*/

.slider {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease),
    filter var(--duration) var(--ease);
  z-index: 0;
}

.slide-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform var(--duration) var(--ease);
  will-change: transform;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 20;
}

.slide.active .slide-inner {
  transform: scale(1.04);
}

.slide:not(.active) .slide-inner {
  filter: blur(0.8px) brightness(0.9);
}

.transition-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: background var(--duration) var(--ease), backdrop-filter var(--duration) var(--ease);
  z-index: 5;
}

.slide.active .transition-overlay {
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px) saturate(120%);
}

.center-banner {
  width: min(880px, 92%);
  max-width: 920px;
  padding: 28px 34px;
  border-radius: 14px;
  z-index: 10;
  position: relative;
  text-align: left;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .18));
  border: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px) saturate(120%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}

.subheading {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
  margin-bottom: 6px;
}

.title {
  font-size: var(--h2);
  margin: 6px 0 12px;
  line-height: 1.02;
  font-weight: 700;
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.badge,
.badge1 {
  font-size: var(--p-xs);
  padding: 6px 10px;
  border-radius: 10px;
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, .04);
}

.badge {
  background: rgba(255, 255, 255, .06);
}

.badge1 {
  background: rgba(5, 235, 55, .637);
}

.desc {
  color: rgba(255, 255, 255, .9);
  max-width: 72%;
  margin: 12px 0 18px;
  font-size: var(--p);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 8px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 43, 43, .14);
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
}


#dots {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 70;
  align-items: center;
}

#dots .pill {
  width: 6px;
  height: 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 280ms var(--ease);
}

#dots .pill.active {
  height: 42px;
  background: var(--accent);
}


/* END Hero Slider --------------------------------------------------------------------------*/
/*/////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////*/
/* StreamBox Section ------------------------------------------------------------------------*/





/* --- StreamBox Hero Section --- */
.strmbx-hero-section {
  background: var(--dark);
  width: 100%;
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strmbx-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 90%;
  padding: 40px 20px;
  margin: 60px auto;
}



.content-showcase {
  padding: 100px 20px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.showcase-description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.showcase-description h2 {
  font-size: var(--h1);
  margin-bottom: 15px;
  color: var(--bg);
  margin-top: -50px;
}

.showcase-description p {
  font-size: var(--p);
  color: var(--text);
  line-height: 1.6;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.showcase-item {
  text-align: center;
  padding: 25px 15px;
  background: var(--surface-deep);
  border-radius: var(--radius);
  transition: all var(--transition);
  border: var(--border);
}

.showcase-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow-medium);
}

.showcase-icon {
  font-size: var(--h2);
  color: var(--accent);
  margin-bottom: 15px;
  transition: transform var(--transition-fast);
}

.showcase-item:hover .showcase-icon {
  transform: scale(1.15) rotate(8deg);
}

.showcase-number {
  font-size: var(--h2);
  font-weight: 900;
  color: var(--bg);
  margin-bottom: 8px;
  background: linear-gradient(45deg, var(--accent), var(--accent-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.showcase-label {
  font-size: var(--h3);
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.showcase-description-small {
  font-size: var(--p);
  color: var(--faded-text);
}




#wp_container {
  width: 100%;
  margin: auto;
}

#wp_display {
  position: relative;

  box-shadow: 0 3px 40px #111;
  border: solid 5px #333;
  border-radius: 5px;
  background: #1d1d1d;
  overflow: hidden;
}

#wp_display img {
  width: 10%;
  height: auto;
  min-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#wp_main {
  position: relative;
  max-width: 1200px;
  width: calc(100% - 350px);
  margin: auto;
  transition: .9s;
}

.wp_ld:after {
  transform: translateY(-19px);
  background: linear-gradient(180deg, transparent, rgba(19, 19, 19, 0), transparent);
  animation: ldng .95s infinite;
}

.wp_ld:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.wp_cover {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 7;
  padding-top: 9px;
}

.m_stand span {
  height: 59px;
  width: 7.9%;
  max-width: 79px;
  display: inline-block;
  background: #222;
  z-index: -1;
  position: relative;
  margin-top: -3px;
}

.m_stand_x {
  margin: -7px auto -11px;
}

.m_stand_x span {
  height: 10px;
  background: #333;
  width: 29.9%;
  max-width: 291px;
  display: inline-block;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em;
}


video {
  object-fit: cover; /* Makes video cover the container like background-image */
  width: 100%;
  height: 100%;
  display: block;
}

@media(max-width:737px) {

  #wp_main,
  #wp_mid {
    width: 97.1%;
  }
}

@media(max-width:500px) {
  .m_stand span {
    height: 35px;
  }
}










/* === Platforms, Movies and series slider === */
.mss-container {
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
  padding: 20px 0;

  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      rgba(0, 0, 0, 1) 12%,
      rgba(0, 0, 0, 1) 88%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      rgba(0, 0, 0, 1) 12%,
      rgba(0, 0, 0, 1) 88%,
      transparent 100%);
}

/* ROW WRAPPER */
.mss-wrap {
  white-space: nowrap;
  overflow-x: hidden;
  margin: 10px 0;
  cursor: grab;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.mss-wrap.dragging {
  cursor: grabbing;
}

.mss-wrap.mss-reverse {
  animation-direction: reverse;
}

@keyframes mss-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.mss-track {
  display: inline-flex;
  gap: 15px;
  pointer-events: none;
}

.mss-track img {
  pointer-events: auto;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-drag: none;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
  transition: .2s ease;
}

.mss-track img:hover {
  transform: scale(1.06);
}

/* STUDIOS — 2:1 wide */
#w1 img {
  width: 200px;
  height: 100px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .25);
}

/* MOVIES — 9:16 posters */
#w2 img {
  width: 133px;
  height: 200px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .25);
}

/* SHOWS — 16:9 banners */
#w3 img {
  width: 300px;
  height: 169px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .25);
}


/* End StreamBox Section --------------------------------------------------------------------*/
/*/////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////*/
/* Pre-Activation Section -------------------------------------------------------------------*/

.pre-activation-section {
  padding: 100px 20px;
  background: var(--dark);
  text-align: center;
}

.section-title {
  font-size: var(--h1);
  margin-bottom: 15px;
  color: var(--bg);
  line-height: 1.2;
}

.section-subtitle {
  font-size: var(--p);
  color: var(--text);
  max-width: 800px;
  margin: 50px auto 50px;
  line-height: 1.6;
}

.pre-activation-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.pre-activation-card {
  background: var(--surface-deep);
  border-radius: var(--radius);
  padding: 35px 25px;
  transition: all var(--transition);
  border: var(--border);
}

.pre-activation-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent);
  box-shadow: var(--shadow-medium);
}

.pre-activation-icon {
  font-size: var(--h1);
  color: var(--accent);
  margin-bottom: 20px;
  transition: transform var(--transition);
}

.pre-activation-card:hover .pre-activation-icon {
  transform: scale(1.15);
}

.pre-activation-title {
  font-size: var(--h3);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--bg);
}

.pre-activation-desc {
  font-size: var(--p-xs);
  color: var(--faded-text);
  line-height: 1.6;
}

/* End Pre-Activation Section ---------------------------------------------------------------*/
/*/////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////*/
/* Pricing Section --------------------------------------------------------------------------*/

.pricing-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
}

.pricing-background {
  position: absolute;
  inset: 0;
  background: url('assets/images/weapons-fire-power-dark-background-scientist-movies-and-tv-s.jpg') center/cover no-repeat;
  filter: brightness(0.35) blur(2px);
  z-index: -10;
}

.pricing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -5;
}

.wiz-section {
  z-index: 2;
  padding: 96px 24px;
  display: flex;
  justify-content: center;
}

.wiz-container {
  width: 100%;
  max-width: var(--max-width);
}

.wiz-center {
  text-align: center;
}


.plans-header {
  font-size: var(--h1);
  margin: 100px auto;
}

.icon {
  font-size: var(--icon);
  margin-bottom: 10px;
  margin-top: 40px;
  display: inline-block;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 32px;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: var(--padding);
  box-shadow: var(--box-shadow);
  transition: 0.4s ease;
  position: relative;
  height: fit-content;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
}

.pro {
  scale: calc(1.1);
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  left: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 5px 12px;
  border-radius: 14px;
  font-size: var(--p-xs);
  color: var(--bg);
  font-weight: 500;
}

.plan-price {
  font-size: var(--h2);
  font-weight: 600;
  margin: 14px 0 40px;
  text-align: center;
  color: var(--bg);
}

.plan-price span {
  font-size: var(--p);
  margin-left: 4px;
  color: var(--bg);
}

/* LEFT aligned features */
.plan-features {
  margin-top: 18px;
  margin-bottom: 30px;
  padding-left: 22px;
  color: var(--text);
  font-size: var(--p);
  text-align: left !important;
  list-style: disc;
}

.plan-features li {
  margin-bottom: 6px;
}

.plan-btn {
  width: 100%;
  margin-top: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  background: var(--bg);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-size: var(--p-sm);
  font-weight: 700;
}

.plan-btn:hover {
  opacity: .85;
  background: var(--accent);
  color: var(--bg);
}

/* End Pricing Section ----------------------------------------------------------------------*/
/*/////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////*/
/* FAQ --------------------------------------------------------------------------------------*/

/* FAQ Section */
.faq-section {
  padding: 100px 20px;
  background: var(--dark);
  max-width: 1000px;
  margin: 0 auto;
}

.faq-title {
  font-size: var(--h1);
  margin-bottom: 50px;
  text-align: center;
  color: var(--bg);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface-deep);
  border-radius: 10px;
  overflow: hidden;
  border: var(--border);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.faq-question {
  padding: 20px 25px;
  font-size: var(--p);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bg);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question i {
  color: var(--bg);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
  color: var(--text);
  font-size: var(--p-sm);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 500px;
}

/* End FAQ ----------------------------------------------------------------------------------*/
/*/////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////*/
/* Blog -------------------------------------------------------------------------------------*/

/* Blog Section */
.blog-section {
  padding: 100px 20px;
  background-color: var(--dark);
}

.blog-title {
  font-size: var(--h1);
  margin-bottom: 15px;
  text-align: center;
  color: var(--bg);
}

.blog-subtitle {
  font-size: var(--p);
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.6;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.blog-card {
  background: var(--surface-deep);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition-medium);
  border: var(--border);
}

.blog-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent);
  box-shadow: var(--shadow-medium);
}

.blog-image {
  height: 200px;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image {
  transform: scale(1.08);
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: var(--eyebrow);
}

.blog-category {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 15px;
}

.blog-date {
  color: var(--faded-text);
}

.blog-post-title {
  font-size: var(--h3);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--bg);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-post-title {
  color: var(--accent);
}

.blog-excerpt {
  color: var(--faded-text);
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: var(--p-sm);
}

.blog-read-more {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: var(--p-xs);
}

.blog-read-more:hover {
  gap: 10px;
}

.blog-explore-button {
  display: inline-block;
  background: transparent;
  color: var(--bg);
  padding: 14px 35px;
  font-size: var(--p);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition-medium);
  border: var(--border);
  margin: 0 auto;
  text-align: center;
}

.blog-explore-button:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.blog-button-container {
  text-align: center;
  margin-top: 40px;
}

/* End Blog ---------------------------------------------------------------------------------*/
/*/////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////*/
/* Footer -----------------------------------------------------------------------------------*/

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 40px 22px 30px;
  border-top: 1px solid var(--footer-border);
  font-family: inherit;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
}

/* Desktop columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-heading {
  font-size: var(--p);
  font-weight: 600;
  color: var(--footer-title);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-heading i {
  opacity: 0;
  font-size: var(--h3);
  color: var(--footer-text);
  transition: transform .25s ease;
  margin-right: 7px;
}

.footer-heading a {
  color: var(--footer-title);
  text-decoration: none;
}

.footer-group.open .footer-heading i {
  transform: rotate(-180deg);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  font-size: var(--p-xs);
  color: var(--footer-text);
  text-decoration: none;
  display: block;
  transition: color .18s ease;
}

.footer-links a:hover {
  color: var(--faded-text);
}

/* Legal area */
.footer-legal {
  border-top: 1px solid var(--footer-border);
  padding-top: 14px;
  margin-top: 25px;
  font-size: var(--p-xxs);
}

.footer-legal-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal-row p {
  margin-right: auto;
  font-size: var(--p-xxs);
}

.footer-legal-links {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.footer-legal-links a {
  color: var(--footer-text);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--footer-text);
  text-decoration: underline;
}

.footer-region {
  position: relative;
}

/* ================= LANGUAGE MENU STYLES ================= */

#langBtn {
  background: none;
  border: none;
  font-size: var(--p-xxs);
  color: var(--footer-text);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

#langBtn:hover {
  color: var(--footer-title);
}

#langBtn i {
  font-size: var(--p-xxs);
}

#langMenu {
  list-style: none;
  margin: 6px 0 0;
  padding: 6px 0;
  background: var(--surface);
  border: 1px solid var(--footer-border);
  border-radius: 6px;
  display: none;
  position: absolute;
  right: 0;
  bottom: 22px;
  width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  z-index: 99;
}

#langMenu li a {
  display: block;
  padding: 6px 10px;
  color: var(--footer-text);
  text-decoration: none;
  font-size: var(--p-xxs);
}

#langMenu li a:hover {
  background: var(--surface);
  color: var(--footer-title);
}



/* Make first column wider */
.footer-about {
  grid-column: span 2;
  color: var(--footer-text);
  font-size: var(--p-xxs);
  line-height: 1.45;
  max-width: 350px;
}

.footer-about p {
  font-size: var(--p-xs);
  color: var(--footer-text);
  margin-bottom: 8px;
  margin-top: 12px;
  font-weight: 400;
}


/* =============== MOBILE MODE =============== */
@media (max-width: 820px) {


  /* About block full width on mobile */
  .footer-about {
    grid-column: span 1;
    padding-bottom: 10px;
  }

  /* Disable collapsible arrows for about block */
  .footer-about h4,
  .footer-about p {
    pointer-events: none;
  }

  .footer {
    padding: 22px 18px 18px;
  }

  .footer-heading i {
    opacity: 1;
  }




  .footer-columns {
    grid-template-columns: 1fr;
    margin-top: 0;
    gap: 0;
  }

  .footer-group {
    border-bottom: 1px solid var(--footer-border);
    padding: 0;
    margin: 0;
  }

  .footer-heading {
    width: 100%;
    padding: 10px 0;
    line-height: 1.1;
  }


  .footer-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
    padding: 0;
    margin: 0;
  }

  .footer-group.open .footer-links {
    max-height: 160px;
    padding: 4px 0 8px;
  }

  .footer-links li {
    margin: 2px 0;
  }

  .footer-links a {
    padding: 2px 0;
    line-height: 1.2;
  }

  .footer-legal {
    margin-top: 12px;
    padding-top: 10px;
    border-top: none;
  }

  /* 🔹 Center legal block on mobile */
  .footer-legal-row {
    justify-content: center;
    text-align: center;
  }

  .footer-legal-row p {
    margin-right: 0;
    width: 100%;
  }

  .footer-legal-links {
    justify-content: center;
    width: 100%;
  }

  .footer-region {
    margin: 0 auto;
  }
}

/* End Footer -------------------------------------------------------------------------------*/
/*/////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////*/
/* cookies ----------------------------------------------------------------------------------*/




.cookie-btn {
  border-radius: 999px;
  border: var(--border);
  background: var(--dark);
  padding: 10px 20px;
  font-size: var(--p);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--bg);
  transition: 0.2s ease;
  white-space: nowrap;
}

.cookie-btn:hover {
  opacity: .85;
  color: var(--dark);
}

.cookie-btn-primary {
  background: var(--dark);
  color: var(--bg);
}

.cookie-btn-primary:hover {
  background: var(--bg);
}


/* COOKIE BANNER (used on other pages, not shown here) */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
  padding: 18px 16px 14px;
}

.cookie-banner-inner {
  pointer-events: auto;
  width: 100%;
  max-width: 960px;
  background: var(--surface);
  border-radius: 999px;
  border: var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}


.cookie-banner-text {
  flex: 1;
  min-width: 0;
}

.cookie-banner-title {
  font-size: var(--p);
  font-weight: 600;
  margin-bottom: 2px;
}

.cookie-banner-copy {
  font-size: var(--p-xs);
  color: var(--text);
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn-sm {
  padding: 7px 14px;
  font-size: var(--p-xxs);
}

.cookie-btn-outline {
  background: transparent;
}

.cookie-btn-outline:hover {
  background: var(--bg);
}

/* COOKIE PREFERENCES PANEL */
.cookie-panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.33);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 16px;
  z-index: 9999;

}

.cookie-panel-backdrop.is-open {
  display: flex;
}

.cookie-panel-backdrop.is-open {
  display: flex;
}

.cookie-panel ::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.cookie-panel ::-webkit-scrollbar-track {
  background: var(--surface-deep);
}

.cookie-panel ::-webkit-scrollbar-thumb {
  background-color: var(--faded-text);
}

.cookie-panel {
  width: 100%;
  max-width: 1000px;
  background: var(--surface-deep);
  border-radius: 32px;
  border: var(--border);
  box-shadow: var(--box-shadow-strong);
  padding: 22px 24px 20px;
  max-height: min(1000px, 85vh);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 50px;
  z-index: 9999;
}

.cookie-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--border);
  gap: 12px;
}

.cookie-panel-header-main {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cookie-panel-chip {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-panel-title {
  font-size: var(--h3);
  font-weight: 600;
  margin: 0;
}

.cookie-panel-subtitle {
  margin: 4px 0 0;
  font-size: var(--p);
  color: var(--text);
}

.cookie-panel-close-btn {
  border-radius: 999px;
  border: var(--border);
  background: transparent;
  color: var(--headers);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cookie-panel-body {
  overflow: auto;
  padding-right: 2px;
  padding-right: 15px;
  margin-right: -15px;
  padding-top: 2px;
  padding-bottom: 4px;
}

.cookie-group {
  padding: 14px 0;
  border-bottom: var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cookie-group:last-child {
  border-bottom: none;
}

.cookie-group-main {
  flex: 1;
  min-width: 0;
}

.cookie-group-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.cookie-group-title {
  font-size: var(--h3);
  font-weight: 600;
}

.cookie-group-pill {
  padding: 2px 9px;
  border-radius: 999px;
  border: var(--border);
  font-size: var(--p-xxxs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.cookie-group-desc {
  font-size: var(--p-sm);
  color: var(--text);
  margin: 4px 0 0;
}

.cookie-group-meta {
  font-size: var(--p-xxs);
  color: var(--text);
  margin-top: 4px;
}


.cookie-panel-close-btn {
  border-radius: 999px;
  border: var(--border);
  background: transparent;
  color: var(--bg);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Switch */
.cookie-switch {
  position: relative;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: var(--text);
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
  transition: background 0.18s ease-out;
}

.cookie-switch-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--bg);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s cubic-bezier(0.23, 0.85, 0.3, 1.2);
}

.cookie-switch-input {
  display: none;
}

.cookie-switch.is-on {
  background: var(--accent);
}

.cookie-switch.is-on .cookie-switch-knob {
  transform: translateX(18px);
}

.cookie-switch.is-disabled {
  opacity: 0.5;
  cursor: default;
}

/* Panel footer */
.cookie-panel-footer {
  padding-top: 10px;
  border-top: var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 620px) {
  .cookie-panel {
    border-radius: 24px;
    padding: 18px 16px 14px;
  }
}

@media (max-width: 720px) {

  .cookie-banner-inner {
    border-radius: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* End Cookies ------------------------------------------------------------------------------*/
/*/////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////*/
/* Media and responsiveness -----------------------------------------------------------------*/

@keyframes dotProgress {
  from {
    stroke-dashoffset: 100;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* mouse scroll */
.mouse-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 70;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.mouse {
  width: 34px;
  height: 54px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: wheel 2s infinite;
}

@keyframes wheel {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(10px);
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

/* responsive */


@media (max-width:1099px) {
  #dots {
    flex-direction: row;
    bottom: 30px;
    top: auto;
    right: 50%;
    transform: translateX(50%);
    gap: 10px;
  }

  #dots .pill,
  #dots .pill.active {
    width: 26px;
    height: 6px;
  }


  .mouse-scroll {
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
  }

  .center-banner {
    padding: 20px;
  }

  .desc {
    max-width: 100%;
  }


}




@media (max-width: 1300px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

@media (max-width: 768px) {

  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
}



@media (max-width: 593px) {
  .card {
    margin: auto;
    width: 300px;
  }
}


/* END Media and responsiveness -------------------------------------------------------------*/