/* ==========================================================================
   Files Vaults — Cloud Storage Platform
   Author: Design & Front-end
   --------------------------------------------------------------------------
   00. Design tokens
   01. Base & typography
   02. Reusable components
   03. Header / navigation
   04. Hero
   05. Features (bento)
   06. How it works
   07. Why us
   08. Pricing
   09. FAQ
   10. Support CTA
   11. Footer
   12. Motion & reveal
   13. Responsive
   ========================================================================== */


/* ==========================================================================
   00. Design tokens
   ========================================================================== */
:root {
  /* Brand */
  --fv-blue: #2f6bff;
  --fv-blue-700: #1c4ed8;
  --fv-blue-600: #2559ea;
  --fv-blue-200: #b9cdff;
  --fv-blue-100: #dfe8ff;
  --fv-blue-050: #f0f4ff;

  /* Ink & neutrals */
  --fv-ink: #0b1020;
  --fv-ink-800: #151c30;
  --fv-ink-700: #232c44;
  --fv-body: #576076;
  --fv-muted: #8d96aa;
  --fv-faint: #b6bdcc;

  /* Surfaces */
  --fv-white: #ffffff;
  --fv-surface: #f6f7f9;
  --fv-surface-2: #eef0f4;
  --fv-line: #e5e8ef;
  --fv-line-soft: #eef0f5;

  /* Accents (used sparingly) */
  --fv-cyan: #16b9c9;
  --fv-violet: #6d5cf0;
  --fv-amber: #f0a93c;

  /* Type */
  --fv-font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --fv-font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --fv-font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --fv-font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  /* Radii */
  --fv-r-sm: 10px;
  --fv-r-md: 16px;
  --fv-r-lg: 22px;
  --fv-r-xl: 28px;
  --fv-r-pill: 999px;

  /* Shadows */
  --fv-shadow-xs: 0 1px 2px rgba(11, 16, 32, .05);
  --fv-shadow-sm: 0 6px 18px -8px rgba(11, 16, 32, .12);
  --fv-shadow-md: 0 18px 40px -20px rgba(11, 16, 32, .18);
  --fv-shadow-lg: 0 40px 80px -40px rgba(11, 16, 32, .28);
  --fv-shadow-blue: 0 18px 40px -18px rgba(47, 107, 255, .45);

  /* Layout */
  --fv-container: 1200px;
  --fv-section-y: clamp(50px, 6vw, 90px);
  --fv-ease: cubic-bezier(.22, .61, .36, 1);
}


/* ==========================================================================
   01. Base & typography
   ========================================================================== */
* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fv-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fv-body);
  background-color: var(--fv-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fv-font-display);
  color: var(--fv-ink);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0;
}

p { margin: 0; }
a { text-decoration: none; color: inherit; transition: color .25s var(--fv-ease); }
img, svg { max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
.contact_info_section p{
  margin-bottom: 1rem;
}
:focus-visible {
  outline: 2px solid var(--fv-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--fv-blue); color: #fff; }

.fv-container {
  width: 100%;
  max-width: var(--fv-container);
  margin-inline: auto;
  padding-inline: 20px;
}

.fv-section, .section { padding-block: var(--fv-section-y); }
.fv-section--soft { background: var(--fv-surface); }

/* keep anchored sections clear of the fixed header */
section[id], main[id] { scroll-margin-top: 96px; }

/* Accent word set in serif italic — used only on display headings */
.fv-accent {
  font-family: var(--fv-font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
}


/* ==========================================================================
   02. Reusable components
   ========================================================================== */

/* — Eyebrow pill — */
.fv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 7px;
  border-radius: var(--fv-r-pill);
  background: var(--fv-white);
  border: 1px solid var(--fv-line);
  box-shadow: var(--fv-shadow-xs);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--fv-ink-700);
}
.fv-eyebrow__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--fv-r-pill);
  background: var(--fv-blue);
  color: #fff;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.fv-eyebrow__tag svg { width: 12px; height: 12px; }

/* — Section head — */
/* .fv-shead { max-width: 620px; } */
.fv-shead--center { margin-inline: auto; text-align: center; }
.fv-shead__title {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  margin-top: 20px;
}
.fv-shead__text {
  margin-top: 16px;
  font-size: 1.0125rem;
  color: var(--fv-body);
}

/* — Buttons — */
.fv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--fv-r-pill);
  font-family: var(--fv-font-body);
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .3s var(--fv-ease), box-shadow .3s var(--fv-ease),
              background-color .3s var(--fv-ease), color .3s var(--fv-ease),
              border-color .3s var(--fv-ease);
}
.fv-btn svg { width: 16px; height: 16px; flex: none; }
.fv-btn:hover { transform: translateY(-2px); }

