/* =============================================================
   FILING CLOUD — style.css
   Premium cloud-storage SaaS landing page
   Author: Senior Product Designer / Frontend
   -------------------------------------------------------------
   TABLE OF CONTENTS
   01. Design Tokens (CSS variables)
   02. Base / Reset
   03. Typography
   04. Layout & Utilities
   05. Buttons
   06. Badges / Tags / Pills
   07. Header / Navigation
   08. Hero + Handcrafted Dashboard
   09. Logos strip
   10. Features
   11. How It Works
   12. Benefits
   13. Pricing
   14. FAQ
   15. Support CTA
   16. Footer
   17. Motion / Reveal
   ============================================================= */

/* ============================================================
   01. DESIGN TOKENS
   ============================================================ */
:root {
  /* --- Brand color --- */
  --fc-blue-700: #1D4FD8;
  --fc-blue-600: #2563EB;   /* Primary */
  --fc-blue-400: #60A5FA;   /* Secondary */
  --fc-blue-100: #DBEAFE;   /* Blue light */
  --fc-grad-from: #4F8EF7;
  --fc-grad-to:   #7CB8FF;

  /* --- Neutrals --- */
  --fc-bg:        #F8FAFC;  /* Page background */
  --fc-surface:   #FFFFFF;  /* Cards / panels */
  --fc-ink:       #0B1220;  /* Deep navy (dashboard chrome, CTA band) */
  --fc-ink-soft:  #111827;  /* Headings */
  --fc-body:      #4B5563;  /* Body copy */
  --fc-muted:     #6B7280;  /* Captions */
  --fc-border:    #E5E7EB;  /* Hairlines */
  --fc-border-2:  #EEF2F7;  /* Softer hairline */

  /* --- Semantic --- */
  --fc-success:   #16A34A;
  --fc-warning:   #F59E0B;

  /* --- Tinted washes --- */
  --fc-wash-blue: #EFF5FF;
  --fc-wash-cool: #F1F5FB;

  /* --- Gradients --- */
  --fc-gradient:      linear-gradient(135deg, var(--fc-grad-from) 0%, var(--fc-grad-to) 100%);
  --fc-gradient-ink:  linear-gradient(155deg, #0B1220 0%, #16233E 55%, #1E3462 100%);
  --fc-glow:          radial-gradient(60% 60% at 70% 20%, rgba(96,165,250,.28) 0%, rgba(96,165,250,0) 70%);

  /* --- Typography --- */
  --fc-font-display: "Plus Jakarta Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
  --fc-font-body:    "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --fc-font-accent:  "Fraunces", Georgia, "Times New Roman", serif; /* editorial italic accent */

  /* Type scale (desktop-first, 1.25 major-third-ish, hand-tuned) */
  --fc-fs-eyebrow: .8125rem;   /* 13px */
  --fc-fs-caption: .875rem;    /* 14px */
  --fc-fs-body:    1rem;       /* 16px */
  --fc-fs-lead:    1.1875rem;  /* 19px */
  --fc-fs-h6:      1.0625rem;
  --fc-fs-h5:      1.25rem;
  --fc-fs-h4:      1.5rem;
  --fc-fs-h3:      2rem;
  --fc-fs-h2:      2.75rem;    /* 44px section titles */
  --fc-fs-h1:      3.5rem;     /* 56px hero */

  /* --- Spacing scale (8px system) --- */
  --fc-s-1: 4px;
  --fc-s-2: 8px;
  --fc-s-3: 12px;
  --fc-s-4: 16px;
  --fc-s-5: 24px;
  --fc-s-6: 32px;
  --fc-s-7: 40px;
  --fc-s-8: 48px;
  --fc-s-9: 64px;
  --fc-s-10: 80px;
  --fc-s-11: 96px;
  --fc-s-12: 120px;

  /* Section vertical rhythm */
  --fc-section-y: 120px;

  /* --- Radius --- */
  --fc-r-xs: 8px;
  --fc-r-sm: 12px;
  --fc-r-md: 16px;
  --fc-r-lg: 20px;
  --fc-r-xl: 28px;
  --fc-r-pill: 999px;

  /* --- Shadows (soft, layered) --- */
  --fc-shadow-xs: 0 1px 2px rgba(16,24,40,.05);
  --fc-shadow-sm: 0 4px 12px rgba(16,24,40,.06);
  --fc-shadow-md: 0 10px 30px rgba(16,24,40,.08);
  --fc-shadow-lg: 0 24px 60px rgba(16,24,40,.12);
  --fc-shadow-blue: 0 18px 40px rgba(37,99,235,.20);
  --fc-shadow-float: 0 20px 45px rgba(16,24,40,.14);

  /* --- Container --- */
  --fc-container: 1320px;

  /* --- Motion --- */
  --fc-ease: cubic-bezier(.22,.61,.36,1);
  --fc-fast: 160ms;
  --fc-mid:  280ms;
  --fc-slow: 520ms;
}

/* ============================================================
   02. BASE / RESET
   ============================================================ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--fc-font-body);
  font-size: var(--fc-fs-body);
  line-height: 1.65;
  color: var(--fc-body);
  background: var(--fc-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--fc-blue-100); color: var(--fc-ink-soft); }

:focus-visible {
  outline: 3px solid rgba(37,99,235,.45);
  outline-offset: 2px;
  border-radius: var(--fc-r-xs);
}

/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fc-font-display);
  color: var(--fc-ink-soft);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 var(--fc-s-4);
}

h1 { font-size: var(--fc-fs-h1); letter-spacing: -.035em; }
h2 { font-size: var(--fc-fs-h2); letter-spacing: -.03em; }
h3 { font-size: var(--fc-fs-h3); }
h4 { font-size: var(--fc-fs-h4); }
h5 { font-size: var(--fc-fs-h5); }
h6 { font-size: var(--fc-fs-h6); }

p { margin: 0 0 var(--fc-s-4); }

/* Editorial italic accent — the typographic signature */
.fc-accent {
  font-family: var(--fc-font-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--fc-blue-600);
}

.fc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--fc-s-2);
  font-family: var(--fc-font-display);
  font-size: var(--fc-fs-eyebrow);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fc-blue-600);
}
.fc-eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--fc-blue-400);
  border-radius: 2px;
}
.fc-eyebrow--center::before { display: none; }

