/* ==========================================================================
   File Lockers — Cloud storage SaaS landing page
   Stylesheet map
   01. Tokens
   02. Base & typography
   03. Buttons, pills, utilities
   04. Header
   05. Hero + product console
   06. Logo strip
   07. Features
   08. How it works
   09. Why us
   10. Pricing
   11. FAQ
   12. Support CTA
   13. Footer
   14. Motion & reveal
   15. Responsive
   ========================================================================== */

/* ==========================================================================
   01. TOKENS
   ========================================================================== */
:root {
  /* brand */
  --fl-violet: #781afe;
  --fl-violet-600: #6a12e6;
  --fl-violet-700: #5a0dc4;
  --fl-violet-050: #f3ecff;
  --fl-violet-100: #e6d9ff;
  --fl-lilac: #cbb6ff;
  --fl-deep: #170a33;
  --fl-deep-2: #241048;

  /* neutrals */
  --fl-ink: #140c2e;
  --fl-slate: #635d7d;
  --fl-slate-2: #8b86a3;
  --fl-mist: #f6f4fd;
  --fl-surface: #ffffff;
  --fl-line: #e8e3f8;
  --fl-line-2: #f0edfa;

  /* data accents (used only inside product mockups) */
  --fl-mint: #12b886;
  --fl-amber: #f0a13c;

  /* type */
  --fl-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --fl-text: "Inter", "Helvetica Neue", Arial, sans-serif;
  --fl-mono: "JetBrains Mono", ui-monospace, monospace;

  /* geometry */
  --fl-r-sm: 10px;
  --fl-r-md: 16px;
  --fl-r-lg: 22px;
  --fl-r-xl: 32px;

  /* elevation */
  --fl-sh-sm: 0 2px 8px rgba(20, 12, 46, .05);
  --fl-sh-md: 0 14px 34px -18px rgba(20, 12, 46, .18);
  --fl-sh-lg: 0 34px 70px -30px rgba(23, 10, 51, .32);

  --fl-ease: cubic-bezier(.22, .8, .28, 1);
}

/* ==========================================================================
   02. BASE & TYPOGRAPHY
   ========================================================================== */
* { -webkit-tap-highlight-color: transparent; }

.fl-body {
  margin: 0;
  background: var(--fl-surface);
  color: var(--fl-slate);
  font-family: var(--fl-text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.fl-body .container { max-width: 1200px; padding-left: 24px; padding-right: 24px; }

h1, h2, h3, h4 {
  font-family: var(--fl-display);
  color: var(--fl-ink);
  font-weight: 700;
  letter-spacing: -.026em;
  line-height: 1.12;
  margin: 0;
}

p { margin: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s var(--fl-ease); }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--fl-violet);
  outline-offset: 3px;
  border-radius: 6px;
}
.fl-hero :focus-visible,
.fl-how :focus-visible,
.fl-pricing :focus-visible,
.fl-cta :focus-visible { outline-color: #fff; }

.fl-section, .section { padding: 80px 0; }
.fl-features { background: var(--fl-surface); }
.fl-why { background: var(--fl-mist); }
.fl-faq { background: var(--fl-surface); }

/* headings block */
/* .fl-head { max-width: 660px; } */
.fl-head--center { margin-inline: auto; text-align: center; }

.fl-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fl-violet);
  padding: 7px 16px;
  border: 1px solid var(--fl-line);
  border-radius: 999px;
  background: var(--fl-violet-050);
  margin-bottom: 22px;
}
.fl-eyebrow--light {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
}

.fl-h2 { font-size: clamp(30px, 3.5vw, 46px); }
.fl-h2--display { font-weight: 800; }
.fl-h3 { font-size: 21px; letter-spacing: -.02em; }

.fl-sub {
  margin-top: 18px;
  font-size: 16.5px;
  color: var(--fl-slate);
  max-width: 560px;
}
.fl-head--center .fl-sub { margin-inline: auto; }
.fl-sub--light { color: rgba(255, 255, 255, .72); }
.fl-head--light .fl-h2 { color: #fff; }

.fl-copy { color: var(--fl-slate); font-size: 15.2px; }
.fl-muted { color: var(--fl-slate-2); font-size: 12.5px; }
.fl-num { font-family: var(--fl-mono); letter-spacing: -.02em; }

.fl-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fl-violet);
  margin-bottom: 14px;
}

/* ==========================================================================
   03. BUTTONS, PILLS, UTILITIES
   ========================================================================== */
.fl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s var(--fl-ease), background-color .25s var(--fl-ease),
              color .25s var(--fl-ease), box-shadow .25s var(--fl-ease), border-color .25s var(--fl-ease);
}
.fl-btn svg { width: 18px; height: 18px; }
.fl-btn:hover { transform: translateY(-2px); }
.fl-btn--lg { height: 54px; padding: 0 30px; font-size: 15.5px; }
.fl-btn--block { display: flex; width: 100%; }

