/* ==========================================================================
   facturi.cloud — Landing page custom styles
   ========================================================================== */

:root {
  --fc-blue-900: #0b1d3a;
  --fc-blue-800: #122a55;
  --fc-blue-700: #1d3d7a;
  --fc-blue-600: #2c5cc9;
  --fc-blue-500: #3a6ee0;
  --fc-blue-400: #5a8af0;
  --fc-blue-300: #93b3f7;
  --fc-blue-50:  #eef3ff;
  --fc-cyan-500: #16b6c7;
  --fc-cyan-400: #4dcedb;
  --fc-indigo-500: #5b6ee0;
  --fc-ink-900: #0a1429;
  --fc-ink-700: #2b3654;
  --fc-ink-500: #5a6a86;
  --fc-ink-400: #8593ab;
  --fc-ink-300: #b6bfd1;
  --fc-bg:      #f6f8fc;
  --fc-bg-soft: #fafbfe;
  --fc-card:    #ffffff;
  --fc-border:  #e6eaf3;
  --fc-border-strong: #d2d9ea;
  --fc-success: #1cb47d;
  --fc-warning: #f59e0b;
  --fc-danger:  #ef4555;

  --fc-radius-sm: 8px;
  --fc-radius:    14px;
  --fc-radius-lg: 20px;
  --fc-radius-xl: 28px;

  --fc-shadow-xs: 0 1px 2px rgba(11, 29, 58, 0.04);
  --fc-shadow-sm: 0 4px 16px rgba(11, 29, 58, 0.06);
  --fc-shadow-md: 0 12px 32px rgba(11, 29, 58, 0.08);
  --fc-shadow-lg: 0 24px 60px rgba(11, 29, 58, 0.12);
  --fc-shadow-glow: 0 16px 60px rgba(58, 110, 224, 0.18);

  --fc-grad-primary: linear-gradient(135deg, #2c5cc9 0%, #3a6ee0 50%, #16b6c7 100%);
  --fc-grad-soft:    linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);
  --fc-grad-hero:    radial-gradient(1100px 600px at 90% -10%, rgba(58,110,224,0.16), transparent 60%),
                     radial-gradient(800px 500px at -10% 110%, rgba(22,182,199,0.12), transparent 60%),
                     linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--fc-ink-900);
  background: var(--fc-bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
}

img { max-width: 100%; height: auto; }

a { color: var(--fc-blue-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--fc-blue-700); }

h1, h2, h3, h4, h5 { color: var(--fc-ink-900); font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.25rem); line-height: 1.18; letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; line-height: 1.35; }
h4 { font-size: 1.05rem; line-height: 1.4; }

.lead { font-size: 1.075rem; color: var(--fc-ink-500); }
.text-ink { color: var(--fc-ink-900); }
.text-ink-soft { color: var(--fc-ink-500); }
.text-ink-light { color: var(--fc-ink-400); }
.text-grad {
  background: var(--fc-grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----- Container width tweak ----- */
.container { max-width: 1180px; }

/* ==========================================================================
   Header
   ========================================================================== */
.fc-header {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.fc-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(11,29,58,0.06);
  border-bottom-color: var(--fc-border);
  background: rgba(255,255,255,0.96);
}
.fc-header .navbar-brand { padding: 0; display: inline-flex; align-items: center; gap: .6rem; }
.fc-header .navbar-brand img { height: 36px; width: auto; }
.fc-header .navbar-brand .brand-text { font-weight: 700; color: var(--fc-ink-900); letter-spacing: -0.02em; }

.fc-nav { display: flex; align-items: center; gap: 1.5rem; }
.fc-nav a {
  color: var(--fc-ink-700);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: .35rem 0;
}
.fc-nav a:hover { color: var(--fc-blue-600); }
.fc-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--fc-grad-primary);
  border-radius: 2px;
  transition: width .25s ease;
}
.fc-nav a:hover::after { width: 100%; }

.fc-header-actions { display: inline-flex; gap: .55rem; align-items: center; }

