/* =========================================================
   Cloud Megastore Landing Page Styles
   Theme: Soft Professional Blue with Light & Dark Sections
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
  /* Brand blues */
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;

  /* Neutrals */
  --ink-900: #0b1220;
  --ink-800: #0f172a;
  --ink-700: #1e293b;
  --ink-600: #334155;
  --ink-500: #475569;
  --ink-400: #64748b;
  --ink-300: #94a3b8;
  --ink-200: #cbd5e1;
  --ink-100: #e2e8f0;
  --ink-50:  #f1f5f9;
  --paper:   #ffffff;
  --soft:    #f7faff;

  /* Accents */
  --green: #10b981;
  --orange: #f59e0b;
  --purple: #8b5cf6;
  --pink: #ec4899;

  /* Gradients */
  --grad-hero: linear-gradient(180deg, #eaf2ff 0%, #f6f9ff 60%, #ffffff 100%);
  --grad-brand: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  --grad-brand-soft: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  --grad-dark: linear-gradient(135deg, #0b1220 0%, #1e3a8a 60%, #1d4ed8 100%);
  --grad-cta: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #3b82f6 100%);

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 16px 40px rgba(37, 99, 235, 0.25);
  --shadow-blue-lg: 0 24px 60px rgba(37, 99, 235, 0.35);

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

  /* Type */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p { color: var(--ink-500); }

a { text-decoration: none; transition: all 0.2s ease; }

img { max-width: 100%; display: block; }

section { position: relative; }

/* ---------- Utility Buttons ---------- */
.btn {
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: 0.7rem 1.5rem;
  transition: all 0.25s ease;
  border: none;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
}

.btn-lg { padding: 0.95rem 1.9rem; font-size: 1rem; }

.btn-brand {
  background: var(--grad-brand);
  color: #fff !important;
  box-shadow: var(--shadow-blue);
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg);
  color: #fff !important;
}

.btn-outline-brand {
  background: transparent;
  color: var(--blue-600) !important;
  border: 1.5px solid var(--blue-200);
}
.btn-outline-brand:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
  color: var(--blue-700) !important;
}

.btn-ghost {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--ink-100);
  color: var(--ink-800) !important;
}
.btn-ghost:hover {
  background: #fff;
  border-color: var(--blue-300);
  color: var(--blue-700) !important;
}

.eyebrow {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-100);
  padding: 0.35rem 0.95rem;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.eyebrow-light {
  background: rgba(96, 165, 250, 0.12);
  color: var(--blue-200);
  border-color: rgba(96, 165, 250, 0.25);
}

.section { padding: 100px 0; }
.section-head { margin-bottom: 60px; }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; max-width: 640px; margin: 0 auto; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-white-70 { color: rgba(255,255,255,0.7) !important; }

.title-accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.title-accent-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue-600);
}

.link-arrow {
  color: var(--blue-600);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
}
.link-arrow i { transition: transform 0.2s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.navbar-brand{
  max-width: 240px;
}
.navbar { padding: 0.85rem 0; }

.brand-logo {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad-brand);
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-right: 10px;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
}
.brand-name {
  font-weight: 800;
  color: var(--ink-900);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
  color: var(--ink-600) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  font-size: 0.95rem;
  border-radius: var(--r-pill);
  transition: all 0.2s ease;
}
.navbar-nav .nav-link:hover { color: var(--blue-700) !important; background: var(--blue-50); }
.navbar-nav .nav-link.active { color: var(--blue-700) !important; }

.nav-signin {
  color: var(--ink-700) !important;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.nav-signin:hover { color: var(--blue-700) !important; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--grad-hero);
  padding: 40px 0 60px;
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.shape-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #93c5fd, transparent 70%);
  top: -100px; right: -120px;
}
.shape-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #c7d2fe, transparent 70%);
  bottom: -80px; left: -100px;
}
.shape-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--blue-100);
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  color: var(--ink-700);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--ink-500);
  max-width: 560px;
  line-height: 1.65;
}

.avatars {
  display: inline-flex;
}
.avatars img {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.avatars img:first-child { margin-left: 0; }

.stars { color: var(--orange); font-size: 0.95rem; }
.stars .rating-num { color: var(--ink-800); font-weight: 700; margin-left: 6px; }
.meta-sub { font-size: 0.85rem; color: var(--ink-500); margin-top: 2px; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem 1.5rem;
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--blue-200);
  max-width: 560px; 
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.meta-item i {
  color: var(--blue-500);
    font-size: 1.05rem;
}
/* Hero visual: dashboard */
.hero-visual {
  position: relative;
  padding: 1rem;
}

.dashboard-card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.dashboard-card:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
}