.fl-btn--primary {
  background: var(--fl-violet);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(120, 26, 254, .7);
}
.fl-btn--primary:hover { background: var(--fl-violet-600); color: #fff; }

.fl-btn--light { background: #fff; color: var(--fl-ink); box-shadow: 0 12px 28px -16px rgba(23, 10, 51, .5); }
.fl-btn--light:hover { background: #fff; color: var(--fl-violet); }

.fl-btn--dark { background: var(--fl-deep); color: #fff; }
.fl-btn--dark:hover { background: #000; color: #fff; }

.fl-btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .35); }
.fl-btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.fl-btn--ghostlight { color: #fff; border-color: rgba(255, 255, 255, .32); }
.fl-btn--ghostlight:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.fl-btn--outline { color: var(--fl-ink); border-color: var(--fl-line); background: #fff; }
.fl-btn--outline:hover { border-color: var(--fl-violet); color: var(--fl-violet); }

.fl-pill {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -.005em;
}
.fl-pill--blue { background: var(--fl-violet); color: #fff; }
.fl-pill--soft { background: var(--fl-violet-050); color: var(--fl-violet-700); }
.fl-pill--mint { background: rgba(18, 184, 134, .12); color: #0f8a66; }

.fl-chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
}

.fl-ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.fl-ico svg { width: 19px; height: 19px; }
.fl-ico--mint { background: rgba(18, 184, 134, .1); color: #0f8a66; }

/* file-type token */
.fl-ftype {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  font-family: var(--fl-mono);
  font-size: 9px;
  letter-spacing: .02em;
}
.fl-ftype--doc { background: var(--fl-violet-050); color: var(--fl-violet-700); }
.fl-ftype--fig { background: rgba(18, 184, 134, .12); color: #0f8a66; }
.fl-ftype--zip { background: rgba(240, 161, 60, .14); color: #b1701c; }

/* check list */
.fl-checks { display: grid; gap: 13px; }
.fl-checks li {
  position: relative;
  padding-left: 28px;
  font-size: 14.6px;
  color: var(--fl-slate);
}
.fl-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--fl-violet);
  border-bottom: 2px solid var(--fl-violet);
  transform: rotate(-45deg);
  border-radius: 1px;
}
.fl-checks--sm li { font-size: 13px; padding-left: 24px; }
.fl-checks--sm li::before { width: 13px; height: 7px; top: 5px; }

/* ==========================================================================
   04. HEADER
   ========================================================================== */
.fl-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: background-color .3s var(--fl-ease), box-shadow .3s var(--fl-ease), padding .3s var(--fl-ease);
}
.fl-header.is-solid {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--fl-line), 0 12px 30px -24px rgba(20, 12, 46, .4);
  padding: 12px 0;
}

.fl-nav { display: flex; align-items: center; gap: 30px; }

.fl-logo { display: inline-flex; align-items: center; gap: 10px; color: #fff; max-width: 200px;}
    .fl-header .fl-logo{
        filter: brightness(0) saturate(100%) invert(89%) sepia(83%) saturate(4160%) hue-rotate(180deg) brightness(113%) contrast(102%); transition: all 0.3s;
    }
.fl-header.is-solid .fl-logo{
filter: none;
}
.fl-logo__mark { width: 30px; height: 30px; color: currentColor; }
.fl-logo__mark svg { width: 100%; height: 100%; }
.fl-logo__key { fill: var(--fl-violet); transition: fill .3s var(--fl-ease); }
.fl-header.is-solid .fl-logo__key,
.fl-logo--dark .fl-logo__key { fill: #fff; }
.fl-logo__text {
  font-family: var(--fl-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.03em;
  color: inherit;
}
.fl-logo__text span { font-weight: 600; opacity: .72; }
.fl-header.is-solid .fl-logo { color: var(--fl-violet); }
.fl-header.is-solid .fl-logo__text { color: var(--fl-ink); }
.fl-logo--dark { color: var(--fl-violet); }
.fl-logo--dark .fl-logo__text { color: var(--fl-ink); }

.fl-menu { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.fl-menu__links { display: flex; align-items: center; gap: 28px; }
.fl-menu__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
}
.fl-menu__links a:hover { color: #fff; }
.fl-header.is-solid .fl-menu__links a { color: var(--fl-slate); }
.fl-header.is-solid .fl-menu__links a:hover { color: var(--fl-violet); }

.fl-menu__actions { display: flex; align-items: center; gap: 10px; }
.fl-header.is-solid .fl-btn--ghost { color: var(--fl-ink); border-color: var(--fl-line); }
.fl-header.is-solid .fl-btn--ghost:hover { background: var(--fl-violet-050); color: var(--fl-violet); }
.fl-header.is-solid .fl-btn--light { background: var(--fl-violet); color: #fff; }
.fl-header.is-solid .fl-btn--light:hover { background: var(--fl-violet-600); }

.fl-burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  background: transparent;
  padding: 0;
}
.fl-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--fl-ease), opacity .3s var(--fl-ease);
}
.fl-header.is-solid .fl-burger { border-color: var(--fl-line); }
.fl-header.is-solid .fl-burger span { background: var(--fl-ink); }
.fl-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.fl-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ==========================================================================
   05. HERO + PRODUCT CONSOLE
   ========================================================================== */
.fl-hero {
  position: relative;
  isolation: isolate;
  padding: 168px 0 0;
  background:
    radial-gradient(120% 80% at 50% -10%, #8b3aff 0%, rgba(139, 58, 255, 0) 60%),
    linear-gradient(180deg, var(--fl-violet) 0%, var(--fl-violet-600) 52%, #5c0fcb 100%);
  overflow: hidden;
}
.fl-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 92px 92px;
  background-position: center top;
  mask-image: radial-gradient(70% 60% at 50% 22%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 22%, #000 0%, transparent 78%);
  z-index: -2;
}
.fl-hero__glow {
  position: absolute;
  top: -240px;
  left: 50%;
  width: 900px;
  height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255, 255, 255, .3), transparent);
  z-index: -1;
  pointer-events: none;
}
.fl-hero__inner { text-align: center; position: relative; z-index: 2; }

.fl-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.fl-trust__dots { display: inline-flex; }
.fl-trust__dots i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--fl-violet-600);
  background: linear-gradient(150deg, #fff, var(--fl-lilac));
  margin-left: -7px;
}
.fl-trust__dots i:first-child { margin-left: 0; }

.fl-hero__title {
  margin: 26px auto 0;
  max-width: 900px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 68px);
  letter-spacing: -.038em;
  line-height: 1.06;
}
.fl-hero__lede {
  margin: 22px auto 0;
  max-width: 590px;
  color: rgba(255, 255, 255, .78);
  font-size: 16.5px;
}
.fl-hero__cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* white curtain the console sits on */
.fl-hero__curtain {
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: var(--fl-surface);
  border-radius: 40px 40px 0 0;
  z-index: 0;
}

.fl-stage { position: relative; z-index: 3; margin-top: 66px; padding-bottom: 60px; }
.fl-stage__row {
  display: grid;
  grid-template-columns: 0.82fr 1.25fr 0.82fr;
  gap: 18px;
  align-items: start;
}
.fl-stage__mid { display: grid; gap: 16px; }
.fl-stage__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* console cards */
.fl-card {
  background: #fff;
  border: 1px solid rgba(232, 227, 248, .9);
  border-radius: var(--fl-r-lg);
  padding: 20px;
  box-shadow: var(--fl-sh-lg);
}
.fl-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.fl-card__title { font-size: 15px; font-weight: 700; }
.fl-card__link { font-size: 12px; font-weight: 600; color: var(--fl-violet); }
.fl-card__link:hover { color: var(--fl-violet-700); }
.fl-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid var(--fl-line-2);
  font-size: 13px;
  color: var(--fl-ink);
}

.fl-card--store { margin-top: 30px; }
.fl-card--plans { margin-top: 12px; }
.fl-meters { display: grid; gap: 18px; }
.fl-meters__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 13px;
  color: var(--fl-slate);
}
.fl-meters__top b { font-family: var(--fl-mono); font-size: 11px; color: var(--fl-slate-2); font-weight: 500; }

.fl-seg { display: flex; gap: 4px; }
.fl-seg i {
  flex: 1;
  height: 9px;
  border-radius: 3px;
  background: var(--fl-line);
}
.fl-seg--blue i:nth-child(-n+7) { background: var(--fl-violet); }
.fl-seg--mint i:nth-child(-n+5) { background: var(--fl-mint); }
.fl-seg--amber i:nth-child(-n+3) { background: var(--fl-amber); }

.fl-card--transfer { padding: 16px 18px; }
.fl-transfer { display: flex; align-items: center; gap: 16px; }
.fl-transfer__time {
  font-family: var(--fl-mono);
  font-size: 21px;
  color: var(--fl-ink);
  letter-spacing: -.03em;
}
.fl-transfer__file {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  color: var(--fl-slate-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fl-transfer .fl-pill { flex: 0 0 auto; height: 32px; padding: 0 15px; }
.fl-transfer__tracks {
  display: grid;
  gap: 11px;
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--fl-line-2);
}
.fl-tt {
  display: grid;
  grid-template-columns: 64px 1fr 62px;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--fl-slate);
}
.fl-tt b { font-size: 10.5px; font-weight: 500; color: var(--fl-ink); text-align: right; }

.fl-card--search, .fl-card--secure { display: flex; flex-direction: column; }
.fl-card--search .fl-card__foot, .fl-card--secure .fl-card__foot { margin-top: auto; }
.fl-card__title--solo { display: block; margin-bottom: 14px; }
.fl-card--search .fl-searchbar { margin-bottom: 10px; }
.fl-card--secure .fl-dots { margin: 10px 0 9px; }

.fl-secure__label { margin-top: 13px; font-size: 15px; font-weight: 700; letter-spacing: -.01em; color: var(--fl-ink); }
.fl-secure__note { font-size: 11.5px; color: var(--fl-slate-2); line-height: 1.45; }

.fl-plancard__price {
  font-family: var(--fl-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.045em;
  color: var(--fl-ink);
  line-height: 1;
}
.fl-plancard__price span {
  font-family: var(--fl-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--fl-slate-2);
  margin-left: 7px;
}
.fl-plancard__meta { margin-top: 9px; font-size: 12.5px; color: var(--fl-slate-2); }

.fl-minitoggle {
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  margin: 16px 0 16px;
  border-radius: 999px;
  background: var(--fl-mist);
  border: 1px solid var(--fl-line);
}
.fl-minitoggle span {
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--fl-slate-2);
}
.fl-minitoggle span.is-on { background: #fff; color: var(--fl-ink); box-shadow: var(--fl-sh-sm); }

.fl-card--plans .fl-plansel__row { padding: 9px 13px; }

/* ==========================================================================
   06. LOGO STRIP
   ========================================================================== */
.fl-strip { background: var(--fl-surface); padding: 26px 0 78px; }
.fl-strip__label {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fl-slate-2);
  font-weight: 600;
}
.fl-strip__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 36px;
  margin-top: 22px;
}
.fl-strip__list li {
  font-family: var(--fl-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--fl-ink);
  opacity: .28;
  transition: opacity .3s var(--fl-ease);
}
.fl-strip__list li:hover { opacity: .6; }

/* ==========================================================================
   07. FEATURES
   ========================================================================== */
.fl-feat {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.fl-feat__card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  background: var(--fl-mist);
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-r-xl);
  transition: transform .35s var(--fl-ease), box-shadow .35s var(--fl-ease), border-color .35s var(--fl-ease);
}
.fl-feat__card:hover {
  transform: translateY(-4px);
  border-color: var(--fl-violet-100);
  box-shadow: var(--fl-sh-md);
}
.fl-feat__card--wide { grid-column: span 3; }
.fl-feat__card .fl-copy { margin-top: 12px; }

/* inner mockups */
.fl-mock {
  margin-top: 26px;
  background: #fff;
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-r-md);
  padding: 16px;
  box-shadow: var(--fl-sh-sm);
}
.fl-feat__card .fl-copy { flex: 1 1 auto; }
.fl-mock__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid var(--fl-line-2);
  font-size: 12px;
  color: var(--fl-slate-2);
}
.fl-mock__foot b { color: var(--fl-ink); font-size: 12.5px; }