.fc-lead {
  font-size: var(--fc-fs-lead);
  color: var(--fc-body);
  line-height: 1.6;
}

/* .fc-section-head { max-width: 800px; } */
.fc-section-head--center { margin-inline: auto; text-align: center; }

/* ============================================================
   04. LAYOUT & UTILITIES
   ============================================================ */
.container { max-width: var(--fc-container); }

.fc-section, .section { padding-block: var(--fc-s-10); position: relative; }
.fc-section--tight { padding-block: var(--fc-s-11); }
.fc-bg-surface { background: var(--fc-surface); }
.fc-bg-wash { background: var(--fc-wash-cool); }

.fc-divider { height: 1px; background: var(--fc-border); border: 0; margin: 0; }

.fc-text-center { text-align: center; }
.fc-mt-2 { margin-top: var(--fc-s-2); }
.fc-mt-4 { margin-top: var(--fc-s-4); }
.fc-mt-6 { margin-top: var(--fc-s-6); }
.fc-mt-8 { margin-top: var(--fc-s-8); }

/* ============================================================
   05. BUTTONS
   ============================================================ */
.fc-btn {
  --_bg: var(--fc-blue-600);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fc-s-2);
  font-family: var(--fc-font-display);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--fc-r-pill);
  border: 1px solid transparent;
  background: var(--_bg);
  color: var(--_fg);
  cursor: pointer;
  transition: transform var(--fc-fast) var(--fc-ease),
              box-shadow var(--fc-mid) var(--fc-ease),
              background var(--fc-fast) var(--fc-ease);
  white-space: nowrap;
}
.fc-btn i { font-size: 1.05em; transition: transform var(--fc-fast) var(--fc-ease); }
.fc-btn:hover { transform: translateY(-2px); }
.fc-btn:active { transform: translateY(0); }

.fc-btn--primary {
  background: var(--fc-blue-600);
  box-shadow: var(--fc-shadow-blue);
}
.fc-btn--primary:hover { background: var(--fc-blue-700); box-shadow: 0 22px 46px rgba(37,99,235,.28); }
.fc-btn--primary:hover i { transform: translateX(3px); }

.fc-btn--gradient {
  background: var(--fc-gradient);
  box-shadow: var(--fc-shadow-blue);
}
.fc-btn--gradient:hover i { transform: translateX(3px); }

.fc-btn--ghost {
  background: var(--fc-surface);
  color: var(--fc-ink-soft);
  border-color: var(--fc-border);
  box-shadow: var(--fc-shadow-xs);
}
.fc-btn--ghost:hover { border-color: #D3DAE6; box-shadow: var(--fc-shadow-sm); }

.fc-btn--light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
}
.fc-btn--light:hover { background: rgba(255,255,255,.2); }

.fc-btn--white { background: #fff; color: var(--fc-blue-700); }
.fc-btn--white:hover { background: #fff; }

.fc-btn--sm { padding: 10px 16px; font-size: .875rem; }
.fc-btn--lg { padding: 16px 28px; font-size: 1rem; }
.fc-btn--block { width: 100%; }

.fc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fc-font-display); font-weight: 600;
  color: var(--fc-blue-600);
}
.fc-link i { transition: transform var(--fc-fast) var(--fc-ease); }
.fc-link:hover i { transform: translateX(4px); }

/* ============================================================
   06. BADGES / TAGS / PILLS
   ============================================================ */
.fc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fc-font-display);
  font-size: var(--fc-fs-caption); font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--fc-r-pill);
  background: var(--fc-blue-100);
  color: var(--fc-blue-700);
}
.fc-badge--soft { background: var(--fc-surface); color: var(--fc-body); border: 1px solid var(--fc-border); }
.fc-badge--success { background: #DCFCE7; color: #15803D; }
.fc-badge--warning { background: #FEF3C7; color: #B45309; }

.fc-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: var(--fc-r-pill);
  background: var(--fc-surface);
  border: 1px solid var(--fc-border);
  box-shadow: var(--fc-shadow-xs);
  font-size: var(--fc-fs-caption); font-weight: 500; color: var(--fc-body);
}
.fc-pill i { color: var(--fc-success); }

/* ============================================================
   07. HEADER / NAVIGATION
   ============================================================ */
.fc-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  padding-block: 16px;
  transition: background var(--fc-mid) var(--fc-ease),
              box-shadow var(--fc-mid) var(--fc-ease),
              padding var(--fc-mid) var(--fc-ease);
}
.fc-header.is-stuck {
  background: rgba(248,250,252,.82);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(16,24,40,.06), var(--fc-shadow-sm);
  padding-block: 10px;
}
.fc-nav { display: flex; align-items: center; justify-content: space-between; gap: var(--fc-s-6); }

.fc-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--fc-font-display); font-weight: 800; font-size: 1.2rem; color: var(--fc-ink-soft); letter-spacing: -.02em; max-width: 200px; }
.fc-brand__mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--fc-gradient);
  display: grid; place-items: center;
  color: #fff; box-shadow: var(--fc-shadow-blue);
}
.fc-brand__mark svg { width: 20px; height: 20px; }

.fc-nav__menu { display: flex; align-items: center; gap: 4px; }
.fc-nav__link {
  font-family: var(--fc-font-display); font-weight: 500;
  font-size: .95rem; color: var(--fc-body);
  padding: 8px 14px; border-radius: var(--fc-r-pill);
  transition: color var(--fc-fast) var(--fc-ease), background var(--fc-fast) var(--fc-ease);
}
.fc-nav__link:hover { color: var(--fc-ink-soft); background: rgba(37,99,235,.06); }

.fc-nav__actions { display: flex; align-items: center; gap: var(--fc-s-3); }
.fc-nav__login { font-family: var(--fc-font-display); font-weight: 600; font-size: .95rem; color: var(--fc-ink-soft); padding: 8px 4px; }
.fc-nav__login:hover { color: var(--fc-blue-600); }

