/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
@font-face {
  font-family: 'Rostex';
  src: url('/fonts/Rostex-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-start: #2a0a3d;
  --bg-end: #0f001a;
  --accent: #c026d3;
  --accent-hover: #e91e63;
  --text-primary: #f0e6ff;
  --text-secondary: #c9b3e6;
  --card-bg: rgba(30, 10, 50, 0.65);
  --border-glow: rgba(192, 38, 211, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-end) 100%);
  min-height: 100vh;
  line-height: 1.6;
}

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  background: rgba(15, 5, 30, 0.85);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Rostex', sans-serif;
  font-weight: normal;
  font-size: 1.8rem;
  background: linear-gradient(90deg, var(--accent), #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  text-decoration: none;
}

/* Desktop nav — centred between logo and actions */
nav {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav a {
  position: relative;
  text-decoration: none;
  margin: 0 1.1rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--accent) 50%, var(--text-secondary) 50%);
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.45s ease, transform 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #a855f7);
  border-radius: 2px;
  transition: width 0.4s ease;
}

nav a:hover {
  background-position: 0%;
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 100%;
}

/* ── Header right-side actions ── */
.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* ── Language switcher ── */
.lang-switcher {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-primary);
  background: none;
  border: 1px solid var(--border-glow);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.lang-trigger:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(192, 38, 211, 0.35);
}

.lang-trigger svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.lang-trigger .chevron {
  transition: transform 0.25s ease;
}

.lang-switcher.open .chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 148px;
  background: rgba(20, 5, 40, 0.97);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  list-style: none;
  padding: 0.4rem;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1100;
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.lang-option {
  display: flex;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: background 0.2s, color 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.lang-option:hover {
  background: rgba(192, 38, 211, 0.12);
  color: var(--text-primary);
}

.lang-option.active {
  background: rgba(192, 38, 211, 0.18);
  color: var(--accent);
  font-weight: 600;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Dim overlay behind open menu */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

/* ── Sections ── */
section {
  padding: 8rem 5% 6rem;
  text-align: center;
}

h1, h2, h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 6vw, 3.2rem);
  background: linear-gradient(90deg, #e0bbff, var(--accent), #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 0.8rem;
}

h2 {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 0 25px rgba(192, 38, 211, 0.5);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.4);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Hero ── */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 5% 4rem;
  background:
    linear-gradient(to bottom, rgba(30,5,50,0.6), rgba(15,0,26,0.75)),
    url('/cb.jpg') center / cover no-repeat;
}

#home p {
  font-size: clamp(1rem, 3vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
}

/* ── Demo: responsive 16:9 wrapper ── */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* ── Profit cards carousel ── */
.carousel-outer {
  overflow: hidden;
  position: relative;
  max-width: 1100px;
  margin: 3rem auto 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  animation: carousel-scroll 28s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.carousel-track img {
  height: 420px;
  width: auto;
  border-radius: 14px;
  border: 1px solid var(--border-glow);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  flex-shrink: 0;
  display: block;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.carousel-track img:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 16px 48px rgba(192, 38, 211, 0.45);
}

/* ── Pricing features table ── */
.features-table {
  width: 100%;
  max-width: 860px;
  margin: 2rem auto 0;
  border-collapse: separate;
  border-spacing: 0 0.55rem;
  text-align: left;
}

.features-table thead th {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent);
  padding: 0 1.4rem 0.4rem;
  font-weight: 700;
}

.features-table tbody td {
  padding: 1.1rem 1.4rem;
  background: var(--card-bg);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}

.features-table tbody tr:hover td {
  background: rgba(192, 38, 211, 0.08);
  border-color: var(--border-glow);
}

.features-table tbody td:first-child {
  border-left: 1px solid transparent;
  border-radius: 12px 0 0 12px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  width: 200px;
}

.features-table tbody tr:hover td:first-child {
  border-left-color: var(--border-glow);
}

