/* ═══════════════════════════════════════════════════════════════════════
 *  Stepora — Main Stylesheet
 *  Glassmorphism dark theme matching the React app design system.
 *  Author: JH Petitfrere
 * ═══════════════════════════════════════════════════════════════════════ */


/* ─── 1. CSS Custom Properties (Design Tokens) ─────────────────────── */

:root {
  /* Backgrounds */
  --bg-deep:       #03010a;
  --bg-dark:       #070412;
  --bg-mid:        #0c081a;

  /* Brand purples */
  --purple:        #8B5CF6;
  --purple-light:  #C4B5FD;
  --purple-dark:   #7C3AED;
  --indigo:        #6366F1;
  --teal:          #14B8A6;
  --green:         #10B981;

  /* Text hierarchy */
  --text:          #ffffff;
  --text-primary:  rgba(255, 255, 255, 0.85);
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.5);
  --text-muted:    rgba(255, 255, 255, 0.3);

  /* Glass surfaces */
  --glass-bg:      rgba(255, 255, 255, 0.04);
  --glass-border:  rgba(255, 255, 255, 0.06);
  --glass-hover:   rgba(255, 255, 255, 0.08);

  /* Accent tints */
  --accent-soft:   rgba(139, 92, 246, 0.18);
  --accent-border: rgba(139, 92, 246, 0.25);

  /* Gradients */
  --gradient-primary:      linear-gradient(135deg, #8B5CF6, #7C3AED);
  --gradient-primary-wide: linear-gradient(135deg, #8B5CF6, #6366F1);
  --gradient-accent:       linear-gradient(135deg, #7C3AED, #6366F1);
  --gradient-shimmer:      linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);

  /* Shadows */
  --shadow-purple:       0 4px 16px rgba(139, 92, 246, 0.3);
  --shadow-purple-hover: 0 8px 40px rgba(139, 92, 246, 0.5);
  --shadow-deep:         0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-glow:         0 0 24px rgba(139, 92, 246, 0.4);
  --shadow-glass:        inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.3);

  /* Radii */
  --radius-xs:     6px;
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-xl:     20px;
  --radius-xxl:    28px;
  --radius-card:   20px;
  --radius-button: 14px;
  --radius-input:  12px;
  --radius-logo:   12px;
  --radius-pill:   100px;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Font stacks */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
}


/* ─── 2. Reset & Base ───────────────────────────────────────────────── */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font-family: var(--font-body);
}


/* ─── 3. Custom Scrollbar ───────────────────────────────────────────── */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.25);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.45);
}


/* ─── 4. Selection Color ────────────────────────────────────────────── */

::selection {
  background: rgba(139, 92, 246, 0.3);
  color: #ffffff;
}


/* ─── 5. Utility: Container ─────────────────────────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ─── 6. Scroll Reveal ──────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ─── 7. Glass Card ─────────────────────────────────────────────────── */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-glass);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: var(--accent-border);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06),
              0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 32px rgba(139, 92, 246, 0.08);
}

.glass-card.no-hover:hover {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  transform: none;
  box-shadow: var(--shadow-glass);
}


/* ─── 8. Gradient Buttons ───────────────────────────────────────────── */

.gradient-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-button);
  background: var(--gradient-primary);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-purple);
  transition: all 0.3s var(--ease);
  text-align: center;
  line-height: 1.4;
}

.gradient-btn:hover {
  box-shadow: var(--shadow-purple-hover);
  transform: translateY(-2px);
}

.gradient-btn:active {
  transform: translateY(0);
}

.gradient-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Ghost variant */
.gradient-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-button);
  background: var(--glass-bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s var(--ease);
  text-align: center;
  line-height: 1.4;
}

.gradient-btn-ghost:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
  background: var(--glass-hover);
}

/* Small variant (for navbar) */
.gradient-btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

/* Large variant */
.gradient-btn-lg {
  padding: 18px 44px;
  font-size: 16px;
}

/* Full width */
.gradient-btn-full {
  width: 100%;
}


/* ─── 9. Section Head Components ────────────────────────────────────── */

.section-tag {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--purple-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 48px);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 auto;
  max-width: 700px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}


/* ─── 10. Navbar ────────────────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(3, 1, 10, 0.75);
  backdrop-filter: blur(30px) saturate(1.3);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
  border-bottom-color: var(--glass-border);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-logo);
  background: var(--gradient-primary-wide);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--text);
  letter-spacing: -0.03em;
}

.nav-logo-text .highlight {
  color: var(--purple-light);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--purple-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: var(--purple);
}

/* Nav CTA area */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* ─── 11. Hamburger (Mobile) ────────────────────────────────────────── */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ─── 12. Mobile Overlay ────────────────────────────────────────────── */