.fv-btn--dark { background: var(--fv-ink); color: #fff; box-shadow: var(--fv-shadow-sm); }
.fv-btn--dark:hover { background: var(--fv-ink-800); color: #fff; box-shadow: var(--fv-shadow-md); }

.fv-btn--blue { background: var(--fv-blue); color: #fff; box-shadow: var(--fv-shadow-blue); }
.fv-btn--blue:hover { background: var(--fv-blue-600); color: #fff; }

.fv-btn--ghost {
  background: var(--fv-white);
  color: var(--fv-ink);
  border-color: var(--fv-line);
  box-shadow: var(--fv-shadow-xs);
}
.fv-btn--ghost:hover { border-color: var(--fv-blue-200); color: var(--fv-blue-700); }

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

.fv-btn--sm { padding: 11px 20px; font-size: .875rem; }
.fv-btn--full { width: 100%; }

/* — Text link with arrow — */
.fv-arrowlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--fv-ink);
}
.fv-arrowlink svg { width: 15px; height: 15px; transition: transform .35s var(--fv-ease); }
.fv-arrowlink:hover { color: var(--fv-blue); }
.fv-arrowlink:hover svg { transform: translate(4px, -4px); }

/* — Card shell — */
.fv-card {
  position: relative;
  background: var(--fv-white);
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-r-xl);
  box-shadow: var(--fv-shadow-xs);
  overflow: hidden;
}

/* — Mono meta label — */
.fv-meta {
  font-family: var(--fv-font-mono);
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fv-muted);
}

/* — Brand lockup — */
.fv-brand { display: inline-flex; align-items: center; gap: 10px; max-width: 150px;}
.fv-brand__mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--fv-blue) 0%, #1a3fbf 100%);
  box-shadow: 0 6px 14px -6px rgba(47, 107, 255, .7);
  flex: none;
}
.fv-brand__mark svg { width: 18px; height: 18px; }
.fv-brand__name {
  font-family: var(--fv-font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--fv-ink);
  white-space: nowrap;
}


/* ==========================================================================
   03. Header / navigation
   ========================================================================== */
.fv-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  padding-top: 18px;
  transition: padding-top .35s var(--fv-ease);
}
.fv-header.is-stuck { padding-top: 10px; }

.fv-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 9px 9px 18px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--fv-r-pill);
  box-shadow: 0 10px 30px -14px rgba(11, 16, 32, .22);
  transition: box-shadow .35s var(--fv-ease), background-color .35s var(--fv-ease);
}
.fv-header.is-stuck .fv-nav {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px -16px rgba(11, 16, 32, .28);
}

.fv-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}
.fv-nav__link {
  display: block;
  padding: 8px 15px;
  border-radius: var(--fv-r-pill);
  font-size: .9063rem;
  font-weight: 500;
  color: var(--fv-ink-700);
  transition: background-color .25s var(--fv-ease), color .25s var(--fv-ease);
}
.fv-nav__link:hover { background: var(--fv-blue-050); color: var(--fv-blue-700); }
.fv-nav__link.is-active { color: var(--fv-blue-700); background: var(--fv-blue-050); }

.fv-nav__divider {
  width: 1px; height: 22px;
  background: var(--fv-line);
}

.fv-nav__actions { display: flex; align-items: center; gap: 8px; }
.fv-nav__signin {
  padding: 8px 6px;
  font-size: .9063rem;
  font-weight: 500;
  color: var(--fv-ink-700);
}
.fv-nav__signin:hover { color: var(--fv-blue); }

.fv-burger {
  width: 40px; height: 40px;
  display: none;
  place-items: center;
  border: 1px solid var(--fv-line);
  border-radius: 50%;
  background: var(--fv-white);
  cursor: pointer;
}
.fv-burger span {
  position: relative;
  display: block;
  width: 15px; height: 1.5px;
  background: var(--fv-ink);
  transition: transform .3s var(--fv-ease), opacity .2s linear;
}
.fv-burger span::before,
.fv-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 15px; height: 1.5px;
  background: var(--fv-ink);
  transition: transform .3s var(--fv-ease);
}
.fv-burger span::before { top: -5px; }
.fv-burger span::after { top: 5px; }
.fv-burger.is-open span { background: transparent; }
.fv-burger.is-open span::before { transform: translateY(5px) rotate(45deg); }
.fv-burger.is-open span::after { transform: translateY(-5px) rotate(-45deg); }

/* Mobile panel */
.fv-mobile {
  display: none;
  margin-top: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(18px);
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-r-lg);
  box-shadow: var(--fv-shadow-md);
}
.fv-mobile.is-open { display: block; }
.fv-mobile a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--fv-r-md);
  font-weight: 500;
  color: var(--fv-ink-700);
}
.fv-mobile a:hover { background: var(--fv-blue-050); color: var(--fv-blue-700); }
.fv-mobile__cta { margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--fv-line-soft); }