.fl-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px;
  border-radius: 11px;
  border: 1px solid transparent;
}
.fl-row + .fl-row { margin-top: 4px; }
.fl-row.is-active { background: var(--fl-violet-050); border-color: var(--fl-violet-100); }
.fl-row__name {
  flex: 1;
  min-width: 0;
  font-size: 12.8px;
  color: var(--fl-ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fl-row__meta { font-family: var(--fl-mono); font-size: 10.5px; color: var(--fl-slate-2); }

.fl-prog + .fl-prog { margin-top: 15px; }
.fl-prog__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
  color: var(--fl-slate);
  margin-bottom: 8px;
}
.fl-prog__top b { font-family: var(--fl-mono); font-size: 11px; color: var(--fl-ink); }
.fl-track { height: 8px; border-radius: 999px; background: var(--fl-line); overflow: hidden; }
.fl-track i { display: block; height: 100%; width: var(--fl-w); border-radius: 999px; background: var(--fl-violet); }
.fl-track i.is-mint { background: var(--fl-mint); }

.fl-searchbar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--fl-violet-100);
  border-radius: 12px;
  background: var(--fl-violet-050);
  color: var(--fl-violet-700);
  margin-bottom: 12px;
}
.fl-searchbar svg { width: 16px; height: 16px; flex: 0 0 auto; }
.fl-searchbar > span { flex: 1; font-size: 12.8px; color: var(--fl-ink); display: inline-flex; align-items: center; }
.fl-caret {
  display: inline-block;
  width: 1.5px;
  height: 13px;
  margin-left: 3px;
  background: var(--fl-violet);
  animation: fl-blink 1.1s steps(1) infinite;
}
@keyframes fl-blink { 50% { opacity: 0; } }
.fl-kbd {
  font-family: var(--fl-mono);
  font-size: 9.5px;
  padding: 3px 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--fl-line);
  color: var(--fl-slate-2);
  font-weight: 500;
}
.fl-hit { padding: 7px 4px; }
.fl-hit + .fl-hit { border-top: 1px dashed var(--fl-line); }
.fl-hit__name { display: block; font-size: 12.8px; font-weight: 500; color: var(--fl-ink); }
.fl-hit__path { display: block; font-size: 11px; color: var(--fl-slate-2); }