/* ==========================================================================
   Buttons (premium)
   ========================================================================== */
.btn {
  font-weight: 600;
  border-radius: 10px;
  padding: .65rem 1.25rem;
  letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-sm { padding: .45rem .9rem; font-size: .9rem; }
.btn-lg { padding: .85rem 1.6rem; font-size: 1.02rem; }

.btn-primary,
.btn-fc-primary {
  color: #fff;
  background: var(--fc-grad-primary);
  border: 0;
  box-shadow: var(--fc-shadow-glow);
}
.btn-primary:hover,
.btn-fc-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(58, 110, 224, 0.28);
  color: #fff;
}
.btn-primary:focus, .btn-primary:active,
.btn-fc-primary:focus, .btn-fc-primary:active {
  background: var(--fc-grad-primary); color: #fff; box-shadow: 0 0 0 .25rem rgba(58,110,224,.25);
}

.btn-fc-outline {
  color: var(--fc-blue-700);
  background: #fff;
  border: 1px solid var(--fc-border-strong);
}
.btn-fc-outline:hover {
  border-color: var(--fc-blue-500);
  color: var(--fc-blue-700);
  box-shadow: var(--fc-shadow-sm);
  transform: translateY(-1px);
}

.btn-fc-ghost {
  color: var(--fc-ink-700);
  background: transparent;
  border: 0;
}
.btn-fc-ghost:hover { color: var(--fc-blue-600); background: var(--fc-blue-50); }

.btn-icon { display: inline-flex; align-items: center; gap: .5rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.fc-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
  background: var(--fc-grad-hero);
  overflow: hidden;
}
.fc-brand-hero {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fc-blue-700);
  margin: 0;
}
.fc-brand-hero::after {
  content: '';
  display: inline-block;
  width: 2.25rem;
  height: 3px;
  margin-left: .55rem;
  vertical-align: middle;
  border-radius: 2px;
  background: var(--fc-grad-primary);
}
.fc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(58,110,224,.08), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(22,182,199,.08), transparent 35%);
  pointer-events: none;
}
.fc-hero h1 { color: var(--fc-ink-900); margin-bottom: 1rem; }
.fc-hero h1 .text-grad { display: inline; }
.fc-hero .lead { font-size: 1.15rem; color: var(--fc-ink-500); margin-bottom: 1.75rem; max-width: 560px; }
.fc-hero .hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.fc-hero .hero-microcopy { color: var(--fc-ink-400); font-size: .85rem; }
.fc-hero .hero-microcopy i { color: var(--fc-success); }

/* ----- Trust badges ----- */
.fc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.75rem;
}
.fc-trust .badge-trust {
  background: #fff;
  color: var(--fc-ink-700);
  border: 1px solid var(--fc-border);
  border-radius: 999px;
  padding: .42rem .85rem;
  font-size: .82rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  box-shadow: var(--fc-shadow-xs);
}
.fc-trust .badge-trust i { color: var(--fc-blue-600); font-size: .95rem; }

/* ==========================================================================
   Mockup dashboard (HTML/CSS only)
   ========================================================================== */