/* ==========================================================================
   04. Hero
   ========================================================================== */
.fv-hero {
  position: relative;
  padding-top: clamp(100px, 11vw, 130px);
  padding-bottom: clamp(40px, 4vw, 60px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(120% 90% at 8% 0%, #eaf0ff 0%, rgba(234, 240, 255, 0) 58%),
    radial-gradient(90% 80% at 92% 6%, #e4f6fb 0%, rgba(228, 246, 251, 0) 60%),
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 78%);
}
/* faint engineering grid — a nod to a file system's structure */
.fv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(47, 107, 255, .055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(47, 107, 255, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 50% 22%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 22%, #000 0%, transparent 78%);
}
.fv-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%; top: -180px;
  width: 900px; height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(47, 107, 255, .16), transparent 70%);
  filter: blur(10px);
}

.fv-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.fv-hero__title {
  margin-top: 24px;
  font-size: clamp(2.5rem, 5.4vw, 4.35rem);
  letter-spacing: -.035em;
  line-height: 1.02;
}
.fv-hero__title .fv-accent { letter-spacing: -.01em; }
.fv-hero__text {
  max-width: 490px;
  margin-top: 22px;
  font-size: 1.0625rem;
}
.fv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Stats strip */
.fv-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 52px);
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--fv-line);
}
.fv-stat__num {
  font-family: var(--fv-font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.125rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--fv-ink);
}
.fv-stat__num sup {
  font-size: .55em;
  top: -.55em;
  margin-left: 2px;
  color: var(--fv-blue);
}
.fv-stat:nth-child(2) .fv-stat__num sup { color: var(--fv-violet); }
.fv-stat:nth-child(3) .fv-stat__num sup { color: var(--fv-cyan); }
.fv-stat__label {
  margin-top: 8px;
  font-size: .8125rem;
  color: var(--fv-muted);
}

/* Floating file-card collage — the hero's signature */
.fv-collage {
  position: relative;
  /* display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px; */
  padding: 8px 0;
}
.fv-fcard {
  position: relative;
  border-radius: var(--fv-r-lg);
  background: var(--fv-white);
  border: 1px solid var(--fv-line);
  box-shadow: var(--fv-shadow-md);
  padding: 14px;
  animation: fv-float 7s ease-in-out infinite;
}
.fv-fcard:nth-child(1) { transform: rotate(-2.2deg); animation-delay: 0s; }
.fv-fcard:nth-child(2) { transform: translateY(-34px) rotate(1.8deg); animation-delay: .9s; }
.fv-fcard:nth-child(3) { transform: translateY(6px) rotate(1.4deg); animation-delay: 1.8s; }
.fv-fcard:nth-child(4) { transform: translateY(-28px) rotate(-1.6deg); animation-delay: 2.6s; }

.fv-fcard__art {
  border-radius: 14px;
  overflow: hidden;
  background: var(--fv-surface);
  aspect-ratio: 4 / 3;
}
.fv-fcard__art svg { display: block; width: 100%; height: 100%; }
.fv-fcard__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}
.fv-fcard__name {
  font-family: var(--fv-font-display);
  font-size: .875rem;
  font-weight: 600;
  color: var(--fv-ink);
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fv-fcard__size { font-family: var(--fv-font-mono); font-size: .6875rem; color: var(--fv-muted); }

.fv-fcard__bar {
  height: 4px;
  margin-top: 10px;
  border-radius: 4px;
  background: var(--fv-surface-2);
  overflow: hidden;
}
.fv-fcard__bar i {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: var(--fv-blue);
}

/* encryption toast */
.fv-toast {
  position: absolute;
  left: -26px;
  bottom: 44px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 16px 11px 12px;
  border-radius: var(--fv-r-pill);
  background: var(--fv-white);
  border: 1px solid var(--fv-line);
  box-shadow: var(--fv-shadow-lg);
  animation: fv-float 6s ease-in-out infinite .4s;
}
.fv-toast__icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--fv-blue-050);
  color: var(--fv-blue);
  flex: none;
}
.fv-toast__icon svg { width: 15px; height: 15px; }
.fv-toast__t {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--fv-ink);
  white-space: nowrap;
}
.fv-toast__s { font-family: var(--fv-font-mono); font-size: .6875rem; color: var(--fv-muted); }

@keyframes fv-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

/* Logo row */
.fv-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 46px);
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--fv-line);
}
.fv-logos__label {
  font-family: var(--fv-font-mono);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fv-faint);
}
.fv-logos__item {
  font-family: var(--fv-font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--fv-faint);
  transition: color .3s var(--fv-ease);
}
.fv-logos__item:hover { color: var(--fv-ink-700); }


/* ==========================================================================
   05. Features (bento)
   ========================================================================== */