.mobile-overlay {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(3, 1, 10, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 80px 32px 32px;
  align-items: center;
  justify-content: center;
}

.mobile-overlay.open {
  display: flex;
}

.mobile-overlay a {
  color: var(--text);
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 14px 0;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.mobile-overlay a:hover,
.mobile-overlay a.active {
  opacity: 1;
  color: var(--purple-light);
}

.mobile-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-secondary);
}

.mobile-overlay-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 280px;
}


/* ─── 13. Footer ────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--glass-border);
  padding: 64px 24px 32px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px 60px;
  justify-content: space-between;
}

.footer-brand {
  max-width: 280px;
  flex-shrink: 0;
}

.footer-brand p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
}

.footer-column h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  opacity: 0.7;
}

.footer-column a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-tertiary);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--purple-light);
}

/* Social icon circles */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: all 0.25s var(--ease);
  text-decoration: none;
}

.footer-social-icon:hover {
  border-color: var(--accent-border);
  color: var(--purple-light);
  background: var(--glass-hover);
}

/* Footer bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom span {
  font-size: 13px;
  color: var(--text-muted);
}


/* ─── 14. Hero Section ──────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 1, 10, 0.4) 0%, rgba(3, 1, 10, 0.95) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-orb-purple {
  top: 20%;
  left: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
}

.hero-orb-indigo {
  bottom: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 140px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--bg-deep));
  pointer-events: none;
  z-index: 1;
}

/* Eyebrow badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: pulse-purple 2s infinite;
}

.hero-badge-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 0.05em;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #8B5CF6 0%, #a78bfa 30%, #c4b5fd 60%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 44px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero preview image */
.hero-preview {
  margin-top: 64px;
  position: relative;
}

.hero-preview-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(139, 92, 246, 0.1);
}

.hero-preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.hero-preview-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(3, 1, 10, 0.8));
  border-radius: 0 0 24px 24px;
}

/* Page hero (sub-pages) */
.page-hero {
  position: relative;
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 140px 24px 60px;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg-deep));
  pointer-events: none;
  z-index: 1;
}


/* ─── 15. Stats Grid ────────────────────────────────────────────────── */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  text-align: center;
}

.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-button);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-card .stat-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-tertiary);
}


/* ─── 16. Feature Cards ─────────────────────────────────────────────── */

.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep), 0 0 40px rgba(139, 92, 246, 0.08);
  border-color: var(--accent-border);
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-button);
  margin-bottom: 20px;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.feature-card:hover img {
  opacity: 1;
}

.feature-card .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-button);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.feature-card .feature-detail-list {
  padding: 0;
  margin: 0;
}

.feature-card .feature-detail-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.feature-card .feature-detail-list li svg {
  flex-shrink: 0;
}


/* ─── 17. Testimonial Cards ─────────────────────────────────────────── */

.testimonial-card {
  transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card .testimonial-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-border);
}

.testimonial-author .author-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.testimonial-author .author-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-tertiary);
}


/* ─── 18. Steps Section ─────────────────────────────────────────────── */

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical connecting line */
.steps-grid .steps-line {
  position: absolute;
  left: 28px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.4), rgba(99, 102, 241, 0.2), transparent);
}

.step-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  flex-shrink: 0;
  background: rgba(22, 24, 48, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.step-number.purple {
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, 0.19);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.08);
}

.step-number.green {
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.19);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.08);
}

.step-number.indigo {
  color: #818cf8;
  border: 1px solid rgba(129, 140, 248, 0.19);
  box-shadow: 0 0 20px rgba(129, 140, 248, 0.08);
}

.step-number.amber {
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.19);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.08);
}

.step-content {
  padding-top: 4px;
  flex: 1;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step-content p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-tertiary);
  line-height: 1.65;
}


/* ─── 19. Pricing Cards ─────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.pricing-card.popular {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, rgba(22, 24, 48, 0.6) 50%);
}

/* Popular badge */
.pricing-card .popular-shimmer {
  position: absolute;
  top: -1px;
  left: 32px;
  right: 32px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-shimmer);
}

.pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-purple);
  white-space: nowrap;
}

.pricing-card .plan-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--text-tertiary);
}

.pricing-card.popular .plan-name {
  color: var(--purple-light);
}

.pricing-card .plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.pricing-card .plan-price .amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
}

.pricing-card .plan-price .period {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
}

.pricing-card .plan-features {
  flex: 1;
  margin-bottom: 28px;
}

.pricing-card .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.pricing-card .plan-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}


/* ─── 20. FAQ Accordion ─────────────────────────────────────────────── */

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-glass);
}

.faq-question:hover {
  background: var(--glass-hover);
}

.faq-item.open .faq-question {
  border-radius: 16px 16px 0 0;
  background: var(--glass-hover);
  border-color: rgba(139, 92, 246, 0.25);
}