.fc-mockup {
  position: relative;
  background: #fff;
  border-radius: var(--fc-radius-lg);
  padding: 1.1rem;
  box-shadow: var(--fc-shadow-lg);
  border: 1px solid var(--fc-border);
  overflow: hidden;
}
.fc-mockup::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 38px;
  background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--fc-border);
}
.fc-mockup .mock-dots { position: relative; display: inline-flex; gap: 6px; padding: 12px 0 0 8px; }
.fc-mockup .mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--fc-ink-300); display: block; }
.fc-mockup .mock-dots span:nth-child(1) { background: #ff6058; }
.fc-mockup .mock-dots span:nth-child(2) { background: #ffbd2e; }
.fc-mockup .mock-dots span:nth-child(3) { background: #28c941; }

.fc-mockup .mock-body { padding: 30px 4px 4px; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
  margin-bottom: .8rem;
}
.kpi-card {
  background: linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius);
  padding: .9rem;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.kpi-card:hover { transform: translateY(-2px); box-shadow: var(--fc-shadow-sm); }
.kpi-card .kpi-label { color: var(--fc-ink-500); font-size: .78rem; font-weight: 500; display: flex; align-items: center; gap: .35rem; }
.kpi-card .kpi-label i { color: var(--fc-blue-500); }
.kpi-card .kpi-value { font-size: 1.25rem; font-weight: 700; color: var(--fc-ink-900); margin-top: .25rem; letter-spacing: -0.02em; }
.kpi-card .kpi-trend { font-size: .72rem; font-weight: 600; margin-top: .15rem; display: inline-flex; align-items: center; gap: .2rem; }
.kpi-card .kpi-trend.up { color: var(--fc-success); }
.kpi-card .kpi-trend.down { color: var(--fc-danger); }

.mock-anaf {
  display: flex; align-items: center; gap: .65rem;
  background: linear-gradient(135deg, #eef3ff 0%, #e6f7fb 100%);
  border: 1px solid var(--fc-blue-50);
  border-radius: var(--fc-radius);
  padding: .85rem 1rem;
  margin-bottom: .8rem;
}
.mock-anaf .pill {
  background: var(--fc-success); color: #fff;
  border-radius: 999px; padding: .15rem .55rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
}
.mock-anaf .label { color: var(--fc-ink-700); font-weight: 600; font-size: .88rem; }
.mock-anaf .meta  { color: var(--fc-ink-500); font-size: .78rem; }
.mock-anaf .icon-circle {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; display: inline-flex; align-items: center; justify-content: center;
  color: var(--fc-blue-600); border: 1px solid var(--fc-border);
}

.mock-rows { background: #fff; border: 1px solid var(--fc-border); border-radius: var(--fc-radius); overflow: hidden; }
.mock-row {
  display: grid; grid-template-columns: 1.1fr 1fr 90px 100px;
  align-items: center;
  padding: .65rem .85rem;
  font-size: .82rem;
  border-bottom: 1px solid var(--fc-border);
}
.mock-row:last-child { border-bottom: 0; }
.mock-row.head { background: #fafbfe; color: var(--fc-ink-500); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; }
.mock-row .cli { color: var(--fc-ink-900); font-weight: 600; }
.mock-row .doc { color: var(--fc-ink-500); }
.mock-row .amt { text-align: right; font-weight: 700; color: var(--fc-ink-900); }
.mock-row .st  { display: inline-flex; align-items: center; justify-content: center; }
.mock-row .st .pill {
  border-radius: 999px; padding: .15rem .5rem; font-size: .68rem; font-weight: 600;
  background: var(--fc-blue-50); color: var(--fc-blue-700);
}
.mock-row .st .pill.ok    { background: rgba(28,180,125,.12); color: var(--fc-success); }
.mock-row .st .pill.draft { background: #fff7ed; color: #c46a0c; }

/* ==========================================================================
   Screenshot frame ("browser-like") + lightbox
   ========================================================================== */
.fc-shot {
  position: relative;
  background: #fff;
  border-radius: var(--fc-radius-lg);
  border: 1px solid var(--fc-border);
  box-shadow: var(--fc-shadow-lg);
  overflow: hidden;
  margin: 0;
}
.fc-shot-bar {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--fc-border);
}
.fc-shot-bar > span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--fc-ink-300); display: block;
}
.fc-shot-bar > span:nth-child(1) { background: #ff6058; }
.fc-shot-bar > span:nth-child(2) { background: #ffbd2e; }
.fc-shot-bar > span:nth-child(3) { background: #28c941; }
.fc-shot-url {
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--fc-border);
  color: var(--fc-ink-500);
  font-size: .72rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: .35rem;
  max-width: 70%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.fc-shot-url i { color: var(--fc-success); font-size: .7rem; }

.fc-shot-img-link {
  display: block;
  position: relative;
  background: #fafbfe;
  overflow: hidden;
  cursor: zoom-in;
}
.fc-shot-img-link img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .4s ease;
}
.fc-shot-img-link:hover img { transform: scale(1.015); }

.fc-shot-zoom {
  position: absolute;
  top: .75rem; right: .75rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(11, 29, 58, .55);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.fc-shot-img-link:hover .fc-shot-zoom,
.fc-shot-img-link:focus-visible .fc-shot-zoom {
  opacity: 1; transform: scale(1);
}

.fc-shot-caption {
  text-align: center;
  margin-top: .85rem;
  color: var(--fc-ink-400);
  font-size: .82rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  width: 100%;
  justify-content: center;
}
.fc-shot-caption i { color: var(--fc-blue-500); }

/* Card variant cu meta-info dedesubt */
.fc-shot-card { display: flex; flex-direction: column; }
.fc-shot-card .fc-shot-meta {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem 1.15rem;
  border-top: 1px solid var(--fc-border);
  background: #fff;
}
.fc-shot-card .fc-shot-meta .ic {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--fc-blue-50);
  color: var(--fc-blue-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 1px solid #d6e1ff;
}
.fc-shot-card .fc-shot-meta h3 { font-size: 1rem; margin: 0 0 .2rem; }
.fc-shot-card .fc-shot-meta p  { font-size: .87rem; color: var(--fc-ink-500); margin: 0; line-height: 1.5; }

.fc-shots-grid { margin-top: 1rem; }

/* Lightbox */
.fc-lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 16, 36, .88);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  z-index: 1080;
  opacity: 0;
  transition: opacity .2s ease;
  cursor: zoom-out;
}
.fc-lightbox.is-open { opacity: 1; }
.fc-lightbox[hidden] { display: none; }
.fc-lightbox-figure {
  margin: 0;
  max-width: min(1200px, 96vw);
  max-height: 92vh;
  display: flex; flex-direction: column; gap: .75rem;
  cursor: default;
}
.fc-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  width: auto; height: auto;
  border-radius: var(--fc-radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  background: #fff;
}
.fc-lightbox-figure figcaption {
  color: #d8e0f1;
  font-size: .92rem;
  text-align: center;
  padding: 0 .5rem;
}
.fc-lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, transform .15s ease;
  backdrop-filter: blur(8px);
}
.fc-lightbox-close:hover { background: rgba(255, 255, 255, .2); transform: scale(1.05); }
.fc-lightbox-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .fc-shot-img-link img,
  .fc-shot-zoom,
  .fc-lightbox { transition: none; }
}

/* ==========================================================================
   Section base
   ========================================================================== */
.fc-section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  position: relative;
}
.fc-section.alt { background: var(--fc-bg-soft); }
.fc-section.dark {
  background: linear-gradient(180deg, #0b1d3a 0%, #122a55 100%);
  color: #d8e0f1;
}
.fc-section.dark h2, .fc-section.dark h3 { color: #fff; }
.fc-section.dark .lead { color: #b6c4e2; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head .eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 600;
  color: var(--fc-blue-600); text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: .8rem;
  padding: .35rem .75rem; border-radius: 999px;
  background: var(--fc-blue-50); border: 1px solid #d6e1ff;
}
.section-head h2 { margin-bottom: .8rem; }
.section-head .lead { color: var(--fc-ink-500); }

/* ==========================================================================
   Feature cards
   ========================================================================== */
.fc-card {
  background: var(--fc-card);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-lg);
  padding: 1.5rem;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.fc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fc-shadow-md);
  border-color: var(--fc-blue-300);
}
.fc-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--fc-blue-50) 0%, #e9f4f8 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fc-blue-600);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid #d6e1ff;
}
.fc-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.fc-card p  { color: var(--fc-ink-500); font-size: .94rem; margin: 0; }

