/* =========================================
   LANDING COMPONENT SYSTEM v2
   Academic Research & Thesis Services
   Premium RTL UI/UX Framework
========================================= */

/* ========= ROOT TOKENS ========= */
:root {
  /* ===== COLORS ===== */
  --lp-primary: #2563eb;
  --lp-primary-dark: #1d4ed8;
  --lp-primary-soft: #dbeafe;

  --lp-secondary: #0f766e;
  --lp-secondary-light: #14b8a6;

  --lp-accent: #7c3aed;

  --lp-bg: #f9fafb;
  --lp-bg-alt: #f3f4f6;
  --lp-surface: #ffffff;
  --lp-surface-soft: #f3f4ff;

  --lp-text: #020617;
  --lp-text-soft: #475569;
  --lp-text-muted: #6b7280;

  --lp-border-subtle: #e5e7eb;
  --lp-border-strong: #d1d5db;

  --lp-success: #16a34a;
  --lp-warning: #f59e0b;
  --lp-danger: #dc2626;

  --lp-focus-ring: #93c5fd;

  /* ===== TYPOGRAPHY ===== */
  --lp-font: 'Vazirmatn', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --lp-text-xs: 0.75rem;   /* 12px */
  --lp-text-sm: 0.875rem;  /* 14px */
  --lp-text-base: 1rem;    /* 16px */
  --lp-text-lg: 1.125rem;  /* 18px */
  --lp-text-xl: 1.25rem;   /* 20px */
  --lp-text-2xl: 1.5rem;   /* 24px */
  --lp-text-3xl: 1.875rem; /* 30px */
  --lp-text-4xl: 2.25rem;  /* 36px */
  --lp-text-5xl: 3rem;     /* 48px */

  --lp-leading-base: 1.75;
  --lp-leading-tight: 1.35;

  /* ===== SPACING (4px scale) ===== */
  --space-0: 0;
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-7: 1.75rem;   /* 28px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

  /* ===== RADIUS ===== */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-2xl: 36px;
  --radius-full: 999px;

  /* ===== SHADOWS ===== */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 22px 60px rgba(15, 23, 42, 0.12);

  /* ===== TRANSITIONS ===== */
  --transition-fast: 0.18s ease-out;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s ease;

  /* ===== LAYOUT ===== */
  --lp-max-width: 1200px;
}

/* ========= BASE ========= */
.lp-component {
  direction: rtl;
  text-align: right;
  color: var(--lp-text);
  background-color: var(--lp-bg);
  font-family: var(--lp-font);
  line-height: var(--lp-leading-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lp-component *,
.lp-component *::before,
.lp-component *::after {
  box-sizing: border-box;
}

.lp-component img {
  max-width: 100%;
  height: auto;
  display: block;
}

.lp-component a {
  text-decoration: none;
  color: inherit;
}

.lp-component p {
  margin: 0 0 var(--space-4);
}

.lp-component ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ========= LAYOUT ========= */
.lp-container {
  width: 100%;
  max-width: var(--lp-max-width);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.lp-container-wide {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.lp-section {
  position: relative;
  padding-block: var(--space-20);
}

.lp-section + .lp-section {
  border-top: 1px solid var(--lp-border-subtle);
}

/* ========= TYPOGRAPHY ========= */
.lp-section-header {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

.lp-section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(37, 99, 235, 0.12);
  background-color: rgba(37, 99, 235, 0.04);
  color: var(--lp-primary-dark);
  font-size: var(--lp-text-xs);
  font-weight: 600;
}

.lp-section-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--lp-primary);
}

.lp-section-title {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  line-height: 1.3;
  font-weight: 800;
  color: var(--lp-text);
  margin: var(--space-3) 0 var(--space-3);
}

.lp-section-title .lp-highlight {
  position: relative;
  display: inline-block;
}

.lp-section-title .lp-highlight::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 0.55em;
  background: linear-gradient(to left, #bfdbfe, #e0f2fe);
  opacity: 0.9;
  z-index: -1;
  border-radius: 999px;
}

.lp-section-description {
  color: var(--lp-text-soft);
  font-size: var(--lp-text-base);
  line-height: 1.9;
}

/* ========= HERO ========= */
.lp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.3), transparent 55%),
    radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.18), transparent 50%),
    linear-gradient(135deg, #020617, #020617, #0b1120, #111827);
  color: #f9fafb;
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

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

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-12);
  align-items: center;
  padding-block: var(--space-20);
}

.lp-hero-content {
  max-width: 640px;
}