.faq-question .faq-category {
  font-size: 10px;
  font-weight: 600;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  display: block;
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  color: var(--text-tertiary);
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--purple-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  border: 1px solid var(--glass-border);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 20px 24px;
}

.faq-answer-inner p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin: 0;
}

/* Filter pills (FAQ + Blog categories) */
.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.filter-pill:hover {
  background: var(--glass-hover);
}

.filter-pill.active {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.18);
  color: var(--purple-light);
}


/* ─── 21. Team Cards ────────────────────────────────────────────────── */

.team-card {
  text-align: center;
  transition: all 0.4s var(--ease);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-border);
  margin: 0 auto 20px;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.team-card:hover img {
  opacity: 1;
}

.team-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.team-card .team-role {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 12px;
}

.team-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ─── 22. Value Cards ───────────────────────────────────────────────── */

.value-card {
  text-align: center;
  height: 100%;
  transition: all 0.4s var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-deep), 0 0 32px rgba(139, 92, 246, 0.08);
}

.value-card .value-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.value-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* ─── 23. CTA Block ─────────────────────────────────────────────────── */

.cta-block {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.cta-block-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.cta-block-inner {
  position: relative;
  background: rgba(22, 24, 48, 0.7);
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: 72px 40px;
  text-align: center;
}

.cta-block-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-block-orb-1 {
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.1);
  filter: blur(60px);
}

.cta-block-orb-2 {
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(99, 102, 241, 0.08);
  filter: blur(50px);
}

.cta-block .section-tag {
  margin-bottom: 16px;
}

.cta-block h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.cta-block p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 36px;
}


/* ─── 24. Contact Form ──────────────────────────────────────────────── */

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-input);
  outline: none;
  transition: all 0.25s var(--ease);
  box-sizing: border-box;
  line-height: 1.5;
}

.contact-form textarea {
  padding: 14px 16px;
  resize: vertical;
  min-height: 150px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.contact-form .form-error {
  font-size: 13px;
  color: #ef4444;
  margin: 0 0 14px;
}

.contact-form .form-success {
  text-align: center;
  padding: 24px 0;
}

.contact-form .form-success .success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.contact-form .form-success h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin: 0 0 8px;
}

.contact-form .form-success p {
  font-size: 15px;
  color: var(--text-tertiary);
  margin: 0 0 20px;
  line-height: 1.6;
}

/* Split layout (contact page) */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.info-card {
  margin-bottom: 16px;
}

.info-card .info-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-card .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin: 0 0 6px;
}

.info-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.info-card a {
  color: var(--purple-light);
  text-decoration: none;
}

.info-card a:hover {
  opacity: 0.8;
}


/* ─── 25. Blog Cards ────────────────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06),
              0 12px 40px rgba(0, 0, 0, 0.4),
              0 0 32px rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.25);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image .blog-category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--purple-light);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 20px 22px 22px;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 8px;
}

.blog-card-body .blog-excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card-meta .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--glass-border);
}

.blog-card-meta .author-initial {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-body);
}

.blog-card-meta .author-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.blog-card-meta .blog-date {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-tertiary);
  margin: 0;
  line-height: 1.3;
}

/* Skeleton card */
.blog-skeleton {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}

.blog-skeleton .skeleton-image {
  height: 200px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.blog-skeleton .skeleton-line {
  height: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  margin-bottom: 10px;
}

.blog-skeleton .skeleton-line-short {
  width: 40%;
}

.blog-skeleton .skeleton-line-long {
  width: 85%;
}


/* ─── 26. Legal Page ────────────────────────────────────────────────── */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.legal-content .legal-section {
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-glass);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.3;
}

.legal-content p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul, .legal-content ol {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  padding-left: 24px;
  margin-top: 8px;
  margin-bottom: 0;
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content strong {
  color: var(--text-primary);
}

.legal-content a {
  color: var(--purple-light);
  text-decoration: none;
  transition: opacity 0.2s;
}

.legal-content a:hover {
  opacity: 0.8;
}


/* ─── 27. Glass Divider ─────────────────────────────────────────────── */

.glass-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  max-width: 600px;
  margin: 0 auto;
}

.glass-divider .line-left {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4));
}

.glass-divider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

.glass-divider .line-right {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.4), transparent);
}


/* ─── 28. About Preview (Split Layout) ──────────────────────────────── */

.about-preview {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.about-preview-image {
  flex: 1 1 400px;
  max-width: 500px;
  position: relative;
}

.about-preview-image .image-glow {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.1));
  filter: blur(40px);
  z-index: 0;
}

