/* ============================================================
   Verigo — Landing Page v2.0 — Premium Dark SaaS
   ============================================================ */

/* ── Navbar ────────────────────────────────────────────────── */
.landing-body {
  background: #000614;
  color: #e2e8f0;
  overflow-x: hidden;
}

.landing-nav {
  background: rgba(0, 6, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.landing-nav.scrolled {
  background: rgba(0, 6, 20, 0.95);
  border-bottom-color: rgba(99,102,241,0.15);
  box-shadow: 0 1px 40px rgba(0,0,0,0.6);
}

.nav-brand-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  box-shadow: 0 4px 15px rgba(99,102,241,0.4);
}
.navbar-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.navbar-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(226,232,240,0.7);
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.navbar-nav .nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-cta { display: flex; align-items: center; gap: 0.5rem; }

.btn-ghost-nav {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(226,232,240,0.8);
  border-radius: 8px;
  background: transparent;
  border: none;
  transition: all 0.2s;
}
.btn-ghost-nav:hover { color: #fff; background: rgba(255,255,255,0.08); }

.btn-primary-nav {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: #6366f1;
  color: #fff;
  border-radius: 8px;
  border: none;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(99,102,241,0.4);
}
.btn-primary-nav:hover {
  background: #4f46e5;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.5);
}
.navbar-toggler { border: none; color: #e2e8f0; font-size: 1.25rem; }
.navbar-toggler:focus { box-shadow: none; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(99,102,241,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(139,92,246,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 110%, rgba(6,182,212,0.08) 0%, transparent 55%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 20%, transparent 100%);
}

.hero-section .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  color: #a5b4fc;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.5s ease both;
}
.hero-eyebrow .pulse-dot {
  width: 6px; height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.3);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.5s ease 0.1s both;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #a78bfa 40%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.075rem;
  line-height: 1.8;
  color: rgba(148,163,184,0.9);
  max-width: 500px;
  margin-bottom: 2.25rem;
  animation: fadeInUp 0.5s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.5s ease 0.3s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border-radius: 12px;
  border: none;
  transition: all 0.25s;
  box-shadow: 0 6px 25px rgba(99,102,241,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-hero-primary:hover::before { transform: translateX(100%); }
.btn-hero-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(99,102,241,0.55);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  color: #e2e8f0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.25s;
  backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(99,102,241,0.4);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  animation: fadeInUp 0.5s ease 0.4s both;
}
.hero-avatars { display: flex; }
.hero-avatars img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #000614;
  margin-left: -8px;
  object-fit: cover;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-social-text { font-size: 0.8rem; color: rgba(148,163,184,0.8); line-height: 1.4; }
.hero-social-text strong { color: #fff; }
.hero-stars { color: #fbbf24; font-size: 0.75rem; display: block; }

/* ── Hero Visual ───────────────────────────────────────────── */
.hero-visual-wrapper {
  position: relative;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-dashboard-card {
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(99,102,241,0.1);
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #10b981; }
.dash-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  color: rgba(148,163,184,0.7);
  font-family: 'DM Mono', monospace;
  text-align: center;
}

.dash-body { padding: 1rem; }

.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; margin-bottom: 0.75rem; }
.dash-stat-mini {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 0.625rem;
}
.dash-stat-mini .label { font-size: 0.6rem; color: rgba(148,163,184,0.7); font-weight: 500; }
.dash-stat-mini .value { font-size: 1.125rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.dash-stat-mini .trend-up { color: #10b981; font-size: 0.6rem; font-weight: 600; }

.dash-verif-list { display: flex; flex-direction: column; gap: 0.375rem; }
.dash-verif-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
}
.dash-verif-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.dv-green { background: rgba(16,185,129,0.15); color: #10b981; }
.dv-red   { background: rgba(239,68,68,0.15);  color: #ef4444; }
.dv-amber { background: rgba(245,158,11,0.15); color: #f59e0b; }
.dash-verif-info { flex: 1; min-width: 0; }
.dash-verif-info .dv-bank { font-size: 0.7rem; font-weight: 600; color: #e2e8f0; }
.dash-verif-info .dv-ref  { font-size: 0.6rem; color: rgba(148,163,184,0.6); }
.dash-verif-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15em 0.5em;
  border-radius: 100px;
}
.db-verified  { background: rgba(16,185,129,0.15); color: #10b981; }
.db-rejected  { background: rgba(239,68,68,0.15); color: #ef4444; }
.db-suspicious{ background: rgba(245,158,11,0.15); color: #f59e0b; }

.hero-float-card {
  position: absolute;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  min-width: 175px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card i { font-size: 1.25rem; flex-shrink: 0; }
.hero-float-card .fc-title { font-size: 0.75rem; font-weight: 700; color: #fff; display: block; }
.hero-float-card .fc-sub   { font-size: 0.65rem; color: rgba(148,163,184,0.7); display: block; }
.hfc-1 { top: 5%; right: -20px; animation-delay: 0s; }
.hfc-2 { bottom: 8%; left: -25px; animation-delay: 2s; }
.hfc-3 { top: 50%; right: -15px; animation-delay: 1s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.01);
}
.trust-label {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(148,163,184,0.5);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.trust-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  align-items: center;
}
.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  color: rgba(148,163,184,0.6);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s;
}
.trust-logo-item:hover { color: rgba(226,232,240,0.9); border-color: rgba(99,102,241,0.3); background: rgba(99,102,241,0.05); }
.trust-logo-item i { font-size: 1.1rem; }

/* ── Stats Row ─────────────────────────────────────────────── */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(99,102,241,0.03) 50%, transparent);
}
.stat-big-item { text-align: center; padding: 1.5rem; }
.stat-big-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}
.stat-big-label { font-size: 0.9rem; color: rgba(148,163,184,0.7); font-weight: 500; margin-top: 0.375rem; }
.stat-big-divider { width: 1px; background: rgba(255,255,255,0.07); align-self: stretch; margin: 0.5rem 0; }

/* ── Section Commons ───────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #818cf8;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: linear-gradient(to right, #6366f1, #8b5cf6);
  border-radius: 2px;
}
.section-title-dark {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.1;
}
.section-subtitle-dark {
  font-size: 1.0625rem;
  color: rgba(148,163,184,0.8);
  line-height: 1.75;
  max-width: 540px;
  margin-top: 0.875rem;
}

/* ── Features ──────────────────────────────────────────────── */
.features-section {
  padding: 7rem 0;
  background: #000614;
}

.feature-card-v2 {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.feature-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: inherit;
}
.feature-card-v2::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card-v2:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(99,102,241,0.15);
}
.feature-card-v2:hover::before, .feature-card-v2:hover::after { opacity: 1; }

.feature-icon-v2 {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.fi-indigo { background: rgba(99,102,241,0.12); color: #818cf8; border: 1px solid rgba(99,102,241,0.2); }
.fi-purple { background: rgba(139,92,246,0.12); color: #a78bfa; border: 1px solid rgba(139,92,246,0.2); }
.fi-red    { background: rgba(239,68,68,0.12);  color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.fi-green  { background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.2); }
.fi-amber  { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.2); }
.fi-cyan   { background: rgba(6,182,212,0.12);  color: #22d3ee; border: 1px solid rgba(6,182,212,0.2); }

.feature-card-v2 h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.625rem; }
.feature-card-v2 p  { color: rgba(148,163,184,0.8); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1rem; }
.feature-chip {
  display: inline-block;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  padding: 0.2em 0.65em;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #a5b4fc;
  font-family: 'DM Mono', monospace;
}

/* ── How It Works ──────────────────────────────────────────── */
.how-section { padding: 7rem 0; background: rgba(99,102,241,0.02); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }

.how-step-v2 {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.25s;
  cursor: default;
}
.how-step-v2:last-child { border-bottom: none; }
.how-step-v2:hover .how-step-num { color: #818cf8; }

.how-step-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(99,102,241,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: right;
  transition: color 0.25s;
}
.how-step-content h4 {
  font-size: 1.075rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.how-step-content p { color: rgba(148,163,184,0.75); font-size: 0.9rem; line-height: 1.75; }

/* Browser mockup */
.browser-mockup {
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
}
.bm-bar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bm-dots { display: flex; gap: 5px; }
.bm-dots span { width: 10px; height: 10px; border-radius: 50%; }
.bm-dots span:nth-child(1) { background: #ef4444; }
.bm-dots span:nth-child(2) { background: #f59e0b; }
.bm-dots span:nth-child(3) { background: #10b981; }
.bm-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  color: rgba(148,163,184,0.6);
  font-family: 'DM Mono', monospace;
  text-align: center;
}
.bm-body { padding: 1.25rem; }

.upload-zone-mock {
  border: 2px dashed rgba(99,102,241,0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  background: rgba(99,102,241,0.04);
  margin-bottom: 1rem;
}
.upload-zone-mock i { font-size: 2rem; color: #6366f1; display: block; margin-bottom: 0.5rem; }
.upload-zone-mock span { display: block; font-size: 0.8rem; font-weight: 600; color: #e2e8f0; }
.upload-zone-mock small { font-size: 0.7rem; color: rgba(148,163,184,0.6); }

.mock-data-rows { display: flex; flex-direction: column; gap: 0.375rem; }
.mock-data-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  font-size: 0.8rem;
}
.mock-data-row .ml { color: rgba(148,163,184,0.7); font-weight: 500; }
.mock-data-row .mv { color: #e2e8f0; font-weight: 600; }
.mock-result-banner {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.mrb-verified { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); color: #34d399; }
.mrb-verified i { font-size: 1.25rem; }

/* ── Pricing ───────────────────────────────────────────────── */
.pricing-section { padding: 7rem 0; background: #000614; }

.pricing-toggle-label { font-size: 0.9rem; font-weight: 600; color: rgba(148,163,184,0.6); cursor: pointer; }
.pricing-toggle-label.active { color: #fff; }
.form-check-input:checked { background-color: #6366f1; border-color: #6366f1; }

.pricing-card-v2 {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.35s;
  overflow: hidden;
}
.pricing-card-v2:hover { transform: translateY(-6px); border-color: rgba(99,102,241,0.25); box-shadow: 0 25px 60px rgba(0,0,0,0.4); }
.pricing-card-v2.pricing-popular {
  background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(139,92,246,0.08) 100%);
  border: 1px solid rgba(99,102,241,0.35);
  box-shadow: 0 0 60px rgba(99,102,241,0.1), 0 0 0 1px rgba(99,102,241,0.2);
}

.popular-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3em 1em;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.pricing-plan-name { font-size: 1rem; font-weight: 700; color: rgba(226,232,240,0.8); margin-bottom: 1.25rem; }
.pricing-popular .pricing-plan-name { color: #a5b4fc; }

.pricing-amount-v2 { margin-bottom: 0.5rem; }
.pa-currency { font-size: 1.5rem; font-weight: 700; color: #fff; vertical-align: top; margin-top: 0.35rem; display: inline-block; }
.pa-value { font-size: 3.5rem; font-weight: 900; color: #fff; letter-spacing: -0.05em; line-height: 1; }
.pa-period { color: rgba(148,163,184,0.6); font-size: 0.875rem; margin-left: 0.25rem; }
.pa-free { font-size: 3rem; font-weight: 900; color: #fff; letter-spacing: -0.04em; }

.pricing-meta-row {
  display: flex;
  gap: 1rem;
  margin: 0.75rem 0 1.5rem;
  flex-wrap: wrap;
}
.pricing-meta-row span { font-size: 0.78rem; color: rgba(148,163,184,0.7); display: flex; align-items: center; gap: 0.3rem; }

.pricing-feats-v2 { list-style: none; padding: 0; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-feats-v2 li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: rgba(148,163,184,0.85); }
.pricing-feats-v2 li i { color: #10b981; font-size: 0.85rem; flex-shrink: 0; }

.btn-plan {
  width: 100%;
  padding: 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #e2e8f0;
  transition: all 0.25s;
  cursor: pointer;
}
.btn-plan:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
.btn-plan-popular {
  width: 100%;
  padding: 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  transition: all 0.25s;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(99,102,241,0.45);
}
.btn-plan-popular:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(99,102,241,0.55); }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { padding: 7rem 0; background: rgba(99,102,241,0.02); border-top: 1px solid rgba(255,255,255,0.04); }

.testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.testi-card.testi-featured {
  background: linear-gradient(135deg, rgba(99,102,241,0.15) 0%, rgba(139,92,246,0.1) 100%);
  border-color: rgba(99,102,241,0.3);
}

.testi-stars { margin-bottom: 1rem; }
.testi-stars i { color: #fbbf24; font-size: 0.875rem; }

.testi-quote { font-size: 0.9375rem; line-height: 1.75; color: rgba(226,232,240,0.85); margin-bottom: 1.5rem; flex: 1; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(99,102,241,0.3);
}
.testi-author strong { display: block; font-size: 0.875rem; font-weight: 700; color: #fff; }
.testi-author span   { font-size: 0.78rem; color: rgba(148,163,184,0.7); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: 7rem 0; background: #000614; }

.faq-accordion-v2 .accordion-item {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 14px !important;
  margin-bottom: 0.625rem;
  overflow: hidden;
}
.faq-accordion-v2 .accordion-button {
  background: transparent !important;
  color: #e2e8f0 !important;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 1.25rem 1.375rem;
  font-family: var(--font);
  box-shadow: none !important;
}
.faq-accordion-v2 .accordion-button:not(.collapsed) {
  color: #818cf8 !important;
  background: rgba(99,102,241,0.05) !important;
}
.faq-accordion-v2 .accordion-button::after { filter: invert(1); opacity: 0.5; }
.faq-accordion-v2 .accordion-body {
  color: rgba(148,163,184,0.85);
  font-size: 0.9rem;
  line-height: 1.8;
  padding: 0 1.375rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── CTA ───────────────────────────────────────────────────── */
.cta-section { padding: 7rem 0; }

.cta-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(139,92,246,0.08) 50%, rgba(6,182,212,0.05) 100%);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 32px;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}
.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-wrapper h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #fff; letter-spacing: -0.04em; margin-bottom: 0.875rem; position: relative; z-index: 1; }
.cta-wrapper p  { color: rgba(148,163,184,0.8); font-size: 1.05rem; margin-bottom: 2.5rem; position: relative; z-index: 1; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; position: relative; z-index: 1; }

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border-radius: 14px;
  border: none;
  transition: all 0.25s;
  box-shadow: 0 8px 25px rgba(99,102,241,0.5);
}
.btn-cta-primary:hover { color: #fff; opacity: 0.9; transform: translateY(-2px); box-shadow: 0 15px 35px rgba(99,102,241,0.6); }

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  color: rgba(226,232,240,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  transition: all 0.25s;
}
.btn-cta-secondary:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* ── Contact ───────────────────────────────────────────────── */
.contact-section { padding: 7rem 0; background: rgba(99,102,241,0.02); border-top: 1px solid rgba(255,255,255,0.04); }

.contact-info-v2 { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item-v2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #818cf8;
  flex-shrink: 0;
}
.ci-text .ci-label { font-size: 0.75rem; color: rgba(148,163,184,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.ci-text .ci-value { font-size: 0.9375rem; color: #e2e8f0; font-weight: 500; }

.contact-form-v2 .form-label { color: rgba(226,232,240,0.7); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 0.375rem; }
.contact-form-v2 .form-control,
.contact-form-v2 textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #e2e8f0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  transition: all 0.2s;
  width: 100%;
  font-family: var(--font);
}
.contact-form-v2 .form-control::placeholder,
.contact-form-v2 textarea::placeholder { color: rgba(148,163,184,0.4); }
.contact-form-v2 .form-control:focus,
.contact-form-v2 textarea:focus { outline: none; border-color: rgba(99,102,241,0.5); background: rgba(99,102,241,0.06); box-shadow: 0 0 0 3px rgba(99,102,241,0.12); }

.btn-contact-send {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(99,102,241,0.4);
}
.btn-contact-send:hover { opacity: 0.9; transform: translateY(-1px); color: #fff; }

/* ── Footer ────────────────────────────────────────────────── */
.landing-footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0 2rem;
}
.footer-brand-v2 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.875rem;
  letter-spacing: -0.03em;
}
.footer-brand-icon-v2 {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
}
.footer-desc-v2 { font-size: 0.875rem; color: rgba(148,163,184,0.6); line-height: 1.7; max-width: 280px; }
.footer-social-v2 { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.social-link-v2 {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(148,163,184,0.7);
  font-size: 0.875rem;
  transition: all 0.2s;
}
.social-link-v2:hover { background: #6366f1; border-color: #6366f1; color: #fff; }

.footer-col-title { font-size: 0.75rem; font-weight: 700; color: rgba(226,232,240,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.125rem; }
.footer-links-v2 { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links-v2 a { font-size: 0.875rem; color: rgba(148,163,184,0.6); transition: color 0.2s; }
.footer-links-v2 a:hover { color: rgba(226,232,240,0.9); }

.footer-bottom-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8125rem;
  color: rgba(148,163,184,0.5);
}

.btn-install-pwa {
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  color: #818cf8;
  padding: 0.4rem 0.875rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}
.btn-install-pwa:hover { background: rgba(99,102,241,0.2); }

/* ── Cookie Banner ─────────────────────────────────────────── */
#cookieConsent {
  background: rgba(15,23,42,0.95) !important;
  border-top: 1px solid rgba(99,102,241,0.2);
  backdrop-filter: blur(20px);
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-section { min-height: auto; padding: 4rem 0 3rem; }
  .hfc-1, .hfc-2, .hfc-3 { display: none; }
  .cta-wrapper { padding: 3rem 1.5rem; border-radius: 20px; }
  .stats-section { padding: 3rem 0; }
  .stat-big-divider { display: none; }
  .hero-title { font-size: 2.25rem; }
}

/* ============================================================
   Verigo Landing Redesign Extensions
   ============================================================ */

.hero-section {
  min-height: 100vh;
  padding-top: 7rem;
}

.hero-title {
  max-width: 720px;
}

.hero-subtitle {
  max-width: 600px;
}

.hero-dashboard-card,
.browser-mockup,
.feature-card-v2,
.pricing-card-v2,
.testi-card {
  box-shadow: 0 30px 90px rgba(0,0,0,0.38);
}

.showcase-section {
  padding: 6rem 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(99,102,241,0.04)),
    #020817;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.showcase-copy {
  padding-right: 1rem;
}

.showcase-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 2rem;
}

.showcase-point {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.showcase-point i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: rgba(99,102,241,0.12);
  color: #a5b4fc;
}

.showcase-point strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.showcase-point span {
  display: block;
  color: rgba(148,163,184,0.82);
  font-size: 0.86rem;
  line-height: 1.7;
}

.showcase-slider {
  position: relative;
}

.showcase-carousel {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.03);
}

.showcase-slide {
  position: relative;
  min-height: 520px;
}

.showcase-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.showcase-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,23,0.05) 0%, rgba(2,6,23,0.82) 100%);
}

.showcase-caption {
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  z-index: 2;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(2,6,23,0.56);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
}

.showcase-caption small {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(99,102,241,0.16);
  color: #c7d2fe;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.showcase-caption h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.45rem;
}

.showcase-caption p {
  margin: 0;
  color: rgba(226,232,240,0.84);
  line-height: 1.7;
  font-size: 0.92rem;
}

.showcase-carousel .carousel-indicators {
  margin-bottom: 0.6rem;
}

.showcase-carousel .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
}

.showcase-carousel .carousel-control-prev,
.showcase-carousel .carousel-control-next {
  width: 54px;
  height: 54px;
  top: 1.25rem;
  bottom: auto;
  border-radius: 16px;
  background: rgba(2,6,23,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 1;
}

.showcase-carousel .carousel-control-prev {
  left: auto;
  right: 4.9rem;
}

.showcase-carousel .carousel-control-next {
  right: 1.25rem;
}

.section-title-dark,
.cta-wrapper h2 {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.landing-footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.45)),
    #01050f;
}

@media (max-width: 991px) {
  .showcase-copy {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .showcase-section {
    padding: 4rem 0;
  }

  .showcase-slide,
  .showcase-slide img {
    min-height: 420px;
    height: 420px;
  }

  .showcase-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem;
  }
}