.dash-top {
  display: flex;
  min-height: 380px;
}

.dash-sidebar {
  width: 64px;
  background: linear-gradient(180deg, #f8fafc, #eef4ff);
  border-right: 1px solid var(--ink-100);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ds-logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.ds-item {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-400);
  cursor: pointer;
  transition: all 0.2s ease;
}
.ds-item.active { background: var(--blue-100); color: var(--blue-700); }
.ds-item:hover { background: var(--blue-50); color: var(--blue-600); }

.dash-main {
  flex: 1;
  padding: 1.25rem;
  background: #fff;
}
.dm-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}
.dm-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-900);
}
.dm-sub {
  font-size: 0.78rem;
  color: var(--ink-400);
  margin-top: 2px;
}
.dm-search {
  background: var(--ink-50);
  border-radius: var(--r-pill);
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
  color: var(--ink-400);
}

.dm-files {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.1rem;
}
.file-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--ink-50);
  border-radius: 12px;
  transition: all 0.2s ease;
}
.file-card:hover { background: var(--blue-50); transform: translateY(-2px); }
.fc-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.ic-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.ic-green { background: linear-gradient(135deg, #10b981, #059669); }
.ic-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.ic-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.fc-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fc-sub { font-size: 0.7rem; color: var(--ink-400); }
.fc-meta { min-width: 0; }

.dm-storage {
  background: var(--ink-50);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}
.ds-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.ds-label { font-size: 0.78rem; color: var(--ink-500); font-weight: 600; }
.ds-value { font-size: 0.78rem; color: var(--ink-800); font-weight: 700; }
.ds-bar {
  height: 6px;
  background: var(--ink-100);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.ds-bar-fill {
  width: 24%;
  height: 100%;
  background: var(--grad-brand);
  border-radius: var(--r-pill);
}

/* Floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--ink-100);
}
.upload-card {
  bottom: -20px;
  left: -20px;
  width: 270px;
}
.uc-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.uc-body { flex: 1; min-width: 0; }
.uc-title { font-weight: 700; font-size: 0.85rem; color: var(--ink-900); }
.uc-bar { height: 4px; background: var(--ink-100); border-radius: var(--r-pill); margin: 6px 0 4px; }
.uc-bar-fill { width: 86%; height: 100%; background: var(--grad-brand); border-radius: var(--r-pill); }
.uc-sub { font-size: 0.7rem; color: var(--ink-400); }

.security-card {
  top: -15px;
  right: -15px;
}
.sc-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.sc-title { font-weight: 700; font-size: 0.85rem; color: var(--ink-900); }
.sc-sub { font-size: 0.7rem; color: var(--ink-400); }

/* Trusted by */
.trusted-row {
  margin-top: 80px;
  text-align: center;
}
.trusted-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.trusted-logos span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-400);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s ease;
}
.trusted-logos span:hover { color: var(--blue-700); }
.trusted-logos i { font-size: 1.3rem; }

/* =========================================================
   FEATURES
   ========================================================= */
.features { background: var(--paper); }

.feature-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}

.feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.feature-card h3, .feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}
.feature-card h4 { font-size: 1.1rem; }
.feature-card p { font-size: 0.95rem; margin: 0; }

/* Large feature card */
.feature-large {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, #fff, #f7faff);
}
.fl-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  height: 280px;
}
.fl-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.fl-overlay {
  position: absolute;
  bottom: 16px; left: 16px;
}
.fl-tag {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fl-content { padding: 1.75rem; }

/* Row feature card */
.feature-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem;
}
.fr-image {
  width: 150px;
  height: 100%;
  flex-shrink: 0;
  border-radius: var(--r-md);
  overflow: hidden;
}
.fr-image img { width: 100%; height: 100%; object-fit: cover; }
.fr-content { flex: 1; }
.fr-content .feat-icon {
  width: 40px; height: 40px;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-mini { padding: 1.5rem; }
.feature-mini .feat-icon { width: 46px; height: 46px; font-size: 1.2rem; }

/* =========================================================
   HOW IT WORKS (DARK SECTION)
   ========================================================= */
.how-section {
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15), transparent 50%);
  pointer-events: none;
}
.how-section > .container { position: relative; z-index: 1; }

.how-section h2, .how-section h3 { color: #fff; }

.how-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}
.how-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(255,255,255,0.07);
}

.how-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.how-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.how-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.8) 100%);
}
.how-step {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--grad-brand);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-blue);
  z-index: 2;
}