.features-table tbody td:last-child {
  border-right: 1px solid transparent;
  border-radius: 0 12px 12px 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.features-table tbody tr:hover td:last-child {
  border-right-color: var(--border-glow);
}

.features-table .tag-list {
  list-style: none;
  margin: 0.45rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.features-table .tag-list li {
  background: rgba(192, 38, 211, 0.15);
  border: 1px solid rgba(192, 38, 211, 0.3);
  border-radius: 50px;
  padding: 0.2rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text-primary);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .features-table,
  .features-table tbody,
  .features-table thead,
  .features-table tr,
  .features-table td,
  .features-table th {
    display: block;
    width: 100%;
  }

  .features-table thead {
    display: none;
  }

  .features-table tbody td:first-child {
    border-radius: 12px 12px 0 0;
    border-left: 1px solid transparent;
    border-top: 1px solid transparent;
    padding-bottom: 0.4rem;
    width: 100%;
    white-space: normal;
  }

  .features-table tbody tr:hover td:first-child {
    border-color: var(--border-glow);
    border-bottom-color: transparent;
  }

  .features-table tbody td:last-child {
    border-radius: 0 0 12px 12px;
    border-top: none;
    padding-top: 0.4rem;
    border-right: 1px solid transparent;
  }
}

/* ── Contact Form ── */
.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  display: grid;
  grid-gap: 1.2rem;
  gap: 1.2rem;
}

input, textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid #6b4e9b;
  border-radius: 10px;
  background: rgba(40,20,70,0.5);
  color: white;
  font-size: 1rem;
  width: 100%;
}

input::placeholder, textarea::placeholder {
  color: #b39ddb;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 2.5rem 5%;
  color: var(--text-secondary);
  border-top: 1px solid #4a2c6e;
}

.footer-terms-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(201,179,230,0.3);
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}

.footer-terms-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── Mobile: ≤ 768px ── */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header-actions {
    gap: 0;
  }

  .lang-trigger {
    font-size: 0.8rem;
    padding: 0.45rem 0.8rem;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(75vw, 280px);
    background: rgba(15, 5, 30, 0.97);
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid var(--border-glow);
    z-index: 1000;
  }

  nav.open {
    transform: translateX(0);
  }

  .nav-overlay.open {
    display: block;
  }

  nav a {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--text-primary);
    color: var(--text-primary);
    transform: none !important;
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0;
    text-transform: none;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(192, 38, 211, 0.15);
    width: 100%;
  }

  nav a::after {
    display: none;
  }

  nav a:last-child {
    border-bottom: none;
  }

  section {
    padding: 5rem 5% 4rem;
  }

  #home {
    padding: 5rem 5% 3rem;
  }
}

/* ── Small phones: ≤ 480px ── */
@media (max-width: 480px) {
  header {
    padding: 0.85rem 4%;
  }

  .logo {
    font-size: 1.35rem;
  }

  section {
    padding: 4.5rem 4% 3rem;
  }

  #home {
    padding: 4.5rem 4% 2.5rem;
  }
}

/* ── Terms pages ── */
.terms-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 8rem 5% 5rem;
}

.terms-page h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  background: linear-gradient(90deg, #e0bbff, var(--accent), #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.terms-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.terms-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding: 1.2rem 1.5rem;
  background: var(--card-bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.terms-section {
  margin-bottom: 1.2rem;
  background: var(--card-bg);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.terms-section:hover {
  border-color: var(--border-glow);
}

.terms-section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.2rem 1.5rem 0.8rem;
}

.terms-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(192, 38, 211, 0.12);
  border: 1px solid rgba(192, 38, 211, 0.3);
  border-radius: 50px;
  padding: 0.15rem 0.65rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.terms-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.terms-section-body {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.terms-section-body p + p {
  margin-top: 0.75rem;
}

.terms-section-body ul {
  margin: 0.6rem 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.terms-section-body ul li::marker {
  color: var(--accent);
}

.terms-warning {
  margin-top: 0.8rem;
  padding: 0.8rem 1rem;
  background: rgba(192, 38, 211, 0.08);
  border: 1px solid rgba(192, 38, 211, 0.2);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.terms-closing {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  background: rgba(99, 54, 188, 0.15);
  border-left: 3px solid #a78bfa;
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem;
  color: #c4b5fd;
  line-height: 1.8;
}

.terms-closing strong {
  display: block;
  margin-top: 0.75rem;
  color: var(--text-primary);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .terms-page {
    padding: 6rem 4% 4rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.35rem;
  }
}