/* Variant: feature compact (multi-coloana) */
.feature-compact {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1.05rem;
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius);
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-compact:hover { transform: translateY(-2px); box-shadow: var(--fc-shadow-sm); border-color: var(--fc-blue-300); }
.feature-compact .ic {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--fc-blue-50);
  color: var(--fc-blue-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 1px solid #d6e1ff;
}
.feature-compact h4 { font-size: 1rem; margin: 0 0 .15rem; color: var(--fc-ink-900); }
.feature-compact p  { font-size: .87rem; color: var(--fc-ink-500); margin: 0; line-height: 1.5; }

/* ==========================================================================
   ANAF flow steps
   ========================================================================== */
.fc-anaf-card {
  background: linear-gradient(135deg, #fff 0%, #fafbfe 100%);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-lg);
  padding: 2rem;
  box-shadow: var(--fc-shadow-sm);
}
.fc-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .5rem;
  position: relative;
  margin-top: 2rem;
}
.fc-flow .step {
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius);
  padding: 1.1rem .85rem;
  text-align: center;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fc-flow .step:hover { transform: translateY(-3px); box-shadow: var(--fc-shadow-md); }
.fc-flow .step .num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--fc-grad-primary);
  color: #fff;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: .65rem;
  box-shadow: 0 6px 18px rgba(58,110,224,.25);
}
.fc-flow .step h4 { font-size: .95rem; margin-bottom: .25rem; }
.fc-flow .step p  { font-size: .78rem; color: var(--fc-ink-500); margin: 0; }
.fc-flow .step::after {
  content: '';
  position: absolute;
  top: 50%; right: -10px;
  width: 20px; height: 2px;
  background: linear-gradient(90deg, var(--fc-blue-300), transparent);
}
.fc-flow .step:last-child::after { display: none; }