.how-content { padding: 1.75rem; }
.how-content h3 { font-size: 1.25rem; margin-bottom: 0.6rem; color: #fff; }
.how-content p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0; }

/* Stats Strip */
.stats-strip {
  margin-top: 70px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 2rem 1rem;
}
.stat-item {
  padding: 0.75rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* =========================================================
   BENEFITS
   ========================================================= */
.benefits-section { background: var(--paper); }

.benefits-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}
.bv-main {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.bv-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 0.95rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
}
.bv-card-1 { top: 40px; left: -30px; }
.bv-card-2 { bottom: 50px; right: -30px; }

.bvc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.15rem;
}
.bvc-num { font-weight: 800; font-size: 1.2rem; color: var(--ink-900); line-height: 1; }
.bvc-title { font-weight: 700; font-size: 0.95rem; color: var(--ink-900); }
.bvc-label { font-size: 0.78rem; color: var(--ink-400); margin-top: 2px; }

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.75rem;
}
.benefit-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.benefit-list h5 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.benefit-list p {
  margin: 0;
  font-size: 0.92rem;
}
.b-icon {
  width: 30px; height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  margin-top: 4px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* ==================== PRICING SECTION v2 ==================== */
.pv2-section {
  padding: 100px 0;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.pv2-head { max-width: 720px; margin: 0 auto 60px; }

.pv2-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0a1635;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.pv2-italic {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #6b9eff;
  letter-spacing: -0.005em;
}
.pv2-sub {
  color: #6b7588;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}

.pv2-grid { align-items: stretch; }

/* Card base */
.pv2-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e6e8ef;
  border-radius: 22px;
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.pv2-card:hover { box-shadow: 0 10px 30px rgba(10, 22, 53, 0.08); }

/* Popular card — overlaps neighbors and uses pastel mesh gradient */
.pv2-card-pro {
  z-index: 2;
  padding: 2.5rem 2.25rem;
  background:
    radial-gradient(circle at 0% 0%, #c8e3f8 0%, transparent 55%),
    radial-gradient(circle at 100% 30%, #e9deef 0%, transparent 55%),
    radial-gradient(circle at 80% 100%, #d9e4f5 0%, transparent 55%),
    linear-gradient(135deg, #d6e8f7 0%, #e5e8f0 50%, #ecdfee 100%);
  border-color: #d8e1ef;
  box-shadow: 0 12px 40px rgba(10, 22, 53, 0.08);
}
.pv2-card-pro:hover { transform: translateY(-2px); }

.pv2-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #3b82f6;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.pv2-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a1635;
  margin: 0 0 1.1rem;
}

.pv2-price { display: flex; align-items: baseline; margin-bottom: 1.1rem; }
.pv2-amount {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 700;
  color: #0a1635;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pv2-period {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0a1635;
  margin-left: 2px;
}

.pv2-desc {
  color: #6b7588;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(10, 22, 53, 0.08);
}

.pv2-features { flex: 1; margin-bottom: 1.75rem; }
.pv2-feat-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a1635;
  margin: 0 0 1rem;
}
.pv2-features ul { list-style: none; padding: 0; margin: 0; }
.pv2-features li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.4rem 0;
  font-size: 0.93rem;
  color: #2a3147;
}
.pv2-features li i {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.pv2-features li.incl i { color: #3b82f6; }
.pv2-features li.excl { color: #b8bdc7; }
.pv2-features li.excl i { color: #b8bdc7; }

.pv2-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #0a1635;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.pv2-btn:hover {
  background: #14224d;
  color: #fff;
  transform: translateY(-1px);
}

/* Mobile: Pro card stops overlapping when stacked */
@media (max-width: 991.98px) {
  .pv2-card-pro {
    margin: 0;
    padding: 2.25rem 2rem;
  }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: var(--paper); }

.faq-image {
  margin-top: 2rem;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.faq-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.faq-img-overlay {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fio-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.fio-title { font-weight: 700; color: var(--ink-900); font-size: 0.95rem; }
.fio-sub { font-size: 0.8rem; color: var(--ink-500); }

.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md) !important;
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  background: #fff;
  color: var(--ink-900);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.1rem 1.25rem;
  box-shadow: none;
  border: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--blue-700);
  background: var(--blue-50);
}
.faq-accordion .accordion-button:focus { box-shadow: none; outline: none; }

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3E%3Cpath d='M8 5a.5.5 0 0 1 .5.5v2h2a.5.5 0 0 1 0 1h-2v2a.5.5 0 0 1-1 0v-2h-2a.5.5 0 0 1 0-1h2v-2A.5.5 0 0 1 8 5z'/%3E%3C/svg%3E");
  background-size: 1.4rem;
  width: 1.4rem;
  height: 1.4rem;
  transition: transform 0.25s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.faq-accordion .accordion-body {
  color: var(--ink-500);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0.25rem 1.25rem 1.25rem;
}

/* =========================================================
   CTA SECTION (DARK GRADIENT)
   ========================================================= */
.cta-section { padding: 60px 0 100px; background: #fff; }

.cta-card {
  background: var(--grad-cta);
  border-radius: var(--r-xl);
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-blue-lg);
}

.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
.cta-shape.s1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #60a5fa, transparent 70%);
  top: -60px; right: -60px;
}
.cta-shape.s2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, #a78bfa, transparent 70%);
  bottom: -60px; left: 30%;
}

.cta-title {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  color: #fff;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}
.cta-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 540px;
}

.btn-cta-primary {
  background: #fff;
  color: var(--blue-700) !important;
  font-weight: 700;
}
.btn-cta-primary:hover {
  background: var(--blue-50);
  color: var(--blue-800) !important;
  transform: translateY(-2px);
}
.btn-cta-secondary {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}
.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff !important;
}

.cta-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.cta-perks i { color: #93c5fd; margin-right: 6px; }

.cta-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.cta-visual img {
  width: 100%;
  object-fit: cover;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 20px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
}

.brand-name-light { color: #fff !important; }
.brand-logo-light {
  background: var(--grad-brand);
}

.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  max-width: 320px;
}

.newsletter .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--r-pill) 0 0 var(--r-pill);
  font-size: 0.93rem;
}
.newsletter .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter .form-control:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--blue-400);
  box-shadow: none;
  color: #fff;
}
.newsletter .btn {
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}
.text-muted-light {
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.footer-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.footer-links, .footer-contact  { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: 0.7rem; }
.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.93rem;
  transition: color 0.2s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--blue-300); }