.about-preview-image .image-wrapper {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.about-preview-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-preview-content {
  flex: 1 1 400px;
}

.about-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-mini-card {
  padding: 16px;
  border-radius: var(--radius-button);
}

.about-mini-card .mini-card-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-mini-card .mini-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-mini-card .mini-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

.about-mini-card .mini-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-tertiary);
}


/* ─── 29. Pagination ────────────────────────────────────────────────── */

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--radius-button);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.pagination-btn:hover {
  border-color: rgba(139, 92, 246, 0.3);
  background: var(--glass-hover);
  color: var(--purple-light);
  transform: translateY(-1px);
}


/* ─── 30. Map / Globe Card ──────────────────────────────────────────── */

.globe-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.globe-card .dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(139, 92, 246, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

.globe-card .globe-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--purple-light);
}


/* ─── 31. Blog Article Content (dp-article) ────────────────────────── */

.dp-article h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
}

.dp-article h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 36px 0 14px;
}

.dp-article h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
  margin: 30px 0 12px;
}

.dp-article h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 24px 0 10px;
}

.dp-article p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0 0 20px;
}

.dp-article a {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.dp-article a:hover {
  color: var(--purple);
}

.dp-article img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 24px 0;
  display: block;
}

.dp-article ul,
.dp-article ol {
  padding-left: 24px;
  margin: 0 0 20px;
}

.dp-article li {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 6px;
}

.dp-article ul li::marker {
  color: var(--purple);
}

.dp-article ol li::marker {
  color: var(--purple-light);
  font-weight: 600;
}

.dp-article blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 3px solid var(--purple);
  background: rgba(139, 92, 246, 0.06);
  border-radius: 0 12px 12px 0;
}

.dp-article blockquote p {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin: 0;
}

.dp-article code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 8px;
  border-radius: 6px;
  color: var(--purple-light);
}

.dp-article pre {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px 24px;
  overflow-x: auto;
  margin: 24px 0;
}

.dp-article pre code {
  background: transparent;
  padding: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.dp-article hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 36px 0;
}

.dp-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.dp-article th,
.dp-article td {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
}

.dp-article th {
  color: var(--purple-light);
  font-weight: 600;
}


/* ─── 31b. Share Buttons ───────────────────────────────────────────── */

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-button);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.share-btn:hover {
  border-color: rgba(139, 92, 246, 0.3);
  background: var(--glass-hover);
  color: var(--purple-light);
}

.blog-back-link:hover {
  color: var(--purple-light) !important;
}


/* ─── 32. Keyframe Animations ───────────────────────────────────────── */

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-purple {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(139, 92, 246, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes glow-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dp-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* ─── 32. Responsive — Mobile (< 768px) ────────────────────────────── */

@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    display: none !important;
  }

  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  /* Footer */
  .footer-grid {
    flex-direction: column !important;
    gap: 32px !important;
  }

  /* Hero */
  .hero-content {
    padding: 120px 20px 60px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-preview {
    margin-top: 40px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Features */
  .blog-grid,
  .feature-grid {
    grid-template-columns: 1fr !important;
  }

  /* Steps */
  .step-item {
    gap: 16px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 15px;
    border-radius: 12px;
  }

  .steps-grid .steps-line {
    left: 22px;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-split {
    grid-template-columns: 1fr !important;
  }

  /* About */
  .about-preview {
    flex-direction: column;
    gap: 32px;
  }

  .about-preview-image {
    max-width: 100%;
  }

  .about-mini-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-block-inner {
    padding: 48px 24px;
  }

  /* Section headings */
  .section-subtitle {
    font-size: 15px;
  }

  /* Page hero */
  .page-hero-content {
    padding: 120px 20px 40px;
  }

  /* Blog grid */
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ─── 33. Responsive — Tablet (768px - 1024px) ─────────────────────── */

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links {
    gap: 18px;
  }

  .nav-link {
    font-size: 13px;
  }

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

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

  .contact-split {
    grid-template-columns: 1fr;
  }

  .about-preview {
    gap: 32px;
  }
}


/* ─── 34. Responsive — Desktop (> 1024px) ───────────────────────────── */

@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: flex;
  }
}


/* ─── 35. Misc Utility ──────────────────────────────────────────────── */

/* Accessible hidden text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Text gradient utility */
.text-gradient {
  background: linear-gradient(135deg, #8B5CF6, #C4B5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section spacing utility */
.section-padding {
  padding: 60px 24px 100px;
}

/* Grid gaps */
.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.grid-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.grid-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.grid-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Animated entry */
.animate-fade-in-up {
  animation: fade-in-up 0.6s var(--ease) both;
}

/* Messages (Django) */
.messages {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.messages .message {
  padding: 14px 24px;
  border-radius: var(--radius-button);
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-body);
  box-shadow: var(--shadow-glass);
  animation: fade-in-up 0.3s var(--ease);
}

.messages .message.success {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
}

.messages .message.error {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
}