.fl-mock--plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.fl-plansel__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--fl-line-2);
  font-size: 12.8px;
  color: var(--fl-slate);
}
.fl-plansel__row + .fl-plansel__row { margin-top: 6px; }
.fl-plansel__row b { font-family: var(--fl-mono); font-size: 12px; color: var(--fl-ink); font-weight: 500; }
.fl-plansel__row.is-on {
  background: var(--fl-violet);
  border-color: var(--fl-violet);
  color: #fff;
}
.fl-plansel__row.is-on b { color: #fff; }

.fl-slider__rail {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: var(--fl-line);
  margin: 8px 0 12px;
}
.fl-slider__rail i { display: block; height: 100%; width: var(--fl-w); border-radius: 999px; background: var(--fl-violet); }
.fl-slider__knob {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--fl-violet);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 10px -3px rgba(120, 26, 254, .6);
}
.fl-slider__axis {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--fl-slate-2);
  font-family: var(--fl-mono);
}

.fl-mock--lock { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: center; }
.fl-lock { display: flex; align-items: center; gap: 12px; }
.fl-lock__ring {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--fl-violet);
  background: var(--fl-violet-050);
  box-shadow: 0 0 0 6px rgba(120, 26, 254, .06);
}
.fl-lock__ring svg { width: 21px; height: 21px; }
.fl-lock__label { font-size: 11.5px; color: var(--fl-slate-2); margin-bottom: 7px; }
.fl-dots { display: flex; gap: 5px; }
.fl-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--fl-ink); opacity: .75; }

/* ==========================================================================
   08. HOW IT WORKS
   ========================================================================== */
.fl-how {
  position: relative;
  isolation: isolate;
  padding: 104px 0 96px;
  background: linear-gradient(180deg, var(--fl-violet-600) 0%, var(--fl-violet) 100%);
  overflow: hidden;
}
.fl-how__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000, transparent 80%);
}
.fl-how__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fl-how__top .fl-head { margin-bottom: 0; }
.fl-how__top .fl-eyebrow { margin-bottom: 18px; }

.fl-rail { position: relative; margin-top: 72px; min-height: 400px; }
.fl-rail__line {
  position: absolute;
  top: 0;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(255, 255, 255, .3);
}
.fl-rail__marker {
  position: absolute;
  top: 0;
  left: var(--fl-mx, 12.5%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 22px -6px rgba(23, 10, 51, .5);
  transition: left .45s var(--fl-ease);
  z-index: 3;
}
.fl-rail__marker::before,
.fl-rail__marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--fl-violet);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.fl-rail__marker::before { width: 12px; height: 2px; }
.fl-rail__marker::after { width: 2px; height: 12px; }

.fl-rail__items { display: grid; grid-template-columns: repeat(4, 1fr); }
.fl-step { position: relative; }

.fl-step__btn {
  display: block;
  width: 100%;
  padding: 30px 14px 0;
  background: transparent;
  border: 0;
  text-align: center;
  cursor: pointer;
  color: rgba(255, 255, 255, .6);
  transition: color .3s var(--fl-ease);
}
.fl-step__node {
  position: absolute;
  top: 0;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  transform: translate(-50%, -50%);
  transition: background-color .3s var(--fl-ease), box-shadow .3s var(--fl-ease);
}
.fl-step__no {
  display: block;
  font-family: var(--fl-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 8px;
}
.fl-step__name {
  display: block;
  font-family: var(--fl-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .74);
  transition: color .3s var(--fl-ease);
}
.fl-step__hint { 
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
 }
/* .fl-step.is-active .fl-pop{
    transform: translate(-50%, 0) scale(1.1) !important;
    z-index: 1;
    box-shadow: 0 34px 70px -30px rgba(23, 10, 51, .82);
} */
.fl-step:hover .fl-step__name { color: #fff; }
.fl-step.is-active .fl-step__name { color: #fff; font-weight: 700; }
.fl-step.is-active .fl-step__no { color: rgba(255, 255, 255, .8); }
.fl-step.is-active .fl-step__node { background: transparent; }

.fl-step.is-shown .fl-step__name { color: #fff; }
.fl-step.is-shown .fl-step__no { color: rgba(255, 255, 255, .8); }
.fl-step.is-shown .fl-step__node { background: #fff; }
.fl-step.is-shown.is-active .fl-step__node { background: transparent; }

.fl-pop {
  position: absolute;
  top: 126px;
  left: 50%;
  width: 276px;
  padding: 18px;
  background: #fff;
  border-radius: var(--fl-r-lg);
  box-shadow: var(--fl-sh-lg);
  text-align: left;
  transform: translate(-50%, 14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--fl-ease), transform .4s var(--fl-ease), visibility .4s;
}
.fl-step.is-shown .fl-pop { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.fl-rail.is-all .fl-pop { width: calc(100% - 14px); }
.fl-pop__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--fl-line-2);
}
.fl-rail { position: relative; margin-top: 72px; min-height: 522px; }

/* equal-height cards so the four footers line up once all are out */
@media (min-width: 992px) {
  .fl-pop { display: flex; flex-direction: column; min-height: 374px; }
  .fl-pop .fl-ui { margin-bottom: 4px; }
  .fl-pop__foot { margin-top: auto; }
}
.fl-pop__bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--fl-line); }
.fl-pop__bar i:first-child { background: var(--fl-violet-100); }
.fl-pop__bar span {
  margin-left: 7px;
  font-family: var(--fl-mono);
  font-size: 9.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fl-slate-2);
}

.fl-pop__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 11px 15px;
  border-radius: 12px;
  background: var(--fl-violet);
  color: rgba(255, 255, 255, .8);
  font-size: 12.5px;
}
.fl-pop__foot b { color: #fff; font-family: var(--fl-mono); font-size: 13px; font-weight: 500; }

/* --- step card UI mockups ------------------------------------------------ */
.fl-ui { display: grid; gap: 9px; }
.fl-ui__btn {
  display: block;
  padding: 10px;
  border-radius: 10px;
  background: var(--fl-violet);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  margin-top: 2px;
}
.fl-ui__or {
  position: relative;
  text-align: center;
  font-size: 10px;
  color: var(--fl-slate-2);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.fl-ui__or::before, .fl-ui__or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1px;
  background: var(--fl-line);
}
.fl-ui__or::before { left: 0; }
.fl-ui__or::after { right: 0; }

/* 01 · account form */
.fl-field {
  padding: 8px 11px;
  border: 1px solid var(--fl-line);
  border-radius: 10px;
  background: #fff;
}
.fl-field:first-child { border-color: var(--fl-violet-100); box-shadow: 0 0 0 3px rgba(120, 26, 254, .07); }
.fl-field__label { display: block; font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--fl-slate-2); }
.fl-field__value { display: flex; align-items: center; font-size: 12px; color: var(--fl-ink); margin-top: 2px; }
.fl-dots--sm { margin-top: 6px; }
.fl-dots--sm i { width: 5px; height: 5px; }
.fl-sso { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.fl-sso span {
  padding: 7px 0;
  border: 1px solid var(--fl-line);
  border-radius: 9px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--fl-slate);
}

