

:root {
  --cta-accent: #5b9eff;
  --cta-accent-rgb: 91, 158, 255;
  --pale-accent: #8ec6ff;
  --pale-accent-rgb: 142, 198, 255;
}

.title-accent {
  color: var(--pale-accent);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

.section-title {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 0.5rem !important;
}

.section-title h2 {
  color: #ffffff !important;
  font-size: clamp(2rem, 4.6vw, 3rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.08 !important;
  margin-bottom: 0.5rem !important;
  text-align: center !important;
  width: 100% !important;
}

.section-title:has(> h2) {
  flex-direction: column;
}

.size-3 { width: 0.75rem !important; height: 0.75rem !important; }
.size-4 { width: 1rem !important;    height: 1rem !important; }
.size-5 { width: 1.25rem !important; height: 1.25rem !important; }
.size-6 { width: 1.5rem !important;  height: 1.5rem !important; }
.size-7 { width: 1.75rem !important; height: 1.75rem !important; }
.size-8 { width: 2rem !important;    height: 2rem !important; }

.btn svg:not([width]):not([height]) {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.section-subtitle {
  text-align: center !important;
  margin-bottom: 2.25rem !important;
}

.section-subtitle p {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  text-align: center !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.py-20 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

@media (max-width: 767px) {
  .py-20 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #07101f; }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.14); }
* { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.1) #07101f; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0.85rem !important;
  color: var(--cta-accent, #5b9eff);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--cta-accent, #5b9eff);
  border-radius: 1px;
  opacity: 0.85;
}

.hero-badge svg,
.hero-badge i.hero-badge-icon {
  display: none !important;
}

.hero-badge span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cta-accent, #5b9eff);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 0 12px rgba(91, 158, 255, 0.35);
}

.components > section + section {
  padding-top: 4.5rem;
}

.components > section + section:not(.feedbacks-marquee-section):not(.hero)::before {
  content: '';
  display: block;
  height: 1px;
  max-width: 60%;
  margin: 0 auto 4rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.23, 0.86, 0.39, 0.96),
    transform 0.9s cubic-bezier(0.23, 0.86, 0.39, 0.96);
  will-change: transform, opacity;
}

.scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.product-card,
.products .col,
.products .row > [class*="col-"] > a,
.products .row > [class*="col-"] > div {
  transition:
    transform 0.3s cubic-bezier(0.23, 0.86, 0.39, 0.96),
    box-shadow 0.3s ease;
}

.accordion-item,
.accordion-button {
  background-color: transparent !important;
}

.accordion-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 0.75rem !important;
  margin-bottom: 0.6rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.accordion-button {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 1.1rem 1.25rem;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-body {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.65;
  padding: 0 1.25rem 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body > .flex-wrapper > div > header.sticky-top,
header.sticky-top {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.components:not(:has(> .hero:first-child)) {
  padding-top: 110px;
}

@supports not selector(:has(*)) {
  .components { padding-top: 110px; }
  .components > .hero:first-child { margin-top: -110px; }
}

.products-section .section-title,
.features-section .section-title,
.payments-section .section-title {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.products-section .section-title h1,
.products-section .section-title h2,
.features-section .section-title h1,
.features-section .section-title h2,
.payments-section .section-title h1,
.payments-section .section-title h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

.products-section .section-subtitle,
.features-section .section-subtitle,
.payments-section .section-subtitle {
  justify-content: center;
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  text-align: center;
}

.products-section .section-subtitle p,
.features-section .section-subtitle p,
.payments-section .section-subtitle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.55;
  padding-left: 0;
  border-left: none;
  text-align: center;
}

@media (min-width: 768px) {
  .products-section .section-subtitle p,
  .features-section .section-subtitle p,
  .payments-section .section-subtitle p {
    padding-left: 0;
    border-left: none;
  }
}

.policy-page {
  position: relative;
}

.policy-page .policy-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.policy-page .policy-glow--left {
  top: 20%;
  left: -120px;
  background: radial-gradient(circle, rgba(91, 158, 255, 0.16) 0%, transparent 70%);
}

.policy-page .policy-glow--right {
  top: 60%;
  right: -120px;
  background: radial-gradient(circle, rgba(142, 198, 255, 0.1) 0%, transparent 70%);
}

.policy-page .policy-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.policy-page .policy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.policy-page .policy-eyebrow-text {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta-accent, #5b9eff);
}

.policy-page .policy-eyebrow-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cta-accent, #5b9eff);
  border-radius: 2px;
  opacity: 0.85;
}

.policy-page .policy-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

.policy-page .policy-lede {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
  max-width: 540px;
  text-align: center;
}

.policy-page .policy-card {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(15, 28, 51, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 2rem 2.25rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.policy-page .policy-body {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.7;
}

.policy-page .policy-body h1,
.policy-page .policy-body h2,
.policy-page .policy-body h3,
.policy-page .policy-body h4 {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 1.85rem 0 0.7rem;
  line-height: 1.25;
}

.policy-page .policy-body h1:first-child,
.policy-page .policy-body h2:first-child,
.policy-page .policy-body h3:first-child,
.policy-page .policy-body h4:first-child {
  margin-top: 0;
}

.policy-page .policy-body h2 { font-size: 1.35rem; }
.policy-page .policy-body h3 { font-size: 1.12rem; }
.policy-page .policy-body h4 { font-size: 1rem; }

.policy-page .policy-body p {
  margin: 0 0 1rem;
}

.policy-page .policy-body ul,
.policy-page .policy-body ol {
  padding-left: 1.4rem;
  margin: 0 0 1rem;
}

.policy-page .policy-body li {
  margin-bottom: 0.45rem;
}

.policy-page .policy-body a {
  color: var(--cta-accent, #5b9eff);
  text-decoration: none;
  border-bottom: 1px solid rgba(91, 158, 255, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.policy-page .policy-body a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.policy-page .policy-body strong,
.policy-page .policy-body b {
  color: #ffffff;
  font-weight: 700;
}

.policy-page .policy-body code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 0.85em;
  padding: 0.12em 0.4em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.policy-page .policy-body blockquote {
  margin: 1.25rem 0;
  padding: 0.75rem 1.1rem;
  border-left: 3px solid var(--cta-accent, #5b9eff);
  background: rgba(91, 158, 255, 0.05);
  border-radius: 0 8px 8px 0;
  color: rgba(255, 255, 255, 0.7);
}

.policy-page .policy-body hr {
  margin: 1.75rem 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-page .policy-empty {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  text-align: center;
  padding: 1.5rem 0;
}

.policy-page .policy-quick-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 720px) {
  .policy-page .policy-quick-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.policy-page .policy-quick {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.05rem;
  background: rgba(15, 28, 51, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.policy-page .policy-quick-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 158, 255, 0.1);
  border: 1px solid rgba(91, 158, 255, 0.2);
  color: var(--cta-accent, #5b9eff);
}

.policy-page .policy-quick-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.policy-page .policy-quick-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.policy-page .policy-quick-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.003em;
  line-height: 1.3;
}

.policy-page .policy-cta {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(91, 158, 255, 0.08), transparent 70%),
    rgba(15, 28, 51, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

@media (min-width: 720px) {
  .policy-page .policy-cta {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.policy-page .policy-cta-text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.policy-page .policy-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: 9999px;
  background: linear-gradient(180deg, var(--cta-accent, #5b9eff) 0%, #4d8bf0 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.003em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 6px 16px -4px rgba(91, 158, 255, 0.5);
  transition: transform 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.policy-page .policy-cta-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #ffffff;
}

@media (max-width: 575.98px) {
  .policy-page .policy-card { padding: 1.5rem 1.25rem; }
}