.fc-nav__toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--fc-border); background: var(--fc-surface);
  border-radius: var(--fc-r-sm); cursor: pointer; color: var(--fc-ink-soft);
  align-items: center; justify-content: center; font-size: 1.25rem;
}

/* Mobile drawer */
.fc-drawer {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(11,18,32,.4);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--fc-mid) var(--fc-ease), visibility var(--fc-mid);
}
.fc-drawer.is-open { opacity: 1; visibility: visible; }
.fc-drawer__panel {
  position: absolute; inset: 0 0 0 auto; width: min(360px, 86vw);
  background: var(--fc-surface); padding: 24px;
  transform: translateX(100%); transition: transform var(--fc-mid) var(--fc-ease);
  display: flex; flex-direction: column; gap: 8px;
}
.fc-drawer.is-open .fc-drawer__panel { transform: translateX(0); }
.fc-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.fc-drawer__head img{
  max-width: 170px;
}
.fc-drawer__close { width: 44px; height: 44px; border-radius: var(--fc-r-sm); border: 1px solid var(--fc-border); background: #fff; cursor: pointer; font-size: 1.3rem; color: var(--fc-ink-soft); }
.fc-drawer__link { padding: 14px 12px; border-radius: var(--fc-r-sm); font-family: var(--fc-font-display); font-weight: 600; color: var(--fc-ink-soft); font-size: 1.05rem; }
.fc-drawer__link:hover { background: var(--fc-wash-blue); }
.fc-drawer__actions { margin-top: auto; display: grid; gap: 10px; }

/* ============================================================
   08. HERO + HANDCRAFTED DASHBOARD  (signature)
   ============================================================ */
.fc-hero { position: relative; padding-top: 160px; padding-bottom: 0; overflow: hidden; }
.fc-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    var(--fc-glow),
    radial-gradient(45% 40% at 12% 8%, rgba(219,234,254,.7) 0%, rgba(219,234,254,0) 70%);
}
.fc-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 20%, #000 0%, transparent 75%);
          mask-image: radial-gradient(70% 60% at 50% 20%, #000 0%, transparent 75%);
}

.fc-hero__grid { display: grid; grid-template-columns: 1.02fr 1.28fr; gap: 56px; align-items: center; }

.fc-hero__title { font-size: clamp(2.6rem, 4.4vw, 3.5rem); margin-bottom: 20px; }
/* .fc-hero__copy { max-width: 30rem; } */
.fc-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; justify-content: center;}

.fc-hero__trust { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 18px; margin-top: 28px; }
.fc-trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fc-fs-caption); color: var(--fc-muted); }
.fc-trust-item i { color: var(--fc-success); font-size: 1.05rem; }
@media (min-width: 992px) {
  /* .fc-trust-item{
      flex: 0 0 48%;
      max-width: 200px;
  } */
  .fc-stage{
        margin-right: -100px;
  }
}
.fc-hero__stats { display: flex; gap: 32px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--fc-border); }
.fc-stat__num { font-family: var(--fc-font-display); font-weight: 800; font-size: 1.9rem; color: var(--fc-ink-soft); letter-spacing: -.03em; line-height: 1; }
.fc-stat__num span { color: var(--fc-blue-600); }
.fc-stat__label { font-size: var(--fc-fs-caption); color: var(--fc-muted); margin-top: 6px; }