/* ==========================================================================
   Workflow timeline
   ========================================================================== */
.fc-workflow { display: grid; gap: 1.5rem; }
.fc-workflow .wf-card {
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--fc-shadow-xs);
  transition: box-shadow .25s ease, transform .25s ease;
}
.fc-workflow .wf-card:hover { box-shadow: var(--fc-shadow-md); transform: translateY(-2px); }
.fc-workflow .wf-head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.fc-workflow .wf-head .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff;
  background: var(--fc-grad-primary);
}
.fc-workflow .wf-head h3 { margin: 0; font-size: 1.15rem; }
.fc-workflow .wf-steps { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.fc-workflow .wf-step {
  background: var(--fc-blue-50);
  color: var(--fc-blue-700);
  font-weight: 600;
  font-size: .87rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  border: 1px solid #d6e1ff;
  white-space: nowrap;
}
.fc-workflow .wf-arrow { color: var(--fc-blue-300); font-size: 1rem; }

/* ==========================================================================
   Audience cards
   ========================================================================== */
.fc-audience .aud-card {
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-lg);
  padding: 1.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.fc-audience .aud-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--fc-grad-primary);
  opacity: 0; transition: opacity .25s ease;
}
.fc-audience .aud-card:hover { border-color: var(--fc-blue-300); transform: translateY(-3px); box-shadow: var(--fc-shadow-md); }
.fc-audience .aud-card:hover::before { opacity: 1; }
.fc-audience .aud-card .ic {
  font-size: 1.6rem;
  color: var(--fc-blue-600);
  margin-bottom: .85rem;
}
.fc-audience .aud-card h4 { font-size: 1rem; margin-bottom: .4rem; }
.fc-audience .aud-card p  { font-size: .9rem; color: var(--fc-ink-500); margin: 0; }

/* ==========================================================================
   Benefits
   ========================================================================== */