/* 02 · plan picker */
.fl-minitoggle--sm { margin: 0 0 2px; padding: 3px; align-self: start; }
.fl-minitoggle--sm span { padding: 4px 11px; font-size: 10.5px; }
.fl-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid var(--fl-line);
  border-radius: 10px;
  font-size: 12px;
  color: var(--fl-slate);
}
.fl-opt span { flex: 1; }
.fl-opt b { font-family: var(--fl-mono); font-size: 11.5px; font-weight: 500; color: var(--fl-ink); }
.fl-radio {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1.5px solid var(--fl-line);
  background: #fff;
}
.fl-opt.is-on { border-color: var(--fl-violet); background: var(--fl-violet-050); color: var(--fl-ink); }
.fl-opt.is-on .fl-radio { border-color: var(--fl-violet); border-width: 4px; }
.fl-opt.is-on b { color: var(--fl-violet-700); }
.fl-ui__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px dashed var(--fl-line);
  font-size: 11.5px;
  color: var(--fl-slate-2);
}
.fl-ui__total b { font-family: var(--fl-mono); font-size: 13px; color: var(--fl-ink); font-weight: 500; }

/* 03 · dashboard */
.fl-dash { display: grid; grid-template-columns: 26px 1fr; gap: 9px; }
.fl-dash__rail {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 8px 0;
  border-radius: 9px;
  background: var(--fl-mist);
  justify-items: center;
}
.fl-dash__rail i { width: 12px; height: 4px; border-radius: 2px; background: var(--fl-line); }
.fl-dash__rail i.is-on { background: var(--fl-violet); }
.fl-dash__main { display: grid; gap: 8px; }
.fl-dash__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.fl-dash__tile { padding: 8px 10px; border-radius: 9px; background: var(--fl-mist); }
.fl-dash__tile span { display: block; font-size: 9.5px; color: var(--fl-slate-2); }
.fl-dash__tile b {
  font-family: var(--fl-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--fl-ink);
}
.fl-dash__chart { display: flex; align-items: flex-end; gap: 5px; height: 46px; }
.fl-dash__chart i { flex: 1; height: var(--fl-h); border-radius: 3px; background: var(--fl-violet-100); }
.fl-dash__chart i.is-peak { background: var(--fl-violet); }
.fl-dash__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border: 1px solid var(--fl-line);
  border-radius: 9px;
}
.fl-dash__row span:nth-child(2) { flex: 1; font-size: 11px; color: var(--fl-ink); }
.fl-dash__row b { font-size: 9.5px; font-weight: 600; color: var(--fl-violet-700); }

/* 04 · drop zone */
.fl-drop {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 13px 10px;
  border: 1.5px dashed var(--fl-violet-100);
  border-radius: 12px;
  background: var(--fl-violet-050);
  font-size: 11px;
  color: var(--fl-violet-700);
}
.fl-drop__icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: var(--fl-violet);
}
.fl-drop__icon svg { width: 15px; height: 15px; }
.fl-uprow { display: flex; align-items: center; gap: 9px; }
.fl-uprow__body { flex: 1; min-width: 0; }
.fl-uprow__name {
  display: block;
  font-size: 11px;
  color: var(--fl-ink);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fl-track--xs { height: 5px; }
.fl-ftype--xs { width: 24px; height: 24px; border-radius: 7px; font-size: 7.5px; }
.fl-taglist { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px; }
.fl-taglist span {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--fl-mist);
  border: 1px solid var(--fl-line);
  font-size: 10px;
  font-weight: 500;
  color: var(--fl-slate);
}

.fl-how__cta { text-align: center; margin-top: 6px; }

/* ==========================================================================
   09. WHY US
   ========================================================================== */
.fl-bento {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  grid-template-areas:
    "flex device access"
    "stat device access";
  gap: 20px;
}
.fl-tile {
  background: #fff;
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-r-xl);
  padding: 30px 28px;
  box-shadow: var(--fl-sh-sm);
}
.fl-tile .fl-copy { margin-top: 11px; }
.fl-tile--flex { grid-area: flex; }
.fl-tile--stat { grid-area: stat; }
.fl-tile--device { background: url(../../images/wcu-image.jpg) no-repeat; background-size: cover; 
      background-position: center;
    grid-area: device;
    display: flex;
    flex-direction: column;}
.fl-tile--access { grid-area: access; display: flex; flex-direction: column; }

.fl-visual--tiers { margin-top: 26px; display: grid; gap: 12px; }
.fl-tier { display: flex; align-items: center; gap: 12px; }
.fl-tier span {
  width: 47px;
  flex: 0 0 auto;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--fl-slate-2);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.fl-tier i {
  height: 32px;
  width: var(--fl-w);
  border-radius: 9px;
  background: linear-gradient(90deg, var(--fl-violet), #a25cff);
}
.fl-tier:nth-child(2) i { background: linear-gradient(90deg, rgba(120, 26, 254, .65), rgba(162, 92, 255, .5)); }
.fl-tier:nth-child(3) i { background: linear-gradient(90deg, rgba(120, 26, 254, .3), rgba(162, 92, 255, .22)); }

.fl-stat {
  font-family: var(--fl-display);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -.045em;
  color: var(--fl-ink);
  line-height: 1;
}
.fl-stat__label { margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--fl-violet); }
.fl-tile--stat .fl-copy { margin-top: 14px; }