.fv-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}
.fv-bcard {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--fv-white);
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-r-xl);
  box-shadow: var(--fv-shadow-xs);
  transition: transform .4s var(--fv-ease), box-shadow .4s var(--fv-ease),
              border-color .4s var(--fv-ease);
}
.fv-bcard:hover {
  transform: translateY(-4px);
  border-color: var(--fv-blue-200);
  box-shadow: var(--fv-shadow-md);
}
.fv-bcard--tall { grid-column: span 2; grid-row: span 2; }
.fv-bcard--wide { grid-column: span 2; }

.fv-bcard__art {
  position: relative;
  flex: 1 1 auto;
  min-height: 168px;
  margin-bottom: 26px;
  border-radius: var(--fv-r-md);
  background:
    radial-gradient(90% 90% at 50% 0%, #f7f9ff 0%, #f3f5f9 100%);
  border: 1px solid var(--fv-line-soft);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.fv-bcard--tall .fv-bcard__art { min-height: 300px; }
.fv-bcard__art svg { display: block; width: 100%; height: 100%; }

.fv-bcard__title {
  font-size: 1.25rem;
  letter-spacing: -.025em;
}
.fv-bcard--tall .fv-bcard__title { font-size: 1.5rem; }
.fv-bcard__text {
  margin-top: 10px;
  font-size: .9375rem;
  color: var(--fv-body);
  max-width: 42ch;
}
.fv-bcard__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: var(--fv-r-pill);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--fv-line);
  font-family: var(--fv-font-mono);
  font-size: .625rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fv-ink-700);
  backdrop-filter: blur(6px);
}


/* ==========================================================================
   06. How it works
   ========================================================================== */
.fv-hiw__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-top: 52px;
}

/* Stage: tilted mockups, one visible per step */
.fv-stage {
  position: relative;
  aspect-ratio: 4 / 4.1;
  border-radius: var(--fv-r-xl);
}
.fv-stage__glow {
  position: absolute;
  inset: 12% 6% 18% 6%;
  border-radius: 40px;
  background: radial-gradient(60% 60% at 50% 40%, rgba(47, 107, 255, .18), transparent 72%);
  filter: blur(14px);
}
.fv-stage__shot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.96) rotate(-6deg);
  transition: opacity .55s var(--fv-ease), transform .55s var(--fv-ease);
  pointer-events: none;
}
.fv-stage__shot.is-active {
  opacity: 1;
  transform: scale(1) rotate(-3.5deg);
}
.fv-stage__shot svg {
  width: 100%;
  filter: drop-shadow(0 34px 60px rgba(11, 16, 32, .18));
}

/* Step list */
.fv-steps { border-top: 1px solid var(--fv-line); }
.fv-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: start;
  width: 100%;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--fv-line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.fv-step__num {
  padding-top: 9px;
  font-family: var(--fv-font-mono);
  font-size: .75rem;
  color: var(--fv-faint);
  transition: color .35s var(--fv-ease);
}
.fv-step__title {
  font-size: clamp(1.5rem, 2.7vw, 2.125rem);
  letter-spacing: -.03em;
  color: var(--fv-faint);
  transition: color .35s var(--fv-ease);
}
.fv-step__text {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  font-size: .9375rem;
  color: var(--fv-body);
  transition: grid-template-rows .45s var(--fv-ease), opacity .35s var(--fv-ease),
              margin-top .45s var(--fv-ease);
}
.fv-step__text > span { overflow: hidden; }
.fv-step__arrow {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: transparent;
  color: var(--fv-faint);
  transition: background-color .35s var(--fv-ease), color .35s var(--fv-ease),
              transform .35s var(--fv-ease);
}
.fv-step__arrow svg { width: 17px; height: 17px; }

.fv-step:hover .fv-step__title,
.fv-step.is-active .fv-step__title { color: var(--fv-ink); }
.fv-step:hover .fv-step__num,
.fv-step.is-active .fv-step__num { color: var(--fv-blue); }
.fv-step.is-active .fv-step__text { grid-template-rows: 1fr; opacity: 1; margin-top: 10px; }
.fv-step.is-active .fv-step__arrow {
  background: var(--fv-blue);
  color: #fff;
  box-shadow: var(--fv-shadow-blue);
}
.fv-step:hover .fv-step__arrow { transform: translate(3px, -3px); }


/* ==========================================================================
   07. Why us
   ========================================================================== */