.lp-hero-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #f9fafb;
  margin: var(--space-3) 0 var(--space-4);
}

.lp-gradient-text {
  background: linear-gradient(120deg, #ffffff, #bfdbfe, #e5e7eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-hero-description {
  font-size: var(--lp-text-lg);
  line-height: 1.9;
  color: rgba(241, 245, 249, 0.88);
  margin-bottom: var(--space-6);
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(14px);
  color: #e5e7eb;
  font-size: var(--lp-text-sm);
  font-weight: 600;
}

.lp-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.24);
}

/* HERO actions */
.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.lp-hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  font-size: var(--lp-text-sm);
  color: rgba(226, 232, 240, 0.9);
}

.lp-trust-avatars {
  display: inline-flex;
  flex-direction: row-reverse;
}

.lp-trust-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #020617;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  margin-left: -10px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.45);
}

.lp-trust-stars {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: 2px;
}

.lp-trust-stars i {
  color: #facc15;
  font-size: 0.75rem;
}

/* HERO visual */
.lp-hero-visual {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
}

.lp-visual-card {
  position: relative;
  border-radius: var(--radius-2xl);
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.15), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.42);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.7);
  overflow: hidden;
}

.lp-visual-main {
  padding: var(--space-4);
}

.lp-visual-main img {
  border-radius: calc(var(--radius-2xl) - 10px);
}

/* Floating stat cards */
.lp-visual-float {
  position: absolute;
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  backdrop-filter: blur(20px);
}

.lp-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #60a5fa, #a855f7);
  color: #f9fafb;
}

.lp-float-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-float-num {
  font-size: var(--lp-text-base);
  font-weight: 700;
}

.lp-float-label {
  font-size: var(--lp-text-xs);
  color: #cbd5f5;
}

/* positions */
.lp-float-1 {
  top: 10%;
  left: -20px;
}
.lp-float-2 {
  bottom: 14%;
  right: -10px;
}
.lp-float-3 {
  bottom: -8px;
  left: 15%;
}

/* Scroll indicator */
.lp-scroll-indicator {
  position: absolute;
  inset-inline: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
}

.lp-scroll-line {
  width: 24px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  position: relative;
}

.lp-scroll-line::before {
  content: "";
  position: absolute;
  inset-inline: 50%;
  transform: translateX(-50%);
  top: 8px;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
  animation: lpScroll 1.5s ease-in-out infinite;
}

/* ========= BUTTONS ========= */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: var(--lp-text-sm);
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.lp-btn-primary {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #0b1120;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

.lp-btn-primary:hover {
  transform: translateY(-1px) translateZ(0);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
}

.lp-btn-outline {
  background: rgba(15, 23, 42, 0.3);
  border-color: rgba(156, 163, 175, 0.55);
  color: #e5e7eb;
}

.lp-btn-outline:hover {
  background: rgba(15, 23, 42, 0.55);
}

.lp-btn-outline-dark {
  background: #ffffff;
  border-color: var(--lp-border-subtle);
  color: var(--lp-text);
  box-shadow: var(--shadow-xs);
}

.lp-btn-outline-dark:hover {
  border-color: var(--lp-primary);
  box-shadow: var(--shadow-sm);
}

.lp-btn-whatsapp {
  background: #22c55e;
  color: #052e16;
  box-shadow: 0 16px 30px rgba(22, 163, 74, 0.4);
}

.lp-btn-whatsapp:hover {
  background: #16a34a;
}

/* ========= TRUSTED BY ========= */
.lp-trusted-section {
  padding-block: var(--space-8);
  background: #ffffff;
  border-bottom: 1px solid var(--lp-border-subtle);
}

.lp-trusted-title {
  font-size: var(--lp-text-sm);
  color: var(--lp-text-muted);
  margin-bottom: var(--space-4);
  text-align: center;
}

.lp-trusted-logos {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: var(--space-6);
  justify-content: center;
  align-items: center;
  overflow-x: auto;
  padding-bottom: var(--space-1);
}

.lp-trusted-logos::-webkit-scrollbar {
  height: 4px;
}

.lp-trusted-logos::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.6);
  border-radius: 999px;
}

.lp-logo-item {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--lp-border-subtle);
  background: #f9fafb;
  font-size: var(--lp-text-xs);
  color: var(--lp-text-soft);
}

/* ========= SERVICES ========= */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
}

.lp-service-card {
  position: relative;
  padding: var(--space-6);
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--lp-border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background-color var(--transition-base);
}