/* device tile */
/* .fl-tile--device { padding: 28px; background: linear-gradient(170deg, #f0e8ff, #fbf9ff 55%); } */
.fl-phone {
  position: relative;
  margin: 4px auto 26px;
  padding-top: 36px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--fl-r-lg);
}
.fl-phone__word {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fl-display);
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -.05em;
  color: rgba(120, 26, 254, .16);
  white-space: nowrap;
}
.fl-phone__shell {
  position: relative;
  width: 214px;
  padding: 9px;
  border-radius: 34px;
  background: linear-gradient(160deg, #2a2144, #120a26);
  box-shadow: 0 30px 60px -24px rgba(23, 10, 51, .55);
}
.fl-phone__notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 15px;
  border-radius: 999px;
  background: #0d0620;
  z-index: 2;
}
.fl-phone__screen {
  border-radius: 27px;
  background: #fff;
  padding: 14px 12px 12px;
  min-height: 306px;
}
.fl-phone__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--fl-mono);
  font-size: 9.5px;
  color: var(--fl-slate-2);
  padding: 4px 4px 0;
}
.fl-phone__bar i { width: 22px; height: 5px; border-radius: 3px; background: var(--fl-line); }
.fl-phone__head {
  font-family: var(--fl-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fl-ink);
  letter-spacing: -.02em;
  margin: 14px 0 12px;
}
.fl-phone__file {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px;
  border-radius: 11px;
  border: 1px solid var(--fl-line-2);
  margin-bottom: 6px;
}
.fl-phone__file span:nth-child(2) {
  flex: 1;
  min-width: 0;
  font-size: 11.5px;
  color: var(--fl-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fl-phone__file b { font-family: var(--fl-mono); font-size: 9.5px; color: var(--fl-slate-2); font-weight: 500; }
.fl-phone__file .fl-ftype { width: 26px; height: 26px; border-radius: 8px; font-size: 8px; }
.fl-phone__file.is-on { border-color: var(--fl-violet-100); background: var(--fl-violet-050); }
.fl-phone__drop {
  position: relative;
  margin-top: 12px;
  padding: 16px 12px;
  border: 1.5px dashed var(--fl-violet-100);
  border-radius: 14px;
  text-align: center;
  font-size: 11px;
  color: var(--fl-violet-700);
  line-height: 1.4;
}
.fl-phone__pulse {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--fl-violet);
  box-shadow: 0 0 0 0 rgba(120, 26, 254, .35);
  animation: fl-pulse 2.6s var(--fl-ease) infinite;
}
@keyframes fl-pulse {
  0% { box-shadow: 0 0 0 0 rgba(120, 26, 254, .35); }
  70% { box-shadow: 0 0 0 16px rgba(120, 26, 254, 0); }
  100% { box-shadow: 0 0 0 0 rgba(120, 26, 254, 0); }
}

/* access tile */
.fl-visual--rings {
  position: relative;
  height: 210px;
  margin: 22px 0 4px;
  display: grid;
  place-items: center;
}
.fl-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--fl-violet-100);
  background: radial-gradient(closest-side, rgba(120, 26, 254, .06), transparent);
}
.fl-ring--1 { width: 196px; height: 196px; }
.fl-ring--2 { width: 142px; height: 142px; }
.fl-ring--3 { width: 92px; height: 92px; border-color: rgba(120, 26, 254, .35); }
.fl-ring__core {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--fl-violet);
  color: #fff;
  font-family: var(--fl-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.03em;
  box-shadow: 0 14px 30px -12px rgba(120, 26, 254, .8);
}
.fl-ring__core small { display: block; font-size: 8px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.fl-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.fl-tags li {
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--fl-line);
  background: var(--fl-mist);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--fl-slate);
}

/* ==========================================================================
   10. PRICING
   ========================================================================== */
.fl-pricing {
  position: relative;
  isolation: isolate;
  padding: 110px 0 118px;
  background: linear-gradient(180deg, #2a1152 0%, var(--fl-deep) 42%, #100722 100%);
  overflow: hidden;
}
.fl-pricing__beam {
  position: absolute;
  top: -180px;
  left: 46%;
  width: 760px;
  height: 620px;
  transform: translateX(-50%) rotate(14deg);
  background: radial-gradient(closest-side, rgba(162, 92, 255, .4), transparent 72%);
  filter: blur(10px);
  z-index: -1;
}

.fl-toggle {
  display: inline-flex;
  margin: 34px auto 0;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.fl-toggle button {
  height: 40px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .3s var(--fl-ease), color .3s var(--fl-ease);
}
.fl-toggle button span { font-family: var(--fl-mono); font-size: 11px; opacity: .8; margin-left: 5px; }
.fl-toggle button.is-on { background: #fff; color: var(--fl-ink); }

.fl-plans {
  margin-top: 52px;
}
.fl-plan {
  padding: 34px 30px;
  border-radius: var(--fl-r-xl);
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .035);
  transition: border-color .35s var(--fl-ease), background-color .35s var(--fl-ease), transform .35s var(--fl-ease);
  height: 100%;
}
.fl-plan:hover { border-color: rgba(203, 182, 255, .4); transform: translateY(-4px); }
.fl-plan__name { font-size: 18px; font-weight: 600; color: rgba(255, 255, 255, .78); }
.fl-plan__price { display: flex; align-items: baseline; gap: 10px; margin-top: 14px; }
.fl-plan__price b {
  font-family: var(--fl-display);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -.05em;
  color: #fff;
  line-height: 1;
}
.fl-plan__price span { font-size: 14px; color: rgba(255, 255, 255, .62); }
.fl-plan__note { margin-top: 8px; font-size: 15px; color: rgba(255, 255, 255, .5); }
.fl-plan .fl-checks { margin: 28px 0 32px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .1); }
.fl-plan .fl-checks li { color: rgba(255, 255, 255, .82); }
.fl-plan .fl-checks li::before { border-color: var(--fl-lilac); }

/* highlighted plan */
.fl-plan--hero {
  padding: 14px;
  background: linear-gradient(180deg, #ded0ff, #f4eeff);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: 0 40px 80px -34px rgba(0, 0, 0, .7);
}
.fl-plan__hero {
  position: relative;
  padding: 26px 24px 22px;
  border-radius: 22px;
  background: linear-gradient(150deg, var(--fl-deep-2), #150a2e);
  overflow: hidden;
}
.fl-plan__hero::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -40px;
  width: 210px;
  height: 170px;
  background: radial-gradient(closest-side, rgba(162, 92, 255, .5), transparent);
}
.fl-plan__hero .fl-plan__price { margin-top: 0; }
.fl-plan__badge {
  position: absolute;
  top: 26px;
  right: 22px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(203, 182, 255, .55);
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  z-index: 1;
}
.fl-plan__chip {
  display: inline-block;
  margin: 20px 12px 0;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(90, 13, 196, .22);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--fl-violet-700);
}
.fl-plan--hero .fl-checks {
  margin: 20px 12px 26px;
  padding: 0 0 0 0;
  border-top: 0;
}
.fl-plan--hero .fl-checks--dark li { color: #3a2560; }
.fl-plan--hero .fl-checks--dark li::before { border-color: var(--fl-violet-700); }
.fl-plan--hero .fl-btn { margin: 0 12px 12px; width: calc(100% - 24px); background: #fff; color: var(--fl-ink); }
.fl-plan--hero .fl-btn:hover { background: var(--fl-violet); color: #fff; }

.fl-pricing__foot {
  margin-top: 34px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .48);
}

/* ==========================================================================
   11. FAQ
   ========================================================================== */
.fl-faq__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; }
.fl-faq__aside { position: sticky; top: 120px; align-self: start; }
.fl-faq__aside .fl-btn { margin-top: 26px; }

.fl-accordion { border: 0; }
.fl-ac {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--fl-line);
}
.fl-ac:first-child { border-top: 1px solid var(--fl-line); }
.fl-ac__btn.accordion-button {
  padding: 26px 46px 26px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-family: var(--fl-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--fl-ink);
  transition: color .25s var(--fl-ease);
}
.fl-ac__btn.accordion-button:not(.collapsed) { color: var(--fl-violet); background: transparent; }
.fl-ac__btn.accordion-button:hover { color: var(--fl-violet); }
.fl-ac .accordion-header { position: relative; }
.fl-ac__btn.accordion-button::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  background-image: none;
  background-color: var(--fl-violet-050);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background-color .25s var(--fl-ease);
}
.fl-ac__btn.accordion-button:not(.collapsed)::after { background-color: var(--fl-violet); }