.footer-contact li {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-contact i {
  color: var(--blue-700);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding-top: 20px;
}
.copyright { color: rgba(255,255,255,0.5); font-size: 0.88rem; }

.socials {
  display: flex;
  gap: 0.5rem;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.socials a:hover {
  background: var(--grad-brand);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }

  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ink-100);
  }
  .nav-actions { width: 100%; margin-top: 1rem; }
  .nav-actions .btn { flex: 1; }

  .hero { padding: 60px 0 40px; }
  .hero-title { margin-top: 0.5rem; }
  .dashboard-card { transform: none; margin-top: 2.5rem; }
  .upload-card { left: 0; bottom: -30px; }
  .security-card { top: -10px; right: 0; }

  .feature-row { flex-direction: row; }

  .stats-strip { padding: 1.5rem 0.5rem; }
  .stat-item { border-right: none; padding: 1rem 0.5rem; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }

  .benefits-visual { margin-bottom: 2.5rem; }
  .bv-main { height: 420px; }
  .bv-card-1 { left: 10px; }
  .bv-card-2 { right: 10px; }

  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-4px); }

  .cta-card { padding: 2.5rem 1.5rem; }
}

@media (max-width: 767.98px) {
  .section { padding: 60px 0; }

  .hero-cta .btn { width: 100%; }
  .trusted-logos { gap: 1.5rem; }
  .trusted-logos span { font-size: 0.95rem; }

  .upload-card { width: calc(100% - 30px); }
  .security-card { padding: 0.7rem 0.9rem; }

  .feature-row { flex-direction: column; text-align: left; }
  .fr-image { width: 100%; height: 180px; }

  .bv-card { padding: 0.7rem 0.85rem; }
  .bv-card-1 { top: 20px; left: 10px; }
  .bv-card-2 { bottom: 20px; right: 10px; }
  .bvc-icon { width: 38px; height: 38px; }

  .cta-perks { gap: 0.85rem; flex-direction: column; }
}
@media (min-width: 992px){
  .footer-links.ql{
    column-count: 2;
  }
}
/* Smooth fade-in on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-title, .hero-subtitle, .hero-cta, .hero-meta, .hero-badge {
  animation: fadeUp 0.7s ease-out both;
}
.hero-subtitle { animation-delay: 0.1s; }
.hero-cta { animation-delay: 0.2s; }
.hero-meta { animation-delay: 0.3s; }
.hero-visual { animation: fadeUp 0.9s ease-out 0.2s both; }


/* General Pages */
.section{
  padding: 5rem 0;
}
.page-title {
  background: var(--blue-200);
  background-size: cover;
  padding: 80px 0;
}
.page-title h1 {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.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: var(--grad4);
  background-color: var(--e-global-color-primary);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  display: flex;
}