.lp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.45);
}

.lp-service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  border-radius: 20px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #f9fafb;
  font-size: 1.5rem;
}

.lp-service-title {
  font-size: var(--lp-text-lg);
  font-weight: 800;
  margin-bottom: var(--space-3);
  color: var(--lp-text);
}

.lp-service-description {
  font-size: var(--lp-text-sm);
  color: var(--lp-text-soft);
  line-height: 1.9;
  margin-bottom: var(--space-4);
}

.lp-service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--lp-text-sm);
  font-weight: 600;
  color: var(--lp-primary-dark);
}

.lp-service-link i {
  font-size: 0.75rem;
}

/* ========= WHY CHOOSE US ========= */
.lp-section-alt {
  background: var(--lp-bg-alt);
}

.lp-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

.lp-why-content {
  max-width: 640px;
}

.lp-why-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.lp-why-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--lp-border-subtle);
}

.lp-why-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary-dark);
}

.lp-why-info h4 {
  margin: 0 0 var(--space-1);
  font-size: var(--lp-text-sm);
  font-weight: 700;
}

.lp-why-info p {
  margin: 0;
  font-size: var(--lp-text-xs);
  color: var(--lp-text-muted);
  line-height: 1.8;
}

.lp-why-visual {
  display: flex;
  justify-content: center;
}

.lp-why-card {
  width: 100%;
  max-width: 340px;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, #eff6ff, #e0f2fe);
  border: 1px solid #bfdbfe;
  box-shadow: var(--shadow-md);
}

.lp-why-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.lp-why-stat span {
  display: block;
  font-size: var(--lp-text-xl);
  font-weight: 800;
  color: var(--lp-primary-dark);
}

.lp-why-stat small {
  display: block;
  font-size: var(--lp-text-xs);
  color: var(--lp-text-muted);
}

/* ========= PROCESS ========= */
.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
}

.lp-process-card {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--lp-border-subtle);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.lp-process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(37, 99, 235, 0.4);
}

.lp-process-step {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #f9fafb;
  font-weight: 800;
  margin-bottom: var(--space-3);
}

.lp-process-icon {
  font-size: 1.4rem;
  color: var(--lp-primary);
  margin-bottom: var(--space-3);
}

.lp-process-title {
  font-size: var(--lp-text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.lp-process-description {
  font-size: var(--lp-text-sm);
  color: var(--lp-text-soft);
  line-height: 1.9;
}

/* process line */
.lp-process-line {
  position: relative;
  margin-top: var(--space-6);
  height: 3px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.lp-process-progress {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 0;
  background: linear-gradient(to left, #2563eb, #7c3aed);
}

/* ========= STATS ========= */
.lp-section-gradient {
  background: radial-gradient(circle at top, #1f2937, #020617);
  color: #f9fafb;
}

.lp-title-light {
  color: #e5e7eb;
}

.lp-desc-light {
  color: rgba(209, 213, 219, 0.9);
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.lp-stat-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background-color var(--transition-base);
}

.lp-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(248, 250, 252, 0.7);
}

.lp-stat-number {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: #bfdbfe;
  margin-bottom: var(--space-2);
}

.lp-stat-icon {
  font-size: 1.3rem;
  color: #93c5fd;
  margin-bottom: var(--space-1);
}

.lp-stat-label {
  font-size: var(--lp-text-sm);
  color: rgba(209, 213, 219, 0.9);
}

/* ========= PRICING ========= */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.lp-pricing-card {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--lp-border-subtle);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.lp-pricing-popular {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.lp-pricing-badge {
  position: absolute;
  top: 14px;
  left: 16px;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: var(--lp-text-xs);
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #f9fafb;
}

.lp-pricing-header {
  border-bottom: 1px dashed var(--lp-border-strong);
  padding-bottom: var(--space-4);
}

.lp-pricing-name {
  margin: 0 0 var(--space-2);
  font-size: var(--lp-text-lg);
  font-weight: 800;
}

.lp-pricing-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--lp-primary-dark);
}

.lp-pricing-period {
  margin: 0;
  font-size: var(--lp-text-xs);
  color: var(--lp-text-muted);
}

.lp-pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--lp-text-sm);
  color: var(--lp-text-soft);
}

.lp-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.lp-pricing-features i {
  margin-top: 2px;
  color: var(--lp-success);
}

.lp-pricing-x i {
  color: var(--lp-text-muted);
}

/* ========= TESTIMONIALS ========= */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.lp-testimonial {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--lp-border-subtle);
  box-shadow: var(--shadow-xs);
}