/* plus / minus glyph drawn over the circle */
.fl-ac .accordion-header::before,
.fl-ac .accordion-header::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  background: var(--fl-violet);
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
  transition: opacity .25s var(--fl-ease), background-color .25s var(--fl-ease), transform .3s var(--fl-ease);
}
.fl-ac .accordion-header::before { width: 11px; height: 2px; transform: translate(50%, -50%); }
.fl-ac .accordion-header::after { width: 2px; height: 11px; transform: translate(50%, -50%); }
.fl-ac:has(.accordion-button:not(.collapsed)) .accordion-header::before { background: #fff; }
.fl-ac:has(.accordion-button:not(.collapsed)) .accordion-header::after { opacity: 0; }

.fl-ac__body {
  padding: 0 56px 28px 0;
  font-size: 15px;
  color: var(--fl-slate);
}

/* ==========================================================================
   12. SUPPORT CTA
   ========================================================================== */
.fl-cta { padding: 0 0 110px; background: var(--fl-surface); }
.fl-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  align-items: center;
  padding: 74px 20px 74px 64px;
  border-radius: 40px;
  background: linear-gradient(120deg, #120a26 0%, #1d0f3c 52%, #2f1560 100%);
  overflow: hidden;
}
.fl-cta__copy { position: relative; z-index: 2; max-width: 520px; }
.fl-cta__copy .fl-h2 { color: #fff; }
.fl-cta__copy .fl-sub { max-width: 470px; }
.fl-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.fl-cta__note { margin-top: 20px; font-size: 12.5px; color: rgba(255, 255, 255, .45); }

.fl-cta__globe { position: relative; align-self: stretch; }
.fl-globe {
  position: absolute;
  top: 50%;
  left: 0;
  width: 480px;
  height: 480px;
  transform: translateY(-50%);
}
.fl-globe__svg { width: 100%; height: 100%; display: block; animation: fl-drift 26s linear infinite alternate; }
@keyframes fl-drift { from { transform: rotate(-4deg); } to { transform: rotate(4deg); } }

.fl-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .6);
  width: 210px;
  animation: fl-bob 7s var(--fl-ease) infinite alternate;
}
.fl-float p { font-size: 12.8px; font-weight: 600; color: var(--fl-ink); line-height: 1.3; }
.fl-float small { font-size: 10.5px; color: var(--fl-slate-2); }
.fl-float--a { top: 14%; left: 2%; }
.fl-float--b { top: 52%; left: 44%; animation-delay: -2.4s; }
.fl-float--c { top: 80%; left: 6%; animation-delay: -4.6s; }
@keyframes fl-bob { from { transform: translateY(-7px); } to { transform: translateY(7px); } }

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.fl-footer { background: var(--fl-mist); border-top: 1px solid var(--fl-line); padding: 78px 0 30px; }
.fl-footer__top { display: grid; grid-template-columns: 1fr 1.55fr; gap: 60px; }
.fl-footer__blurb { margin-top: 20px; font-size: 14.5px; color: var(--fl-slate); max-width: 300px; }
.fl-social { display: flex; gap: 10px; margin-top: 26px; }
.fl-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid var(--fl-line);
  background: #fff;
  color: var(--fl-slate);
  transition: color .25s var(--fl-ease), border-color .25s var(--fl-ease), transform .25s var(--fl-ease);
}
.fl-social a:hover { color: var(--fl-violet); border-color: var(--fl-violet-100); transform: translateY(-2px); }
.fl-social svg { width: 16px; height: 16px; }

/* .fl-footer__col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; } */
.fl-footer__col h3 {
  font-size: 14.5px;
  font-family: var(--fl-text);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fl-slate-2);
  margin-bottom: 18px;
}
.fl-footer__col li + li { margin-top: 11px; }
.fl-footer__col a, .fl-footer__col span, .fl-footer__col li { font-size: 14.2px; color: var(--fl-slate); }
.fl-footer__col a:hover { color: var(--fl-violet); }

.fl-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid var(--fl-line);
  font-size: 15px;
  color: var(--fl-slate-2);
}
.fl-footer__bar ul { display: flex; gap: 24px; }
.fl-footer__bar a:hover { color: var(--fl-violet); }


/* General Pages */

  .page-title {
    background: radial-gradient(120% 80% at 50% -10%, #8b3aff 0%, rgba(139, 58, 255, 0) 60%),
    linear-gradient(180deg, var(--fl-violet) 0%, var(--fl-violet-600) 52%, #5c0fcb 100%);
    border-bottom: 1px solid var(--bs-border-color);
    background-size: cover;
    padding: 160px 0 80px;
  }
  .page-title h1 {
    text-align: center;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--fl-mist);
  }
  .order-summary {
    padding: 27px !important;
    border-radius: 16px;
    background: var(--dark-text);
    border: 1px solid #d1d1d1;
  }
  
  .checkout_area select {
    padding: 12px;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    appearance: auto;
    width: 100%;
    border: var(--bs-border-width) solid var(--bs-border-color);
    margin-bottom: 15px;
    min-height: 50px;
  }
  .checkout_area .form-control {
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    box-shadow: none;
    outline: none;
  }
  
  .contact_info_section .contact_info_box {
    background: linear-gradient(180deg, #4f7cff22 0%, transparent 100%);
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #dee2e6;
    display: flex;
        align-items: center;
    gap: 20px;
  }
#my-widget-popup{
      top: auto !important;
    bottom: 20px !important;
}
#widget-content{
    bottom: 0px !important;
    top: auto !important;
}
.contact_info_section p{
    margin-bottom: 1rem;
} 
/* ==========================================================================
   14. MOTION & REVEAL
   ========================================================================== */