.fv-why__lead {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.fv-why__statement {
  max-width: 44ch;
  font-family: var(--fv-font-display);
  font-size: clamp(1.5rem, 2.9vw, 2.375rem);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -.028em;
  color: var(--fv-faint);
}
.fv-why__statement strong { font-weight: 600; color: var(--fv-ink); }

/* inline glyph chips inside the statement */
.fv-chip {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  margin: 0 4px;
  /* vertical-align: -7px; */
  border-radius: 10px;
  background: var(--fv-blue-050);
  border: 1px solid var(--fv-blue-100);
  color: var(--fv-blue);
}
.fv-chip svg { width: 17px; height: 17px; }
.fv-chip--violet { background: #f2f0ff; border-color: #e2ddff; color: var(--fv-violet); }
.fv-chip--cyan { background: #e9f9fb; border-color: #cceff4; color: #0e9aa8; }

/* metric bento */
.fv-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(0, auto);
  gap: 16px;
  margin-top: 46px;
}
.fv-mcard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  min-height: 176px;
  padding: 26px;
  border-radius: var(--fv-r-xl);
  border: 1px solid var(--fv-line);
  background: var(--fv-white);
  overflow: hidden;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.fv-mcard--a {
  grid-row: span 3;
  background:
    radial-gradient(120% 80% at 15% 8%, #dfe7ff 0%, rgba(223, 231, 255, 0) 62%),
    linear-gradient(160deg, #f4f7ff 0%, #eaf0ff 45%, #f7f6ff 100%);
  border-color: #e3e9ff;
}
.fv-mcard--c {
  grid-row: span 2;
  background:
    radial-gradient(110% 80% at 80% 10%, #dff4f8 0%, rgba(223, 244, 248, 0) 60%),
    linear-gradient(200deg, #f3fbfd 0%, #eef4ff 100%);
  border-color: #dff0f5;
}
.fv-mcard--d {
  background: linear-gradient(150deg, #eef3ff 0%, #e6ecff 100%);
  border-color: #e1e8ff;
}
.fv-mcard--e { grid-column: span 2; min-height: 0; }

.fv-mcard__num {
  font-family: var(--fv-font-display);
  font-size: clamp(2.5rem, 4.6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .95;
  color: var(--fv-ink);
}
.fv-mcard__num svg{
    height: 95px;
    width: 95px;
    filter: brightness(0) saturate(100%) invert(33%) sepia(57%) saturate(2861%) hue-rotate(214deg) brightness(99%) contrast(104%);
}
.fv-mcard__title {
  font-size: 1.0625rem;
  letter-spacing: -.02em;
}
.fv-mcard__text {
  margin-top: 8px;
  font-size: .875rem;
  color: var(--fv-body);
  max-width: 57ch;
}
.fv-mcard--e { flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* region badges */
.fv-regions { display: flex; align-items: center; }
.fv-regions span {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  margin-left: -9px;
  border-radius: 50%;
  background: var(--fv-white);
  border: 1px solid var(--fv-line);
  box-shadow: var(--fv-shadow-xs);
  font-family: var(--fv-font-mono);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--fv-ink-700);
}
.fv-regions span:first-child { margin-left: 0; }
.fv-regions span:last-child { background: var(--fv-ink); color: #fff; border-color: var(--fv-ink); }

/* storage dial in card A */
.fv-dial { margin-top: 18px; }
.fv-dial__bar {
  height: 6px;
  border-radius: 6px;
  background: rgba(11, 16, 32, .07);
  overflow: hidden;
}
.fv-dial__bar i {
  display: block; height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--fv-blue), #6d8dff);
}
.fv-dial__legend {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  font-family: var(--fv-font-mono);
  font-size: .6875rem;
  color: var(--fv-muted);
}


/* ==========================================================================
   08. Pricing
   ========================================================================== */
.fv-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 26px;
  padding: 5px;
  border-radius: var(--fv-r-pill);
  background: var(--fv-white);
  border: 1px solid var(--fv-line);
  box-shadow: var(--fv-shadow-xs);
}
.fv-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 0;
  border-radius: var(--fv-r-pill);
  background: transparent;
  font-family: var(--fv-font-body);
  font-size: .875rem;
  font-weight: 500;
  color: var(--fv-body);
  cursor: pointer;
  transition: background-color .3s var(--fv-ease), color .3s var(--fv-ease);
}
.fv-toggle button.is-active { background: var(--fv-ink); color: #fff; }
.fv-toggle small {
  padding: 2px 7px;
  border-radius: var(--fv-r-pill);
  background: var(--fv-blue-050);
  color: var(--fv-blue-700);
  font-size: .6875rem;
  font-weight: 600;
}
.fv-toggle button.is-active small { background: rgba(255, 255, 255, .16); color: #fff; }

.fv-pricing__grid {
  margin-top: 48px;
}
.fv-plan {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--fv-r-xl);
  border: 1px solid var(--fv-line);
  background: var(--fv-white);
  box-shadow: var(--fv-shadow-xs);
  margin-bottom: 25px;
}
.fv-plan__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.fv-plan__name { font-size: 1.45rem; letter-spacing: -.025em; }
.fv-plan__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--fv-r-pill);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
  white-space: nowrap;
}
.fv-plan__badge svg { width: 12px; height: 12px; }
.fv-plan__desc {
  margin-top: 10px;
  font-size: .9rem;
  color: var(--fv-body);
  max-width: 30ch;
}
.fv-plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 26px;
}
.fv-plan__amount {
  font-family: var(--fv-font-display);
  font-size: clamp(2.125rem, 3.4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--fv-ink);
}
.fv-plan__cycle { font-size: .8125rem; color: var(--fv-muted); }
.fv-plan__note {
  margin-top: 8px;
  font-family: var(--fv-font-mono);
  font-size: .75rem;
  letter-spacing: .04em;
  color: var(--fv-muted);
}
.fv-plan .fv-btn { margin-top: 24px; }
.fv-plan__rule { margin: 26px 0 20px; height: 1px; background: var(--fv-line); }
.fv-plan__label {
  font-family: var(--fv-font-mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fv-muted);
}
.fv-plan__list { margin-top: 16px; display: grid; gap: 13px; }
.fv-plan__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  font-size: .9rem;
  color: var(--fv-ink-700);
}
.fv-plan__list svg { width: 18px; height: 18px; margin-top: 2px; color: var(--fv-blue); flex: none; }

/* featured plan — inverted for contrast on the light page */
.fv-plan--featured {
  position: relative;
  isolation: isolate;
  border-color: transparent;
  background:
    radial-gradient(110% 70% at 82% 0%, rgba(47, 107, 255, .5) 0%, rgba(47, 107, 255, 0) 58%),
    linear-gradient(168deg, #131a2e 0%, #0b1020 60%, #0d1428 100%);
  box-shadow: var(--fv-shadow-lg);
  padding-block: 34px;
}
.fv-plan--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(80% 60% at 70% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(80% 60% at 70% 0%, #000, transparent 72%);
}
.fv-plan--featured .fv-plan__name,
.fv-plan--featured .fv-plan__amount { color: #fff; }
.fv-plan--featured .fv-plan__desc { color: rgba(255, 255, 255, .62); }
.fv-plan--featured .fv-plan__cycle,
.fv-plan--featured .fv-plan__note,
.fv-plan--featured .fv-plan__label { color: rgba(255, 255, 255, .5); }
.fv-plan--featured .fv-plan__rule { background: rgba(255, 255, 255, .12); }
.fv-plan--featured .fv-plan__list li { color: rgba(255, 255, 255, .84); }
.fv-plan--featured .fv-plan__list svg { color: #7ea2ff; }

/* consult card under the third plan */
.fv-consult {
  margin-top: 18px;
  padding: 22px;
  border-radius: var(--fv-r-xl);
  border: 1px solid var(--fv-line);
  background: linear-gradient(165deg, #f7f9ff 0%, #eff3ff 100%);
}
.fv-consult__title { font-size: 1.0625rem; letter-spacing: -.02em; }
.fv-consult__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.fv-consult__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  border: 2px solid #fff;
  box-shadow: var(--fv-shadow-sm);
}
.fv-consult__avatar svg { width: 100%; height: 100%; display: block; }
.fv-consult__name { font-size: .875rem; font-weight: 600; color: var(--fv-ink); }
.fv-consult__role { font-size: .75rem; color: var(--fv-muted); }
.fv-consult__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--fv-line);
}
.fv-consult__slots {
  font-family: var(--fv-font-mono);
  font-size: .6875rem;
  color: var(--fv-muted);
}
.fv-consult__dots { display: flex; gap: 4px; margin-bottom: 6px; }
.fv-consult__dots i {
  width: 15px; height: 5px;
  border-radius: 3px;
  background: var(--fv-blue-100);
}
.fv-consult__dots i.is-on { background: var(--fv-blue); }


/* ==========================================================================
   09. FAQ
   ========================================================================== */
.fv-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.fv-faq__aside { position: sticky; top: 108px; }
.fv-faq__art {
  margin-top: 40px;
  border-radius: var(--fv-r-xl);
  overflow: hidden;
}
.fv-faq__art svg { display: block; width: 100%; height: auto; }

.fv-acc { display: grid; gap: 12px; }
.fv-ai {
  border-radius: var(--fv-r-xl);
  border: 1px solid var(--fv-line);
  background: var(--fv-surface-2);
  overflow: hidden;
  transition: background-color .45s var(--fv-ease), border-color .45s var(--fv-ease),
              box-shadow .45s var(--fv-ease);
}
.fv-ai__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 26px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.fv-ai__q {
  font-family: var(--fv-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.1vw, 1.625rem);
  letter-spacing: -.005em;
  line-height: 1.2;
  color: var(--fv-ink-700);
  transition: color .4s var(--fv-ease);
}
.fv-ai__idx {
  font-family: var(--fv-font-mono);
  font-size: .75rem;
  color: var(--fv-muted);
  flex: none;
  transition: color .4s var(--fv-ease);
}
.fv-ai__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--fv-ease);
}
.fv-ai__body > div { overflow: hidden; }
.fv-ai__inner { padding: 0 26px 26px; }
.fv-ai__text { font-size: .9375rem; color: var(--fv-body); max-width: 58ch; }
.fv-ai__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.fv-ai__tags span {
  padding: 7px 14px;
  border-radius: var(--fv-r-pill);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
}

.fv-ai:hover { border-color: var(--fv-blue-200); }

.fv-ai.is-open {
  border-color: transparent;
  background:
    radial-gradient(110% 80% at 88% 0%, rgba(47, 107, 255, .55) 0%, rgba(47, 107, 255, 0) 62%),
    linear-gradient(158deg, #16203a 0%, #0b1020 70%);
  box-shadow: var(--fv-shadow-lg);
}
.fv-ai.is-open .fv-ai__q { color: #fff; }
.fv-ai.is-open .fv-ai__idx { color: rgba(255, 255, 255, .55); }
.fv-ai.is-open .fv-ai__text { color: rgba(255, 255, 255, .72); }
.fv-ai.is-open .fv-ai__body { grid-template-rows: 1fr; }


/* ==========================================================================
   10. Support CTA
   ========================================================================== */
.fv-cta { padding-bottom: clamp(56px, 6vw, 96px); }
.fv-cta__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(38px, 5vw, 66px);
  background:
    radial-gradient(60% 100% at 50% 120%, rgba(47, 107, 255, .55) 0%, rgba(47, 107, 255, 0) 62%),
    linear-gradient(160deg, #101830 0%, #0a0f1e 55%, #0d1226 100%);
  box-shadow: var(--fv-shadow-lg);
}
/* the sweeping arc — light passing over a vault door */
.fv-cta__arc {
  position: absolute;
  z-index: -1;
  left: 50%; top: -55%;
  width: 150%; aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(255, 255, 255, .17) 0%, rgba(126, 162, 255, .1) 58%, rgba(255, 255, 255, 0) 71%);
  filter: blur(2px);
}
.fv-cta__stars {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(255, 255, 255, .5), transparent),
    radial-gradient(1.5px 1.5px at 78% 14%, rgba(255, 255, 255, .4), transparent),
    radial-gradient(1.5px 1.5px at 34% 74%, rgba(255, 255, 255, .35), transparent),
    radial-gradient(1.5px 1.5px at 62% 58%, rgba(255, 255, 255, .3), transparent),
    radial-gradient(1.5px 1.5px at 88% 68%, rgba(255, 255, 255, .34), transparent),
    radial-gradient(1.5px 1.5px at 22% 46%, rgba(255, 255, 255, .28), transparent);
}

.fv-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: var(--fv-r-pill);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(6px);
}
.fv-cta__eyebrow svg { width: 14px; height: 14px; color: #8fabff; }
.fv-cta__title {
  margin-top: 26px;
  font-size: clamp(2.125rem, 4.6vw, 3.5rem);
  letter-spacing: -.035em;
  line-height: 1.04;
  color: #fff;
}
.fv-cta__text {
  max-width: 46ch;
  margin-top: 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, .66);
}
.fv-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.fv-cta .fv-btn--ghost { background: #fff; border-color: transparent; }
.fv-cta .fv-btn--glass {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}
.fv-cta .fv-btn--glass:hover { background: rgba(255, 255, 255, .14); }

.fv-cta__aside { display: flex; flex-direction: column; align-items: flex-end; gap: 22px; }
.fv-cta__shots { display: flex; align-items: flex-end; }
.fv-cta__shot {
  width: 104px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: 0 22px 40px -22px rgba(0, 0, 0, .7);
}
.fv-cta__shot svg { display: block; width: 100%; height: auto; }
.fv-cta__shot:nth-child(1) { transform: rotate(-7deg) translateY(10px); z-index: 1; }
.fv-cta__shot:nth-child(2) { margin-left: -20px; transform: rotate(-1deg); z-index: 2; }
.fv-cta__shot:nth-child(3) { margin-left: -20px; transform: rotate(6deg) translateY(12px); z-index: 1; }
.fv-cta__link { color: #fff; }
.fv-cta__link:hover { color: #a9c1ff; }


/* ==========================================================================
   11. Footer
   ========================================================================== */
.fv-footer {
  background: var(--fv-surface);
  border-top: 1px solid var(--fv-line);
  padding-top: clamp(48px, 5vw, 76px);
}
.fv-footer__top {
  padding-bottom: 48px;
}
.fv-footer__text {
  max-width: 34ch;
  margin-top: 18px;
  font-size: .9375rem;
}
.fv-subscribe {
  display: flex;
  gap: 8px;
  max-width: 340px;
  margin-top: 24px;
  padding: 6px;
  background: var(--fv-white);
  border: 1px solid var(--fv-line);
  border-radius: var(--fv-r-pill);
  box-shadow: var(--fv-shadow-xs);
}
.fv-subscribe input {
  flex: 1;
  min-width: 0;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  font-family: var(--fv-font-body);
  font-size: .875rem;
  color: var(--fv-ink);
}
.fv-subscribe input::placeholder { color: var(--fv-faint); }
.fv-subscribe input:focus { outline: none; }
.fv-subscribe__note {
  margin-top: 10px;
  font-size: .75rem;
  color: var(--fv-muted);
}
.fv-fcol__title {
  font-family: var(--fv-font-mono);
  font-size: .85rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--fv-muted);
}
.fv-fcol ul { margin-top: 18px; display: grid; gap: 12px; }
.fv-fcol a { font-size: .9375rem; color: var(--fv-ink-700); }
.fv-fcol a:hover { color: var(--fv-blue); }

.fv-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-block: 22px;
  border-top: 1px solid var(--fv-line);
  font-size: .8125rem;
  color: var(--fv-muted);
}
.fv-footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.fv-footer__legal a:hover { color: var(--fv-ink); }
.fv-social { display: flex; gap: 8px; }
.fv-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--fv-white);
  border: 1px solid var(--fv-line);
  color: var(--fv-ink-700);
  transition: background-color .3s var(--fv-ease), color .3s var(--fv-ease),
              transform .3s var(--fv-ease);
}
.fv-social a svg { width: 15px; height: 15px; }
.fv-social a:hover { background: var(--fv-ink); color: #fff; transform: translateY(-2px); }


/* General Pages */

  .page-title {
        background: #ecf6ff;
    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;
  }
  .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;
}


/* ==========================================================================
   12. Motion & reveal
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--fv-ease), transform .8s var(--fv-ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

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


/* ==========================================================================
   13. Responsive
   ========================================================================== */
@media (max-width: 1199.98px) {
  .fv-hero__grid { grid-template-columns: 1fr; }
  .fv-collage { max-width: 620px; }
  .fv-toast { left: 0; }
  .fv-hiw__grid { grid-template-columns: 1fr; }
  .fv-stage { max-width: 520px; margin-inline: auto; }
  .fv-faq__grid { grid-template-columns: 1fr; }
  .fv-faq__aside { position: static; }
  .fv-faq__art { max-width: 520px; }
  .fv-cta__grid { grid-template-columns: 1fr; }
  .fv-cta__aside { align-items: flex-start; }
  .fv-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
  .fv-nav__list, .fv-nav__divider, .fv-nav__signin { display: none; }
  .fv-nav { justify-content: space-between; padding-left: 16px; }
  .fv-burger { display: grid; }
  .fv-nav__actions .fv-btn { display: none; }

  .fv-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fv-bcard--tall { grid-column: span 2; grid-row: span 1; }
  .fv-bcard--tall .fv-bcard__art { min-height: 220px; }

  .fv-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fv-mcard--a { grid-row: span 2; }
  .fv-mcard--c { grid-row: span 1; }
  .fv-mcard--e { grid-column: span 2; }

  .fv-why__lead { grid-template-columns: 1fr; gap: 18px; }

  .fv-pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

@media (max-width: 767.98px) {
  :root { --fv-section-y: clamp(56px, 9vw, 76px); }

  .fv-hero__stats { gap: 22px 32px; }
  .fv-stat { min-width: 96px; }

  .fv-bento { grid-template-columns: 1fr; }
  .fv-bcard--tall, .fv-bcard--wide { grid-column: span 1; }
  .fv-bcard { padding: 20px; }
  .fv-bcard__art { min-height: 170px; margin-bottom: 20px; }
  .fv-bcard--tall .fv-bcard__art { min-height: 200px; }

  .fv-step { grid-template-columns: 28px minmax(0, 1fr) 38px; gap: 10px; }
  .fv-step__arrow { width: 38px; height: 38px; }

  .fv-metrics { grid-template-columns: 1fr; }
  .fv-mcard--a, .fv-mcard--c, .fv-mcard--e { grid-row: span 1; grid-column: span 1; }
  .fv-mcard { min-height: 0; gap: 26px; }

  .fv-ai__btn { padding: 18px 20px; }
  .fv-ai__inner { padding: 0 20px 22px; }

  .fv-cta__shot { width: 84px; }
  .fv-footer__top { grid-template-columns: 1fr; }
  .fv-footer__bar { justify-content: flex-start; }
}

@media (max-width: 479.98px) {
  .fv-collage { grid-template-columns: 1fr; gap: 14px; }
  .fv-fcard:nth-child(n) { transform: none; }
  .fv-fcard:nth-child(3), .fv-fcard:nth-child(4) { display: none; }
  .fv-toast { position: static; margin-top: 14px; }
  .fv-hero__actions .fv-btn { flex: 1 1 100%; }
}