.fc-benefits .benefit {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1rem 0;
}
.fc-benefits .benefit .ic {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(28,180,125,.12);
  color: var(--fc-success);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.fc-benefits .benefit h4 { font-size: .98rem; margin-bottom: .2rem; }
.fc-benefits .benefit p  { font-size: .88rem; color: var(--fc-ink-500); margin: 0; }

/* ==========================================================================
   Why us — grid
   ========================================================================== */
.fc-why .why-card {
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-lg);
  padding: 1.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fc-why .why-card:hover { transform: translateY(-2px); box-shadow: var(--fc-shadow-md); }
.fc-why .why-card .num {
  font-weight: 700; font-size: 1.6rem; color: var(--fc-blue-600);
  background: var(--fc-blue-50); border-radius: 12px; padding: .15rem .65rem;
  display: inline-block; margin-bottom: .85rem; border: 1px solid #d6e1ff;
  letter-spacing: -0.02em;
}
.fc-why .why-card h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.fc-why .why-card p  { font-size: .92rem; color: var(--fc-ink-500); margin: 0; }

/* ==========================================================================
   Preview panels
   ========================================================================== */
.fc-preview-grid { display: grid; gap: 1.25rem; }
.preview-panel {
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-lg);
  box-shadow: var(--fc-shadow-md);
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}
.preview-panel .panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: .85rem; margin-bottom: .85rem;
  border-bottom: 1px solid var(--fc-border);
}
.preview-panel .panel-title { font-weight: 700; font-size: 1rem; color: var(--fc-ink-900); }
.preview-panel .panel-sub { font-size: .8rem; color: var(--fc-ink-500); }
.preview-panel .pp-row {
  display: grid; grid-template-columns: 1fr 90px 90px 90px;
  gap: .5rem; padding: .55rem 0;
  font-size: .84rem; border-bottom: 1px dashed var(--fc-border);
  align-items: center;
}
.preview-panel .pp-row:last-child { border-bottom: 0; }
.preview-panel .pp-row.h { color: var(--fc-ink-500); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; border-bottom: 1px solid var(--fc-border); }
.preview-panel .pp-row .right { text-align: right; }
.preview-panel .totals { margin-top: .85rem; display: flex; justify-content: flex-end; gap: 2.5rem; font-size: .9rem; }
.preview-panel .totals .tval { font-weight: 700; color: var(--fc-ink-900); }
.preview-panel .totals .grand { font-size: 1.1rem; color: var(--fc-blue-700); }

.preview-panel .pp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-bottom: .65rem; }
.preview-panel .pp-input {
  background: #fafbfe; border: 1px solid var(--fc-border); border-radius: 8px;
  padding: .5rem .75rem; font-size: .85rem; color: var(--fc-ink-700);
}
.preview-panel .pp-label { display: block; font-size: .75rem; color: var(--fc-ink-500); margin-bottom: .25rem; font-weight: 500; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.fc-faq .accordion {
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--fc-shadow-xs);
}
.fc-faq .accordion-item { border: 0; border-bottom: 1px solid var(--fc-border); }
.fc-faq .accordion-item:last-child { border-bottom: 0; }
.fc-faq .accordion-button {
  font-weight: 600;
  color: var(--fc-ink-900);
  padding: 1.15rem 1.35rem;
  background: #fff;
  border-radius: 0 !important;
}
.fc-faq .accordion-button:not(.collapsed) {
  color: var(--fc-blue-700);
  background: #fafbfe;
  box-shadow: none;
}
.fc-faq .accordion-button:focus { box-shadow: none; border-color: transparent; }
.fc-faq .accordion-body { color: var(--fc-ink-500); padding: 0 1.35rem 1.35rem; line-height: 1.65; }

/* ==========================================================================
   CTA box
   ========================================================================== */