[data-fl-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--fl-ease), transform .7s var(--fl-ease);
  transition-delay: calc(var(--fl-d, 0) * 110ms);
}
[data-fl-reveal].is-in { opacity: 1; transform: none; }

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

/* ==========================================================================
   15. RESPONSIVE
   ========================================================================== */
@media (max-width: 1199.98px) {
  .fl-menu__links { gap: 20px; }
  .fl-stage__row { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .fl-card--capacity, .fl-card--summary { margin-top: 0; }
  .fl-hero__curtain { height: 320px; }
  .fl-feat__card, .fl-feat__card--wide { grid-column: span 3; }
  .fl-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "device flex"
      "device stat"
      "access access";
  }
  .fl-cta__panel { grid-template-columns: 1fr; padding: 60px 44px 0; }
  .fl-cta__globe { height: 430px; }
  .fl-globe { left: 50%; transform: translate(-50%, -50%); width: 420px; height: 420px; }
  .fl-float--a { left: -4%; }
  .fl-float--b { left: 48%; }
  .fl-float--c { left: 0; }
  .fl-faq__grid { gap: 44px; }
}

@media (max-width: 991.98px) {
  .fl-section { padding: 84px 0; }
  .fl-burger { display: block; }

  .fl-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    display: grid;
    gap: 18px;
    padding: 22px;
    background: #fff;
    border-radius: var(--fl-r-lg);
    box-shadow: var(--fl-sh-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s var(--fl-ease), transform .3s var(--fl-ease), visibility .3s;
  }
  .fl-menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .fl-menu__links { display: grid; gap: 4px; }
  .fl-menu__links a { display: block; padding: 9px 4px; font-size: 15.5px; color: var(--fl-ink); }
  .fl-menu__actions { display: grid; gap: 10px; padding-top: 14px; border-top: 1px solid var(--fl-line); }
  .fl-menu__actions .fl-btn { width: 100%; }
  .fl-menu .fl-btn--ghost { color: var(--fl-ink); border-color: var(--fl-line); }
  .fl-menu .fl-btn--light { background: var(--fl-violet); color: #fff; }

  .fl-hero { padding-top: 132px; }
  .fl-strip { padding-bottom: 60px; }
  .fl-strip__list { gap: 12px 34px; }
  .fl-strip__list li { font-size: 16px; }

  .fl-faq__grid { grid-template-columns: 1fr; }
  .fl-faq__aside { position: static; }

  /* how it works → vertical rail */
  .fl-how { padding: 84px 0; }
  .fl-how__top { flex-direction: column; text-align: center; }
  .fl-how__top .fl-chip { order: 3; }
  .fl-how__top .fl-head { order: 1; }
  .fl-rail { margin-top: 44px; min-height: 0; }
  .fl-rail__line { top: 12px; bottom: 12px; left: 22px; right: auto; width: 1px; height: auto; }
  .fl-rail__marker { display: none; }
  .fl-rail__items { grid-template-columns: 1fr; gap: 14px; }
  .fl-step__btn { display: grid; padding: 4px 0 4px 54px; text-align: left; }
  .fl-step__node { top: 24px; left: 22px; }
  /* .fl-step.is-active .fl-step__node { background: #fff; box-shadow: 0 0 0 5px rgba(255, 255, 255, .22); } */
  .fl-step.is-active .fl-step__node { box-shadow: 0 0 0 5px rgba(255, 255, 255, .22); }

  .fl-step__no { margin-bottom: 3px; }
  .fl-pop {
    position: static;
    width: auto;
    margin: 14px 0 0 54px;
    transform: none;
    display: none;
  }
  /* .fl-step.is-active .fl-pop { display: block; transform: none; } */
  .fl-step.is-shown .fl-pop { display: block; transform: none; }
  .fl-rail.is-all .fl-pop { width: auto; }
  .fl-how__cta { margin-top: 40px; }

  .fl-bento {
    grid-template-columns: 1fr;
    grid-template-areas: "device" "flex" "stat" "access";
  }
  .fl-plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .fl-footer__top { grid-template-columns: 1fr; gap: 44px; }
  .fl-footer__col { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}

@media (max-width: 767.98px) {
  .fl-body .container { padding-left: 20px; padding-right: 20px; }
  .fl-section { padding: 68px 0; }
  .fl-feat { gap: 16px; }
  .fl-feat__card, .fl-feat__card--wide { grid-column: span 6; padding: 26px 22px; }
  .fl-mock--plans, .fl-mock--lock { grid-template-columns: 1fr; gap: 18px; }
  .fl-stage { margin-top: 46px; padding-bottom: 40px; }
  .fl-stage__pair { grid-template-columns: 1fr; }
  .fl-card--person { display: none; }
  .fl-hero__cta .fl-btn { width: 100%; }
  .fl-transfer { flex-wrap: wrap; gap: 10px 14px; }
  .fl-transfer__file { order: 3; flex-basis: 100%; }
  .fl-cta__panel { padding: 46px 22px 0; border-radius: 28px; }
  .fl-cta__globe { height: 350px; }
  .fl-globe { width: 320px; height: 320px; }
  .fl-float { width: 178px; padding: 9px 11px; }
  .fl-float--a { top: 8%; left: -2%; }
  .fl-float--b { top: 50%; left: 34%; }
  .fl-float--c { top: 82%; left: 0; }
  .fl-footer__col { grid-template-columns: 1fr 1fr; }
  .fl-footer__bar { justify-content: flex-start; }
  .fl-footer__bar ul { gap: 18px; }
  .fl-ac__btn.accordion-button { font-size: 16px; padding-right: 40px; }
  .fl-ac__body { padding-right: 20px; }
}

@media (max-width: 479.98px) {
  .fl-hero__title { font-size: 33px; }
  .fl-trust { font-size: 12px; }
  .fl-stat { font-size: 38px; }
  .fl-plan { padding: 28px 22px; }
  .fl-plan__price b { font-size: 40px; }
  .fl-toggle button { padding: 0 16px; font-size: 13px; }
  .fl-phone__shell { width: 190px; }
  .fl-phone__word { font-size: 46px; }
  .fl-cta__actions .fl-btn { width: 100%; }
}

/* ==========================================================================
   16. SCROLL BEHAVIOUR
   ========================================================================== */
html { scroll-behavior: smooth; }
#features, #how, #why, #pricing, #faq, #cta { scroll-margin-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