.lp-testimonial-stars {
  margin-bottom: var(--space-3);
  color: #facc15;
  font-size: 0.9rem;
}

.lp-testimonial-text {
  font-size: var(--lp-text-sm);
  color: var(--lp-text-soft);
  line-height: 1.9;
  margin-bottom: var(--space-4);
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.lp-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary-dark);
}

.lp-author-info cite {
  font-style: normal;
  font-weight: 700;
  font-size: var(--lp-text-sm);
}

.lp-author-info span {
  display: block;
  font-size: var(--lp-text-xs);
  color: var(--lp-text-muted);
}

/* ========= FAQ ========= */
.lp-faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.lp-faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--lp-border-subtle);
  background: #ffffff;
  padding: 0.75rem 1rem;
}

.lp-faq-item[open] {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: var(--shadow-sm);
}

.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--lp-text-sm);
  font-weight: 600;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-icon {
  transition: transform var(--transition-fast);
  font-size: 0.85rem;
  color: var(--lp-text-muted);
}

.lp-faq-item[open] .lp-faq-icon {
  transform: rotate(180deg);
}

.lp-faq-answer {
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px dashed var(--lp-border-subtle);
  font-size: var(--lp-text-sm);
  color: var(--lp-text-soft);
  line-height: 1.9;
}

/* ========= CTA / CONTACT ========= */
.lp-section-cta {
  padding-block: var(--space-20);
  background: radial-gradient(circle at top, #eff6ff, #e0f2fe);
}

.lp-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.2), transparent 50%),
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.18), transparent 55%);
  opacity: 0.8;
}

.lp-cta-box {
  position: relative;
  overflow: hidden;
  padding: var(--space-8);
  border-radius: 40px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #f9fafb;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.lp-cta-glow {
  position: absolute;
  inset-inline: 50%;
  top: -140px;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(248, 250, 252, 0.18), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
}

.lp-cta-title {
  position: relative;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: var(--space-3);
}

.lp-cta-description {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
  color: rgba(241, 245, 249, 0.92);
  margin-bottom: var(--space-6);
  font-size: var(--lp-text-sm);
}

.lp-cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lp-cta-trust {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  font-size: var(--lp-text-xs);
  color: rgba(226, 232, 240, 0.95);
}

.lp-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

/* ========= UTILITIES ========= */
.lp-text-center {
  text-align: center;
}

.lp-mb-0 { margin-bottom: 0; }
.lp-mb-2 { margin-bottom: var(--space-2); }
.lp-mb-4 { margin-bottom: var(--space-4); }
.lp-mb-6 { margin-bottom: var(--space-6); }
.lp-mb-8 { margin-bottom: var(--space-8); }
.lp-mb-10 { margin-bottom: var(--space-10); }
.lp-mt-8 { margin-top: var(--space-8); }
.lp-mt-10 { margin-top: var(--space-10); }

/* ========= ACCESSIBILITY ========= */
.lp-btn:focus-visible,
.lp-component a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lp-focus-ring);
  outline-offset: 3px;
}

/* ========= ANIMATIONS ========= */
@keyframes lpFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lpScroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes lpFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -12px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.lp-service-card,
.lp-stat-card,
.lp-process-card,
.lp-pricing-card,
.lp-testimonial,
.lp-why-item {
  opacity: 0;
  transform: translateY(20px);
}

.lp-revealed {
  animation: lpFadeUp 0.7s var(--transition-base) both;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 1100px) {
  .lp-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .lp-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-why-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .lp-section {
    padding-block: var(--space-16);
  }

  .lp-container {
    padding-inline: var(--space-3);
  }

  .lp-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    padding-block: var(--space-16);
    gap: var(--space-10);
  }

  .lp-hero-visual {
    order: -1;
  }

  .lp-hero-description,
  .lp-section-description {
    font-size: var(--lp-text-sm);
  }

  .lp-services-grid,
  .lp-process-grid,
  .lp-pricing-grid,
  .lp-testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-why-features {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-cta-box {
    padding: var(--space-6);
    border-radius: 28px;
  }

  .lp-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .lp-stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-trusted-logos {
    justify-content: flex-start;
  }

  .lp-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-hero-actions .lp-btn {
    width: 100%;
    justify-content: center;
  }

  .lp-cta-actions {
    flex-direction: column;
  }

  .lp-cta-actions .lp-btn {
    width: 100%;
  }
}