.fc-cta-box {
  background: var(--fc-grad-primary);
  border-radius: var(--fc-radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(44,92,201,0.25);
}
.fc-cta-box::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 60%);
  border-radius: 50%;
}
.fc-cta-box::after {
  content: ''; position: absolute; bottom: -120px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  border-radius: 50%;
}
.fc-cta-box h2 { color: #fff; }
.fc-cta-box p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.fc-cta-box .btn-fc-primary {
  background: #fff;
  color: var(--fc-blue-700);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.fc-cta-box .btn-fc-primary:hover { color: var(--fc-blue-800); }
.fc-cta-box .btn-fc-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.fc-cta-box .btn-fc-outline:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Contact form
   ========================================================================== */
.fc-form {
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--fc-shadow-md);
}
.fc-form .form-label { font-weight: 600; font-size: .88rem; color: var(--fc-ink-700); margin-bottom: .35rem; }
.fc-form .form-control,
.fc-form .form-select {
  border: 1px solid var(--fc-border-strong);
  border-radius: 10px;
  padding: .7rem .9rem;
  font-size: .95rem;
  background: #fff;
  color: var(--fc-ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.fc-form .form-control:focus,
.fc-form .form-select:focus {
  border-color: var(--fc-blue-500);
  box-shadow: 0 0 0 .25rem rgba(58,110,224,.15);
  outline: 0;
}
.fc-form .form-control.is-invalid {
  border-color: var(--fc-danger);
  background-image: none;
  padding-right: .9rem;
}
.fc-form .invalid-feedback { font-size: .8rem; }
.fc-form .form-text { font-size: .8rem; color: var(--fc-ink-400); }
.fc-form .form-check-label a { color: var(--fc-blue-600); }
.fc-form-success {
  background: rgba(28,180,125,.08);
  border: 1px solid rgba(28,180,125,.25);
  border-radius: 10px;
  padding: .85rem 1rem;
  color: var(--fc-success);
  font-weight: 600;
  font-size: .9rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.fc-footer {
  background: var(--fc-blue-900);
  color: #b6c4e2;
  padding: 4rem 0 1.5rem;
}
.fc-footer .footer-brand { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.fc-footer .footer-brand img { height: 40px; width: auto; }
.fc-footer .footer-tagline { font-size: .9rem; max-width: 320px; line-height: 1.6; color: #93a4ca; }
.fc-footer h5 { color: #fff; font-size: .92rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.fc-footer ul { list-style: none; padding: 0; margin: 0; }
.fc-footer ul li { margin-bottom: .55rem; }
.fc-footer ul li a {
  color: #b6c4e2;
  font-size: .92rem;
  transition: color .15s ease;
  display: inline-flex; align-items: center; gap: .35rem;
}
.fc-footer ul li a:hover { color: #fff; }
.fc-footer ul li a i { font-size: .85rem; opacity: .7; }
.fc-footer .footer-divider { border-top: 1px solid rgba(255,255,255,0.08); margin: 2.5rem 0 1.25rem; }
.fc-footer .footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: .85rem; color: #93a4ca;
}
.fc-footer .footer-bottom a { color: #93a4ca; }
.fc-footer .footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.fc-mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-top: 1px solid var(--fc-border);
  padding: .65rem .85rem;
  z-index: 1040;
  box-shadow: 0 -8px 24px rgba(11,29,58,0.08);
}
.fc-mobile-cta .row-cta { display: flex; gap: .5rem; }
.fc-mobile-cta .row-cta > * { flex: 1; }

@media (max-width: 767.98px) {
  .fc-mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ==========================================================================
   Animații discrete
   ========================================================================== */
@keyframes fcFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.fc-float { animation: fcFloat 6s ease-in-out infinite; }

@keyframes fcFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fc-anim { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.fc-anim.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive tweaks
   ========================================================================== */
@media (max-width: 991.98px) {
  .fc-flow { grid-template-columns: repeat(2, 1fr); }
  .fc-flow .step::after { display: none; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
  .fc-nav { display: none !important; }
  .fc-header-actions .btn-fc-outline { display: none; }
  .mock-row { grid-template-columns: 1.2fr 1fr 70px 80px; font-size: .76rem; }
  .preview-panel .pp-row { grid-template-columns: 1fr 70px 70px 70px; font-size: .78rem; }
  .preview-panel .totals { gap: 1.5rem; font-size: .85rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
}

@media (max-width: 575.98px) {
  .fc-flow { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .fc-cta-box { padding: 1.75rem; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .fc-float { animation: none; }
  .fc-anim  { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