/* --- Dashboard stage --- */
.fc-stage { position: relative; }
.fc-dash {
  position: relative; z-index: 2;
  background: var(--fc-surface);
  border: 1px solid var(--fc-border-2);
  border-radius: var(--fc-r-xl);
  box-shadow: var(--fc-shadow-lg);
  overflow: hidden;
  display: grid; grid-template-columns: 210px 1fr;
}
.fc-dash__side { background: var(--fc-ink); color: #C7D2E4; padding: 18px 14px; display: flex; flex-direction: column; gap: 6px; }
.fc-dash__brand { display: flex; align-items: center; gap: 9px; color: #fff; font-family: var(--fc-font-display); font-weight: 700; font-size: .95rem; padding: 6px 8px 14px; }
.fc-dash__brand span { width: 26px; height: 26px; border-radius: 8px; background: var(--fc-gradient); display: grid; place-items: center; }
.fc-dash__brand span svg { width: 14px; height: 14px; }
.fc-dash__navitem { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 10px; font-size: .82rem; font-weight: 500; color: #93A3BC; transition: background var(--fc-fast), color var(--fc-fast); }
.fc-dash__navitem i { font-size: .95rem; }
.fc-dash__navitem.is-active { background: rgba(96,165,250,.16); color: #fff; }
.fc-dash__navitem:hover { color: #fff; }
.fc-dash__side-foot { margin-top: auto; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 12px; }
.fc-dash__ring { display: flex; align-items: center; gap: 10px; }
.fc-ring { width: 42px; height: 42px; }
.fc-dash__ring b { display: block; color: #fff; font-family: var(--fc-font-display); font-size: .78rem; }
.fc-dash__ring small { color: #8595AE; font-size: .68rem; }

.fc-dash__main { padding: 16px 18px; background: #fff; }
.fc-dash__topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.fc-dash__search { flex: 1; display: flex; align-items: center; gap: 8px; background: var(--fc-bg); border: 1px solid var(--fc-border); border-radius: var(--fc-r-pill); padding: 8px 14px; color: var(--fc-muted); font-size: .8rem; }
.fc-dash__topicons { display: flex; align-items: center; gap: 8px; }
.fc-dash__ic { width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--fc-border); background: #fff; display: grid; place-items: center; color: var(--fc-muted); font-size: .85rem; }
.fc-dash__ava { width: 30px; height: 30px; border-radius: 50%; background: var(--fc-gradient); color: #fff; display: grid; place-items: center; font-size: .72rem; font-weight: 700; }

.fc-dash__section-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.fc-dash__section-title h6 { font-size: .82rem; margin: 0; color: var(--fc-ink-soft); }
.fc-dash__section-title span { font-size: .7rem; color: var(--fc-muted); }

.fc-folders { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.fc-folder { border: 1px solid var(--fc-border); border-radius: 12px; padding: 12px; background: #fff; transition: transform var(--fc-fast), box-shadow var(--fc-fast); }
.fc-folder:hover { transform: translateY(-2px); box-shadow: var(--fc-shadow-sm); }
.fc-folder__ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-size: .85rem; margin-bottom: 20px; }
.fc-folder__ic--a { background: linear-gradient(135deg,#4F8EF7,#7CB8FF); }
.fc-folder__ic--b { background: linear-gradient(135deg,#16A34A,#4ADE80); }
.fc-folder__ic--c { background: linear-gradient(135deg,#F59E0B,#FBBF24); }
.fc-folder b { font-size: .78rem; color: var(--fc-ink-soft); display: block; }
.fc-folder small { font-size: .68rem; color: var(--fc-muted); }

.fc-filelist { border: 1px solid var(--fc-border); border-radius: 12px; overflow: hidden; }
.fc-filerow { display: grid; grid-template-columns: 1.6fr .8fr .8fr auto; align-items: center; gap: 8px; padding: 10px 12px; font-size: .74rem; }
.fc-filerow + .fc-filerow { border-top: 1px solid var(--fc-border-2); }
.fc-filerow--head { background: var(--fc-bg); color: var(--fc-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: .64rem; }
.fc-filerow__name { display: flex; align-items: center; gap: 9px; color: var(--fc-ink-soft); font-weight: 500; }
.fc-fileic { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; color: #fff; font-size: .72rem; flex: none; }
.fc-fileic--pdf { background: #EF4444; }
.fc-fileic--img { background: #8B5CF6; }
.fc-fileic--doc { background: #2563EB; }
.fc-fileic--zip { background: #64748B; }
.fc-filerow__meta { color: var(--fc-muted); }
.fc-filerow__status { justify-self: end; }
.fc-dot { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.fc-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; }
.fc-dot--ok { color: var(--fc-success); }
.fc-dot--ok::before { background: var(--fc-success); }
.fc-dot--sync { color: var(--fc-blue-600); }
.fc-dot--sync::before { background: var(--fc-blue-600); animation: fcPulse 1.4s infinite; }

/* --- Floating glass cards --- */
.fc-float { position: absolute; z-index: 3; background: rgba(255,255,255,.82); backdrop-filter: blur(14px) saturate(160%); border: 1px solid rgba(255,255,255,.7); border-radius: var(--fc-r-md); box-shadow: var(--fc-shadow-float); padding: 14px 16px; }
.fc-float--upload { top: -26px; right: 8%; width: 232px; animation: fcFloat 6s ease-in-out infinite; }
.fc-float--team { bottom: -24px; left: -34px; width: 214px; animation: fcFloat 7s ease-in-out infinite reverse; }
.fc-float--storage { top: 40%; right: -34px; width: 176px; animation: fcFloat 6.5s ease-in-out infinite .4s; }

.fc-float__label { display: flex; align-items: center; gap: 8px; font-size: .72rem; color: var(--fc-muted); font-weight: 600; margin-bottom: 8px; }
.fc-float__label i { color: var(--fc-blue-600); }
.fc-float b { font-family: var(--fc-font-display); color: var(--fc-ink-soft); }

.fc-progress { height: 7px; border-radius: 999px; background: var(--fc-blue-100); overflow: hidden; margin: 8px 0 6px; }
.fc-progress__bar { height: 100%; border-radius: 999px; background: var(--fc-gradient); width: 72%; }

.fc-avastack { display: flex; }
.fc-avastack span { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; display: grid; place-items: center; color: #fff; font-size: .62rem; font-weight: 700; }
.fc-avastack span:first-child { margin-left: 0; }

.fc-float--storage .fc-float__big { font-family: var(--fc-font-display); font-weight: 800; font-size: 1.5rem; color: var(--fc-ink-soft); letter-spacing: -.03em; }
.fc-float--storage .fc-float__big span { color: var(--fc-blue-600); font-size: .85rem; }

/* ============================================================
   09. LOGOS STRIP
   ============================================================ */
.fc-logos { padding-block: 44px; border-top: 1px solid var(--fc-border); border-bottom: 1px solid var(--fc-border); background: var(--fc-surface); }
.fc-logos__label { text-align: center; text-transform: uppercase;
    letter-spacing: 0.1rem; font-size: var(--fc-fs-caption); color: var(--fc-muted); margin-bottom: 22px; font-weight: 500; }
.fc-logos__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px 33px; }
.fc-logo { display: inline-flex; align-items: center; gap: 9px; color: #94A3B8; font-family: var(--fc-font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; transition: color var(--fc-fast); }
.fc-logo i { font-size: 1.3rem; }
.fc-logo:hover { color: #64748B; }

/* ============================================================
   10. FEATURES
   ============================================================ */
   
.fc-bento{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:minmax(150px,auto);
  grid-template-areas:
    "stat   chart   users"
    "grow   pct     revenue"
    "grow   pct     activity"
    "award  fees    activity";
  gap:20px;
  margin-top:56px;
}
.fc-bento__card{
  position:relative;
  display:flex;flex-direction:column;
  padding:26px;
  background:var(--fc-surface);
  border:1px solid var(--fc-border-2);
  border-radius:var(--fc-r-lg);
  box-shadow:var(--fc-shadow-sm);
  overflow:hidden;
  transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s cubic-bezier(.22,1,.36,1);
}
.fc-bento__card:hover{transform:translateY(-4px);box-shadow:var(--fc-shadow-md)}

/* placement */
.fc-bento__stat{grid-area:stat}
.fc-bento__chart{grid-area:chart}
.fc-bento__users{grid-area:users}
.fc-bento__grow{grid-area:grow}
.fc-bento__pct{grid-area:pct}
.fc-bento__revenue{grid-area:revenue}
.fc-bento__fees{grid-area:fees}
.fc-bento__activity{grid-area:activity}
.fc-bento__award{grid-area:award}

/* tinted variants */
.fc-bento__card--blue{
  background:linear-gradient(160deg,#EAF2FF 0%,#DCE9FF 100%);
  border-color:#CFE0FF;
}
.fc-bento__card--indigo{
  background:linear-gradient(160deg,#EEF0FF 0%,#E3E7FF 100%);
  border-color:#D6DBFF;
}
.fc-bento__card--outline{border-color:var(--fc-blue-100);box-shadow:0 12px 34px rgba(37,99,235,.10)}

/* shared type bits */
.fc-bento__num{
  font-family:var(--fc-font-display);font-weight:800;color:var(--fc-ink-soft);
  font-size:2.6rem;line-height:1;letter-spacing:-.02em;margin:0;
}
.fc-bento__title{font-family:var(--fc-font-display);font-weight:700;color:var(--fc-ink-soft);font-size:1.0625rem;margin:0}
.fc-bento__label{font-size:.9375rem;font-weight:600;color:var(--fc-ink-soft);margin:0}
.fc-bento__sub{font-size:.875rem;line-height:1.55;color:var(--fc-body);margin:8px 0 0}
.fc-bento__cap{font-size:.75rem;font-weight:600;letter-spacing:.02em;text-transform:uppercase;color:var(--fc-muted);margin:0}
.fc-bento__spacer{flex:1 1 auto}

.fc-bento__ic{
  width:44px;height:44px;flex:none;display:grid;place-items:center;
  border-radius:14px;font-size:1.15rem;color:#fff;background:var(--fc-gradient);
  box-shadow:0 8px 18px rgba(37,99,235,.28);
}
.fc-bento__ic--soft{background:#fff;color:var(--fc-blue-600);box-shadow:var(--fc-shadow-sm)}

.fc-bento__pill{
  display:inline-flex;align-items:center;gap:6px;align-self:flex-start;
  padding:5px 11px;border-radius:var(--fc-r-pill);
  font-size:.8125rem;font-weight:700;line-height:1;
  color:var(--fc-success);background:rgba(22,163,74,.10);
}
.fc-bento__pill i{font-size:.75rem}

/* avatar cluster */
.fc-bento__avatars{display:flex;align-items:center}
.fc-bento__avatars .av{
  width:40px;height:40px;border-radius:50%;border:2.5px solid #fff;margin-left:-12px;
  display:grid;place-items:center;color:#fff;font-weight:700;font-size:.8125rem;
  font-family:var(--fc-font-display);box-shadow:0 2px 6px rgba(16,24,40,.14);
}
.fc-bento__avatars .av:first-child{margin-left:0}
.av.a1{background:linear-gradient(135deg,#4F8EF7,#7CB8FF)}
.av.a2{background:linear-gradient(135deg,#6366F1,#A5B4FC)}
.av.a3{background:linear-gradient(135deg,#0EA5E9,#67E8F9)}
.av.a4{background:linear-gradient(135deg,#8B5CF6,#C4B5FD)}
.av.more{background:var(--fc-blue-100);color:var(--fc-blue-700)}

/* mini charts fill their card */
.fc-bento__chartsvg{display:block;width:100%;height:auto}

/* mini file-manager mock inside the "grow" card */
.fc-mock{
  margin-top:16px;background:#fff;border:1px solid var(--fc-border-2);
  border-radius:14px;box-shadow:var(--fc-shadow-sm);padding:12px;
}
.fc-mock__bar{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.fc-mock__ws{display:flex;align-items:center;gap:8px;font-weight:700;color:var(--fc-ink-soft);font-size:.8125rem;font-family:var(--fc-font-display)}
.fc-mock__dot{width:22px;height:22px;border-radius:7px;background:var(--fc-gradient);display:grid;place-items:center;color:#fff;font-size:.7rem}
.fc-mock__link{font-size:.6875rem;font-weight:600;color:var(--fc-blue-600)}
.fc-mock__tabs{display:flex;gap:6px;margin-bottom:10px}
.fc-mock__tab{font-size:.75rem;font-weight:600;padding:5px 12px;border-radius:var(--fc-r-pill);color:var(--fc-muted);background:var(--fc-wash-cool)}
.fc-mock__tab.is-on{color:#fff;background:var(--fc-blue-600)}
.fc-mock__row{display:flex;align-items:center;gap:9px;padding:6px 4px}
.fc-mock__row+ .fc-mock__row{border-top:1px solid var(--fc-border-2)}
.fc-mock__file{width:24px;height:24px;border-radius:7px;display:grid;place-items:center;font-size:.72rem;color:#fff}
.fc-mock__meta{flex:1;min-width:0}
.fc-mock__meta b{display:block;font-size:.75rem;color:var(--fc-ink-soft);font-family:var(--fc-font-display);font-weight:600}
.fc-mock__meta span{font-size:.6875rem;color:var(--fc-muted)}
.fc-mock__prog{width:56px;height:5px;border-radius:99px;background:var(--fc-border);overflow:hidden}
.fc-mock__prog i{display:block;height:100%;background:var(--fc-gradient)}

/* activity card footer */
.fc-bento__act-foot{display:flex;align-items:center;gap:10px;margin-top:14px}
.fc-bento__status{display:inline-flex;align-items:center;gap:7px;font-size:.8125rem;font-weight:600;color:var(--fc-ink-soft)}
.fc-bento__status .d{width:8px;height:8px;border-radius:50%;background:var(--fc-success);box-shadow:0 0 0 4px rgba(22,163,74,.14)}

/* award */
.fc-bento__award{align-items:flex-start;text-align:left}
.fc-bento__trophy{
  width:52px;height:52px;border-radius:16px;display:grid;place-items:center;
  color:var(--fc-warning);font-size:1.35rem;background:#FFF7E6;border:1px solid #FBEBC8;margin-bottom:14px;
}

/* ---- responsive ---- */
@media (max-width:992px){
  .fc-bento{
    grid-template-columns:repeat(2,1fr);
    grid-template-areas:
      "stat     chart"
      "grow     grow"
      "pct      users"
      "pct      revenue"
      "activity fees"
      "activity award";
  }
  .fc-bento__num{font-size:2.3rem}
}
@media (max-width:576px){
  .fc-bento{grid-template-columns:1fr;grid-template-areas:none;margin-top:36px;gap:14px}
  .fc-bento__card{grid-area:auto !important}
  .fc-bento__card{padding:22px}
}

/*================== Features v2 =======================*/
.fx-card{
  background:#fff; border:1px solid var(--fc-border); border-radius: var(--fc-r-lg);
  height:100%; overflow:hidden;
  transition: transform .3s var(--fc-ease), box-shadow .3s var(--fc-ease), border-color .3s var(--fc-ease);
}
.fx-card:hover{ transform: translateY(-5px); box-shadow: var(--fc-shadow-md); border-color:var(--fc-blue-100); }

.fx-canvas{
  position:relative; padding: 34px 30px; min-height: 278px;
  display:flex; align-items:center; justify-content:center;
  background:
    radial-gradient(120% 130% at 50% -20%, rgba(79,142,247,.18), transparent 62%),
    linear-gradient(180deg,#eef3ff 0%, #f5f8ff 100%);
  border-bottom:1px solid var(--fc-border-2);
  overflow:hidden;
}
.fx-canvas::before{  /* concentric rings echoing the reference */
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image: repeating-radial-gradient(circle at 50% 18%, rgba(37,99,235,.06) 0 1px, transparent 1px 28px);
  opacity:.75;
}
.fx-canvas > *{ position:relative; z-index:1; }

.fx-body{ padding: 26px 30px 30px; }
.fx-body h3{ font-size:1.3rem; margin-bottom:8px; }
.fx-body p{ color:var(--fc-muted); font-size:.96rem; margin:0; }

/* ---- shared mini window ---- */
.fx-win{
  width:100%; max-width:330px; background:#fff; border:1px solid var(--fc-border);
  border-radius:14px; box-shadow: var(--fc-shadow-md); overflow:hidden;
}
.fx-win-head{
  padding:11px 14px; border-bottom:1px solid var(--fc-border-2);
  display:flex; align-items:center; justify-content:space-between;
  font-family:var(--fc-font-display); font-weight:700; color:var(--fc-ink-soft); font-size:.92rem;
}
.fx-win-body{ padding:12px 14px; }
.fx-tabs{ display:flex; gap:6px; }
.fx-tab{ font-size:.68rem; font-weight:600; padding:3px 9px; border-radius:100px; color:var(--fc-muted); background:var(--fc-wash-cool); }
.fx-tab.on{ background:var(--fc-blue-100); color:var(--fc-blue-600); }

.fx-search{
  display:flex; align-items:center; gap:8px; border:1px solid var(--fc-border);
  border-radius:9px; padding:9px 11px; font-size:.82rem; color:var(--fc-body);
  background:#fbfcfe; margin-bottom:10px;
}
.fx-search .cur{ width:1px; height:14px; background:var(--fc-blue-600); margin-left:-2px; animation:fxcaret 1.1s steps(1) infinite; }
@keyframes fxcaret{ 50%{ opacity:0; } }

.fx-row{ display:flex; align-items:center; gap:10px; padding:8px 9px; border-radius:9px; font-size:.82rem; color:var(--fc-ink-soft); font-weight:500; }
.fx-row + .fx-row{ margin-top:2px; }
.fx-row.hl{ background:var(--fc-blue-100); }
.fx-row .meta{ margin-left:auto; font-size:.72rem; color:var(--fc-muted); font-weight:500; }
.fx-ic{ width:28px; height:28px; border-radius:8px; display:grid; place-items:center; flex:0 0 auto; }
.fx-mark{ background:rgba(37,99,235,.14); border-radius:3px; padding:0 2px; color:var(--fc-blue-700); }

/* ---- encryption pill ---- */
.fx-pill{
  display:inline-flex; align-items:center; gap:13px;
  background:var(--fc-gradient); color:#fff;
  font-family:var(--fc-font-display); font-weight:700; font-size:1.3rem; letter-spacing:-.01em;
  padding:19px 38px; border-radius:100px;
  box-shadow: 0 22px 46px -14px rgba(37,99,235,.6), inset 0 1px 0 rgba(255,255,255,.45);
}
.fx-pill::after{  /* soft outer ring */
  content:""; position:absolute; width:280px; height:280px; border-radius:50%;
  border:1.5px solid rgba(37,99,235,.14); z-index:-1;
}

/* ---- transfer / plan tiles ---- */
.fx-panel{
  width:100%; max-width:440px; background:#fff; border:1px solid var(--fc-border);
  border-radius:14px; box-shadow: var(--fc-shadow-md); padding:16px;
}
.fx-tile{ flex:1; border:1px solid var(--fc-border-2); border-radius:12px; padding:13px 14px; background:#fbfcfe; }
.fx-tile .lbl{ display:flex; align-items:center; gap:7px; font-size:.76rem; color:var(--fc-muted); font-weight:600; }
.fx-tile .val{ font-family:var(--fc-font-display); font-weight:700; font-size:1.35rem; color:var(--fc-ink-soft); margin:6px 0 9px; line-height:1; }
.fx-tile .val small{ font-size:.72rem; font-weight:600; color:var(--fc-muted); }

.fx-plan-row{ display:flex; align-items:center; gap:11px; padding:10px 11px; border-radius:10px; border:1px solid var(--fc-border-2); }
.fx-plan-row + .fx-plan-row{ margin-top:8px; }
.fx-plan-row.current{ border-color:transparent; background:var(--fc-blue-100); }
.fx-plan-row .nm{ font-weight:600; color:var(--fc-ink-soft); font-size:.86rem; }
.fx-plan-row .pr{ margin-left:auto; font-family:var(--fc-font-display); font-weight:700; color:var(--fc-ink-soft); font-size:.9rem; }
.fx-plan-row .state{ font-size:.66rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:3px 9px; border-radius:100px; }
.fx-state-cur{ background:var(--fc-gradient); color:#fff; }
.fx-state-up{ background:#fff; border:1px solid var(--fc-border); color:var(--fc-blue-600); }

.fx-mini-toggle{ display:inline-flex; background:var(--fc-wash-cool); border-radius:100px; padding:3px; gap:2px; }
.fx-mini-toggle span{ font-size:.7rem; font-weight:600; color:var(--fc-muted); padding:3px 11px; border-radius:100px; }
.fx-mini-toggle span.on{ background:#fff; color:var(--fc-ink-soft); box-shadow: var(--fc-shadow-xs); }

@media (max-width: 575px){ .fx-panel .d-flex.gap-2{ flex-direction:column; } }

/* ============================================================
   11. HOW IT WORKS
   ============================================================ */
.fc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; position: relative; }
.fc-steps::before {
  content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--fc-blue-100) 0 14px, transparent 14px 26px);
  z-index: 0;
}
.fc-step { position: relative; z-index: 1; text-align: center; }
.fc-step__num {
  width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 20px;
  background: var(--fc-surface); border: 1px solid var(--fc-border);
  display: grid; place-items: center; box-shadow: var(--fc-shadow-sm);
  font-family: var(--fc-font-display); font-weight: 800; font-size: 1.35rem; color: var(--fc-blue-600);
  position: relative;
}
.fc-step__num i { font-size: 1.5rem; color: var(--fc-blue-600); }
.fc-step__badge {
  position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--fc-ink-soft); color: #fff; font-size: .72rem; font-weight: 700; display: grid; place-items: center;
  font-family: var(--fc-font-display);
}
.fc-step h5 { font-size: 1.1rem; margin-bottom: 8px; }
.fc-step p { font-size: .92rem; margin: 0; padding-inline: 6px; }

/* ============================================================
   12. BENEFITS
   ============================================================ */
.fc-benefits__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;}
.fc-benefits__list { display: grid; grid-template-columns: 1fr; gap: 14px; }
.fc-benefit {
  display: flex; gap: 14px; padding: 18px;
  background: var(--fc-surface); border: 1px solid var(--fc-border);
  border-radius: var(--fc-r-md);
  transition: transform var(--fc-fast) var(--fc-ease), box-shadow var(--fc-fast), border-color var(--fc-fast);
}
.fc-benefit:hover { transform: translateY(-3px); box-shadow: var(--fc-shadow-sm); border-color: #DCE6F5; }
.fc-benefit__ic { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--fc-wash-blue); color: var(--fc-blue-600); display: grid; place-items: center; font-size: 1.15rem; }
.fc-benefit b { font-family: var(--fc-font-display); font-size: .98rem; color: var(--fc-ink-soft); display: block; margin-bottom: 3px; }
.fc-benefit small { font-size: .92rem; color: var(--fc-muted); line-height: 1.3; }

/* Benefits visual panel */
.fc-benefits__visual { position: relative; }
.fc-benefits__visual img{
    position: sticky;
    top: 76px;
    border-radius: var(--fc-r-xl);
}
.fc-panel {
  border-radius: var(--fc-r-xl); padding: 34px; color: #fff;
  background: var(--fc-gradient-ink); box-shadow: var(--fc-shadow-lg);
  position: relative; overflow: hidden;
}
.fc-panel::before { content: ""; position: absolute; inset: 0; background: var(--fc-glow); opacity: .9; }
.fc-panel > * { position: relative; }
.fc-panel__eyebrow { color: var(--fc-blue-400); font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.fc-panel h4 { color: #fff; margin: 10px 0 8px; }
.fc-panel p { color: #C7D2E4; font-size: .95rem; }
.fc-panel__meter { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 18px; margin-top: 22px; }
.fc-panel__meter-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.fc-panel__meter-top b { font-family: var(--fc-font-display); font-size: 1.6rem; color: #fff; }
.fc-panel__meter-top span { color: #93A3BC; font-size: .8rem; }
.fc-panel__bars { display: flex; align-items: flex-end; gap: 8px; height: 74px; }
.fc-panel__bar { flex: 1; border-radius: 6px 6px 0 0; background: rgba(124,184,255,.35); }
.fc-panel__bar.is-hi { background: var(--fc-gradient); }
.fc-panel__chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.fc-chip { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 600; padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,.08); color: #DCE7FB; border: 1px solid rgba(255,255,255,.1); }
.fc-chip i { color: #7CB8FF; }

/* ============================================================
   13. PRICING
   ============================================================ */
.fc-toggle { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; font-size: .9rem; color: var(--fc-body); font-weight: 500; }
.fc-switch { position: relative; width: 52px; height: 30px; border-radius: 999px; background: var(--fc-blue-100); border: 1px solid var(--fc-border); cursor: pointer; transition: background var(--fc-fast); }
.fc-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: var(--fc-shadow-xs); transition: transform var(--fc-mid) var(--fc-ease); }
.fc-switch.is-on { background: var(--fc-blue-600); }
.fc-switch.is-on::after { transform: translateX(22px); }

.fc-pricing__grid { margin-top: 48px; }
.fc-price {
  background: var(--fc-surface); border: 1px solid var(--fc-border);
  border-radius: var(--fc-r-xl); padding: 32px;
  display: flex; flex-direction: column;
  transition: transform var(--fc-mid) var(--fc-ease), box-shadow var(--fc-mid);
  height: 100%;
}
.fc-price:hover { transform: translateY(-4px); box-shadow: var(--fc-shadow-md); }
.fc-price--featured {
  background: var(--fc-ink); border-color: transparent; color: #fff;
  box-shadow: var(--fc-shadow-lg); transform: translateY(-10px); position: relative; overflow: hidden;
}
.fc-price form{
  margin-top: auto;
}
.fc-price--featured::before { content: ""; position: absolute; inset: 0; background: var(--fc-glow); }
.fc-price--featured > * { position: relative; }
.fc-price--featured:hover { transform: translateY(-14px); }

.fc-price__tag { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.fc-price__name { font-family: var(--fc-font-display); font-weight: 700; font-size: 1.15rem; color: var(--fc-ink-soft); }
.fc-price--featured .fc-price__name { color: #fff; }
.fc-price__desc { font-size: .98rem; color: var(--fc-muted); margin-bottom: 22px; }
.fc-price--featured .fc-price__desc { color: #93A3BC; }

.fc-price__amount { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 4px; }
.fc-price__amount b { font-family: var(--fc-font-display); font-weight: 800; font-size: 3rem; letter-spacing: -.04em; color: var(--fc-ink-soft); line-height: 1; }
.fc-price--featured .fc-price__amount b { color: #fff; }
.fc-price__amount span { color: var(--fc-muted); font-size: .9rem; padding-bottom: 6px; }
.fc-price__note { font-size: .88rem; color: var(--fc-muted); margin-bottom: 24px; }

.fc-price__list { display: grid; gap: 12px; margin-bottom: 28px; }
.fc-price__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--fc-body); }
.fc-price--featured .fc-price__list li { color: #C7D2E4; }
.fc-price__list i { color: var(--fc-success); font-size: 1rem; margin-top: 2px; flex: none; }
.fc-price--featured .fc-price__list i { color: #4ADE80; }
.fc-price .fc-btn { margin-top: auto; }

.fc-price__ribbon {
  position: absolute; top: 20px; right: -34px; transform: rotate(45deg);
  background: var(--fc-gradient); color: #fff; font-size: .68rem; font-weight: 700;
  padding: 6px 42px; font-family: var(--fc-font-display); letter-spacing: .04em;
}

/* ============================================================
   14. FAQ
   ============================================================ */
.fc-faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.fc-faq__list { display: grid; gap: 12px; }
.fc-acc {
  border: 1px solid var(--fc-border); border-radius: var(--fc-r-md);
  background: var(--fc-surface); overflow: hidden; transition: border-color var(--fc-fast), box-shadow var(--fc-fast);
}
.fc-acc.is-open { border-color: #CFDDF6; box-shadow: var(--fc-shadow-sm); }
.fc-acc__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-family: var(--fc-font-display); font-weight: 600; font-size: 1.02rem; color: var(--fc-ink-soft);
}
.fc-acc__q i { flex: none; color: var(--fc-blue-600); transition: transform var(--fc-mid) var(--fc-ease); font-size: 1.1rem; }
.fc-acc.is-open .fc-acc__q i { transform: rotate(45deg); }
.fc-acc__a { max-height: 0; overflow: hidden; transition: max-height var(--fc-mid) var(--fc-ease); }
.fc-acc__a-inner { padding: 0 22px 22px; color: var(--fc-body); font-size: .95rem; }

.fc-faq__aside { background: var(--fc-wash-blue); border: 1px solid var(--fc-border); border-radius: var(--fc-r-lg); padding: 30px; }
.fc-faq__aside .fc-faq__ic { width: 52px; height: 52px; border-radius: 15px; background: var(--fc-gradient); color: #fff; display: grid; place-items: center; font-size: 1.35rem; box-shadow: var(--fc-shadow-blue); margin-bottom: 20px; }

/* ============================================================
   15. SUPPORT CTA
   ============================================================ */
.fc-cta { position: relative; }
.fc-cta__card {
  border-radius: var(--fc-r-xl); padding: 72px 64px; color: #fff;
  background: var(--fc-gradient-ink); box-shadow: var(--fc-shadow-lg);
  position: relative; overflow: hidden; text-align: center;
}
.fc-cta__card::before { content: ""; position: absolute; inset: 0; background: var(--fc-glow); }
.fc-cta__card::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 40%, #000, transparent 75%);
          mask-image: radial-gradient(60% 60% at 50% 40%, #000, transparent 75%);
}
.fc-cta__card > * { position: relative; z-index: 1;}
.fc-cta__card h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.fc-cta__card h2 .fc-accent { color: #7CB8FF; }
.fc-cta__card p { color: #C7D2E4; max-width: 46ch; margin-inline: auto; font-size: var(--fc-fs-lead); }
.fc-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.fc-cta__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-top: 30px; }
.fc-cta__trust .fc-trust-item { color: #93A3BC; }
.fc-cta__trust .fc-trust-item i { color: #4ADE80; }

/* ============================================================
   16. FOOTER
   ============================================================ */
.fc-footer { background: var(--fc-surface); border-top: 1px solid var(--fc-border); padding-top: 80px; }
.fc-footer__top { display: grid; grid-template-columns: 1.4fr 0.7fr 0.7fr 1.6fr; gap: 40px; padding-bottom: 56px; }
.fc-footer__brand .fc-brand { margin-bottom: 16px; }
.fc-footer__brand p { font-size: .92rem; color: var(--fc-muted); max-width: 30ch; }
.fc-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.fc-footer__social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--fc-border); display: grid; place-items: center; color: var(--fc-body); transition: all var(--fc-fast); }
.fc-footer__social a:hover { color: #fff; background: var(--fc-blue-600); border-color: var(--fc-blue-600); transform: translateY(-2px); }

.fc-footer__col h6 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--fc-muted); margin-bottom: 18px; }
.fc-footer__col a { display: block; font-size: .92rem; color: var(--fc-body); padding: 6px 0; transition: color var(--fc-fast); }
.fc-footer__col a:hover { color: var(--fc-blue-600); }

.fc-footer__news h6 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--fc-muted); margin-bottom: 12px; }
.fc-footer__news p { font-size: .9rem; color: var(--fc-muted); margin-bottom: 14px; }
.fc-newsletter { display: flex; gap: 8px; }
.fc-input {
  flex: 1; border: 1px solid var(--fc-border); background: var(--fc-bg);
  border-radius: var(--fc-r-pill); padding: 12px 18px; font-family: var(--fc-font-body);
  font-size: .9rem; color: var(--fc-ink-soft); transition: border-color var(--fc-fast), box-shadow var(--fc-fast);
}
.fc-input::placeholder { color: var(--fc-muted); }
.fc-input:focus { outline: none; border-color: var(--fc-blue-400); box-shadow: 0 0 0 4px rgba(96,165,250,.18); }

.fc-footer__bottom { border-top: 1px solid var(--fc-border); padding-block: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.fc-footer__bottom p { margin: 0; font-size: .86rem; color: var(--fc-muted); }
.fc-footer__legal { display: flex; gap: 22px; }
.fc-footer__legal a { font-size: .86rem; color: var(--fc-muted); }
.fc-footer__legal a:hover { color: var(--fc-blue-600); }

/* ============================================================
   17. MOTION / REVEAL
   ============================================================ */
@keyframes fcFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes fcPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity var(--fc-slow) var(--fc-ease), transform var(--fc-slow) var(--fc-ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .fc-float { animation: none !important; }
}

/* 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;
}