/* Scopeslab - Main Stylesheet - Dark VI Theme */

/* Font Faces */
@font-face {
  font-family: "Inter";
  src:
    url("../assets/fonts/Inter18pt-Regular.woff2") format("woff2"),
    url("../assets/fonts/Inter18pt-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("../assets/fonts/Inter18pt-Medium.woff2") format("woff2"),
    url("../assets/fonts/Inter18pt-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("../assets/fonts/Inter18pt-SemiBold.woff2") format("woff2"),
    url("../assets/fonts/Inter18pt-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("../assets/fonts/Inter18pt-Bold.woff2") format("woff2"),
    url("../assets/fonts/Inter18pt-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src:
    url("../assets/fonts/PlusJakartaSans-Bold.woff2") format("woff2"),
    url("../assets/fonts/PlusJakartaSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables */
:root {
  --primary: #6d5ffa;
  --primary-dark: #5b4fe8;
  --primary-light: #8b7fff;
  --secondary: #10b981;
  --accent-blue: #3b82f6;
  --accent-gold: #f59e0b;
  --accent-red: #ef4444;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-light: #64748b;
  --text-muted: #475569;

  --bg-page: #0b0d1a;
  --bg-white: #111428;
  --bg-gray: #0b0d1a;
  --bg-card: #141729;
  --bg-card-hover: #1a1f3a;
  --bg-dark: #060810;
  --bg-input: #0f1224;

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(109, 95, 250, 0.4);
  --border-glow: rgba(109, 95, 250, 0.3);

  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 40px rgba(109, 95, 250, 0.1);
  --shadow-glow: 0 0 30px rgba(109, 95, 250, 0.35);
  --shadow-blue: 0 0 30px rgba(59, 130, 246, 0.3);

  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --transition: all 0.3s ease;
  --font-title: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gradient-primary: linear-gradient(135deg, #6d5ffa 0%, #8b5cf6 100%);
  --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #6d5ffa 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --gradient-text: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
  --gradient-hero: linear-gradient(160deg, #0d0f20 0%, #14103a 50%, #0d0f20 100%);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(11, 13, 26, 0.92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0;
}

.nav-menu a:hover {
  color: #ffffff;
}

.nav-menu a.active {
  color: #ffffff;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: 1px solid rgba(109, 95, 250, 0.5);
  box-shadow: 0 4px 15px rgba(109, 95, 250, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(109, 95, 250, 0.5);
  filter: brightness(1.1);
}

.nav-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 40px;
  padding: 10px 24px;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(162deg, #7c3aed 0%, #3b82f6 100%);
  color: #f9fafb;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  box-shadow:
    0 4px 6px -4px rgba(168, 85, 247, 0.2),
    0 10px 15px -3px rgba(168, 85, 247, 0.2);
  filter: none;
}

.nav-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 12px -4px rgba(168, 85, 247, 0.28),
    0 14px 22px -5px rgba(168, 85, 247, 0.28);
  filter: none;
  color: #f9fafb;
}

html.mobile-nav-open,
body.mobile-nav-open {
  overflow: hidden;
  height: 100%;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: rgba(10, 14, 26, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  box-sizing: border-box;
  overflow: hidden;
  padding: 88px 24px 48px;
}

.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(26px, 8vw, 42px);
  font-weight: 600;
  line-height: 1.12;
  text-align: center;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: #ffffff;
}

.mobile-nav-languages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 320px;
}

.mobile-nav-lang-option {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}

.mobile-nav-lang-option.active,
.mobile-nav-lang-option:hover {
  border-color: rgba(124, 58, 237, 0.65);
  background: rgba(124, 58, 237, 0.18);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
  color: white;
}

.btn-large {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border: 1px solid var(--border-glow);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background: rgba(109, 95, 250, 0.1);
  border-color: var(--primary);
  color: var(--primary-light);
}

/* Hero Section */
.hero {
  padding: 100px 0 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(109, 95, 250, 0.12) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

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

.hero-badge {
  margin-bottom: 28px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(109, 95, 250, 0.15);
  border: 1px solid rgba(109, 95, 250, 0.3);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  backdrop-filter: blur(10px);
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badges .badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}
.badge-green {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}
.badge-purple {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: var(--text-secondary);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-trust {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 56px;
}

.hero-trust .stars {
  color: var(--accent-gold);
  margin-right: 6px;
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 6px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--bg-page);
}

.section-gray {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Cards */
.card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

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

/* Feature Cards */
.feature-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(109, 95, 250, 0.15);
  border: 1px solid rgba(109, 95, 250, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 15px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 13px;
}

/* Timeline */
.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.timeline-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(109, 95, 250, 0.4);
}

.timeline-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== PRICING ==================== */

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-toggle span.active {
  color: var(--text-primary);
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 14px;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.toggle-track:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--text-secondary);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-track {
  background: var(--primary);
  border-color: var(--primary);
}

.toggle-switch input:checked + .toggle-track:after {
  transform: translateX(24px);
  background: white;
}

.savings-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
}

.pricing-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured {
  border-color: var(--primary) !important;
  background: linear-gradient(160deg, #1a1440 0%, #141729 100%);
  box-shadow: 0 0 40px rgba(109, 95, 250, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(109, 95, 250, 0.4);
}

.pricing-header {
  text-align: center;
}

.pricing-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.pricing-tagline {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.price-currency {
  font-size: 24px;
  font-weight: 600;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
  color: var(--text-secondary);
}

.price-annual {
  display: none;
}

.price-period {
  font-size: 13px;
  color: var(--text-light);
}

.price-original {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-features {
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 9px 0;
  color: var(--text-secondary);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li .check {
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}

.pricing-features li .cross {
  color: var(--text-muted);
  flex-shrink: 0;
  font-size: 13px;
}

.pricing-features li .text {
  flex: 1;
  line-height: 1.4;
}

/* Enterprise Row */
.enterprise-card {
  background: linear-gradient(135deg, #1a1440 0%, #111428 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.enterprise-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.enterprise-content p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 16px;
}

.enterprise-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.enterprise-features span {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.enterprise-features span::before {
  content: "✓";
  color: var(--secondary);
  font-weight: 700;
}

.enterprise-cta {
  flex-shrink: 0;
  text-align: center;
}

.enterprise-cta .price-custom {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* Pricing Comparison Table */
.comparison-wrapper {
  overflow-x: auto;
  margin-top: 60px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.comparison-table thead th {
  background: var(--bg-card);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 20px;
  padding-bottom: 20px;
}

.comparison-table thead th:first-child {
  text-align: left;
  border-radius: var(--radius) 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.comparison-table thead th.featured-col {
  background: linear-gradient(160deg, #1a1440 0%, #141729 100%);
  color: var(--primary-light);
  border-top: 2px solid var(--primary);
}

.comparison-table .feature-group-header td {
  background: rgba(109, 95, 250, 0.06);
  color: var(--primary-light);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  padding: 10px 20px;
}

.comparison-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table td:first-child {
  text-align: left;
  color: var(--text-secondary);
  font-size: 14px;
}

.comparison-table td.featured-col {
  background: rgba(109, 95, 250, 0.04);
}

.ct-check {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 700;
}
.ct-cross {
  color: var(--text-muted);
  font-size: 14px;
}
.ct-partial {
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
}
.ct-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 13px;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial:hover {
  border-color: var(--border-hover);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 14px;
  margin-bottom: 14px;
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 2px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 13px;
}

/* Accuracy Section */
.accuracy-section {
  background: linear-gradient(160deg, #0d0f20 0%, #14103a 50%, #0d0f20 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.accuracy-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.accuracy-text h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.accuracy-text h2 .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accuracy-text p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}

.accuracy-bullets {
  list-style: none;
}

.accuracy-bullets li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 15px;
}

.accuracy-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.accuracy-circle {
  width: 200px;
  height: 200px;
  position: relative;
  flex-shrink: 0;
}

.accuracy-circle svg {
  transform: rotate(-90deg);
}

.accuracy-circle-number {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.accuracy-circle-number strong {
  font-size: 40px;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.accuracy-circle-number span {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Community / Stats */
.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.community-stat {
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.community-stat .number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.community-stat .label {
  color: var(--text-secondary);
  font-size: 15px;
}

/* CTA Section */
.cta-section {
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(109, 95, 250, 0.35) 0%, transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 36px;
  color: var(--text-secondary);
}

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

.cta-center {
  text-align: center;
  margin-top: 40px;
}

.link {
  color: var(--primary-light);
  font-weight: 600;
}

.link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}

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

.faq-toggle {
  width: 28px;
  height: 28px;
  background: rgba(109, 95, 250, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-light);
  font-size: 18px;
  font-weight: 300;
  transition: var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-primary);
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-logo img {
  display: block;
  width: 160px;
  height: auto;
}

.footer-col p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
}

.footer-address {
  font-size: 8px;
  color: #6b7280;
  line-height: 1.7;
  margin-top: 12px;
  font-style: normal;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

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

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-social a:hover {
  transform: translateY(-2px);
}

/* Legal pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 60px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 44px;
  margin-bottom: 16px;
  color: var(--text-primary);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 15px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 15px;
}

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

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

.legal-table-scroll {
  width: 100%;
  overflow-x: auto;
}

.legal-table-scroll table {
  min-width: 720px;
}

.legal-content th,
.legal-content td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
  font-size: 14px;
}

.legal-content th {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  color: var(--text-primary);
}

.legal-content td {
  color: var(--text-secondary);
}

.last-updated {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 14px;
}

.privacy-highlight {
  background: rgba(109, 95, 250, 0.08);
  border: 1px solid rgba(109, 95, 250, 0.2);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
}

.privacy-highlight p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 15px;
}

.privacy-highlight strong {
  color: var(--primary-light);
}

/* Methodology Page */
.method-hero {
  padding: 80px 0 60px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.method-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(109, 95, 250, 0.12) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.method-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: var(--transition);
  margin-bottom: 20px;
}

.method-step:hover {
  border-color: var(--border-hover);
}

.method-step-num {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(109, 95, 250, 0.35);
}

.method-step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.method-step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
}

.formula-box {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  font-family: "SF Mono", "Fira Code", "Courier New", monospace;
  font-size: 14px;
  line-height: 2;
  color: var(--text-secondary);
  margin: 24px 0;
  overflow-x: auto;
}

.formula-box .formula-var {
  color: var(--primary-light);
  font-weight: 600;
}

.formula-box .formula-comment {
  color: var(--text-muted);
  font-style: italic;
}

.cosmic-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.cosmic-type {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.cosmic-type:hover {
  border-color: var(--border-hover);
}

.cosmic-type-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.cosmic-type h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.cosmic-type p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Careers Page */
.job-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.job-filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.job-filter-btn:hover,
.job-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(109, 95, 250, 0.3);
}

.job-list {
  max-width: 900px;
  margin: 0 auto;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.job-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.job-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.job-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.job-tag-dept {
  background: rgba(109, 95, 250, 0.15);
  color: var(--primary-light);
}
.job-tag-type {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
}
.job-tag-loc {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.benefit-card .benefit-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.benefit-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 64px 0 48px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(109, 95, 250, 0.1) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Number highlight */
.number-highlight {
  font-size: 14px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .accuracy-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .accuracy-circle {
    margin: 0 auto;
  }

  .enterprise-card {
    flex-direction: column;
    text-align: center;
  }

  .enterprise-features {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .navbar .logo span,
  .navbar .logo-text {
    display: none;
  }

  .nav-wrapper,
  .nav-inner {
    gap: 12px;
  }

  .nav-menu {
    display: none;
  }

  .navbar .lang-switcher {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn-primary {
    min-width: auto;
    min-height: 38px;
    padding: 9px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .hero-title,
  .page-hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 28px;
  }

  .grid-3,
  .features-grid,
  .pricing-preview,
  .pricing-grid,
  .testimonials,
  .community-stats,
  .cosmic-4-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .legal-content {
    padding: 32px 24px;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .enterprise-card {
    padding: 28px 24px;
  }
}

/* ========== New Hero Section Styles ========== */

/* Hero Section Container */
.hero-new {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.hero-new-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

/* Background Images */
.hero-bg-1 {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  width: auto;
  height: auto;
  pointer-events: none;
  z-index: -1;
}

.hero-bg-2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: auto;
  height: auto;
  pointer-events: none;
  z-index: 2;
}

/* BETA Badge */
.hero-beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  border-radius: 9999px;
  background: #6735ff1a;

  border: 1px solid #6735ff33;
  padding: 0 16px;
  margin-bottom: 32px;
}

.beta-badge-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  min-height: 20px;
  background: #871fff;
  border-radius: 6px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}

.beta-badge-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #906cff;
}

/* Primary Headline */
.hero-title-primary {
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 16px;
  max-width: 976px;
}

/* Secondary Headline */
.hero-title-secondary {
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(180deg, #ffffff 4%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

/* Description */
.hero-description {
  max-width: 768px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

/* CTA Button */
.hero-cta-wrapper {
  margin-bottom: 122px;
}

/* Gradient Button - 新设计 */
.btn-gradient {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 4px;
  background: linear-gradient(90.28deg, #871fff 0.24%, #ac85ff 101.79%);
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.btn-gradient-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 黑色背景容器 */
.btn-gradient::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background: #000000;
  border-radius: 9999px;
  transition: transform 0.5s ease-out;
  transform-origin: left;
}

/* Hover效果：黑色背景从右往左缩放 */
.btn-gradient:hover::before {
  transform: scaleX(0);
}

/* 箭头图标 */
.btn-arrow-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.btn-gradient:hover .btn-arrow-icon {
  transform: rotate(180deg);
}

/* 按钮文字 */
.btn-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  width: 100%;
  min-width: 0;
  padding: 0 20px;
  white-space: nowrap;
}

/* 保持原有的btn-primary样式兼容性 */
.btn-primary.btn-gradient:hover {
  transform: translateY(-2px);
}

/* Social Proof */
.hero-social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.social-proof-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.social-proof-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.star-icon {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
}

.social-proof-rating {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.rating-number {
  font-size: 18px;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title-primary,
  .hero-title-secondary {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .btn-gradient {
    width: 100%;
    max-width: none;
  }

  .hero-cta-wrapper {
    width: 100%;
  }

  .btn-text {
    font-size: clamp(13px, 3.8vw, 16px);
  }

  .gradient-button-text {
    font-size: clamp(13px, 3.8vw, 16px);
  }

  .community-cta-button,
  .final-cta-button {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero-title-primary,
  .hero-title-secondary {
    font-size: 32px;
  }

  .hero-beta-badge {
    flex-direction: row;
    text-align: left;
  }

  .hero-cta-wrapper {
    margin-bottom: 80px;
  }
}

/* ========== Features Section Styles ========== */

/* Features Section Container */
.features-section {
  padding: 96px 24px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

/* Features Title */
.features-title {
  max-width: 700px;
  text-align: center;
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.text-gradient-blue {
  background: linear-gradient(180deg, #ffffff 0%, #6735ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 30px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.1);
  color: #8b7fff;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 22px;
}

/* Features Grid */
.features-grid {
  display: grid;
  width: 100%;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}

/* Feature Card */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 1px solid rgba(109, 95, 250, 0.2);
  background: #111827;
  padding: 48px 32px;
}

.feature-icon {
  width: 200px;
  height: 200px;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 32px;
}

.feature-title {
  margin-bottom: 10px;
  text-align: center;
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #ffffff;
}

.feature-description {
  text-align: center;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  line-height: 23px;
  color: #9ca3af;
}

/* Features Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 64px 24px;
  }

  .features-container {
    gap: 48px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-title {
    font-size: 36px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .feature-icon {
    width: 160px;
    height: 160px;
    max-width: 160px;
  }
}

@media (max-width: 640px) {
  .features-title {
    font-size: 32px;
  }

  .feature-icon {
    width: 140px;
    height: 140px;
    max-width: 140px;
  }
}

/* ========== How It Works Section Styles ========== */

/* How It Works Section */
.how-it-works-section {
  background-image: url("../assets/images/how_it_work_bg_2x.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 96px 24px;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 0;
}

/* Title & Description */
.how-it-works-title {
  margin-bottom: 16px;
  text-align: center;
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  color: #ffffff;
}

.how-it-works-description {
  margin-bottom: 80px;
  text-align: center;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #9ca3af;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  width: 100%;
  gap: 64px;
  grid-template-columns: repeat(3, 1fr);
  justify-items: start; /* 关键：使用start而不是center，与website一致 */
}

/* Step Item */
.step-item {
  width: 100%;
  position: relative;
  display: flex;
  max-width: 378px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step-icon {
  margin-bottom: 24px;
  height: auto;
  width: auto;
  max-height: 96px;
  max-width: 96px;
  object-fit: contain;
}

.step-title {
  margin-bottom: 8px;
  text-align: center;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #ffffff;
}

.step-description {
  text-align: center;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #9ca3af;
}

/* How It Works Responsive Design */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 64px 24px;
  }

  .how-it-works-container {
    padding: 64px 0;
  }

  .how-it-works-title {
    font-size: 36px;
    line-height: 40px;
  }

  .how-it-works-description {
    margin-bottom: 60px;
    font-size: 14px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    justify-content: center;
    justify-items: center;
  }

  .step-item {
    max-width: 100%;
  }

  .step-arrow-horizontal {
    display: none !important; /* 移动端单列布局，隐藏水平箭头 */
  }
}

@media (max-width: 640px) {
  .how-it-works-title {
    font-size: 32px;
  }

  .step-icon {
    max-width: 80px;
    max-height: 80px;
  }
}

/* ========== How It Works Arrow Animations ========== */

/* Arrow Animation Keyframes */
@keyframes arrowGrowHorizontal {
  from {
    width: 0%;
  }
  to {
    width: calc(100% - 68px); /* 自适应宽度，匹配website的实现 */
  }
}

@keyframes arrowGrowVertical {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}

/* Desktop Arrow - Horizontal */
.step-arrow-horizontal {
  position: absolute;
  top: 38px;
  left: calc(50% + 58px);
  width: calc(100% - 52px); /* gap=64px: 100% + 64 - 116 = 100% - 52px */
  height: 20px;
  display: block;
}

/* Mobile Arrow - Vertical */

/* Animation Classes */
.step-arrow-horizontal.animate-in {
  animation: arrowGrowHorizontal 1.5s ease-out forwards;
}

.step-arrow-vertical.animate-in {
  animation: arrowGrowVertical 1.5s ease-out forwards;
}

/* Arrow Delay Classes */
.arrow-1.animate-in,
.arrow-mobile-1.animate-in {
  animation-delay: 0.5s;
}

.arrow-2.animate-in,
.arrow-mobile-2.animate-in {
  animation-delay: 1.3s;
}

/* Responsive Arrow Display */
@media (min-width: 1024px) {
  .step-arrow-horizontal {
    display: block; /* 桌面端显示水平箭头 */
  }
}

@media (max-width: 1024px) {
  .step-arrow-horizontal {
    width: calc(100% - 68px); /* gap=48px: 100% + 48 - 116 = 100% - 68px */
  }
}

/* ========== Section 4 - Accuracy ========== */

.accuracy-section-new {
  width: 100%;
  height: 100%;
  padding: 96px 24px;
  background: linear-gradient(180deg, #0a0e1a 0%, #111827 90%);
}

.accuracy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .accuracy-section-new {
    padding: 118px 24px;
  }

  .accuracy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* Left Column - Content */
.accuracy-content-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .accuracy-content-left {
    align-items: flex-start;
    text-align: left;
  }
}

/* Badge */
.accuracy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 8px 16px;
  margin-bottom: 24px;
  background: #871fff;
}

.accuracy-badge span {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: #ffffff;
}

/* Title */
.accuracy-title {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #ffffff;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .accuracy-title {
    font-size: 36px;
    line-height: 40px;
  }
}

@media (min-width: 1024px) {
  .accuracy-title {
    font-size: 48px;
    line-height: 52px;
  }
}

/* Subtitle */
.accuracy-subtitle {
  margin-top: 24px;
  max-width: 520px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #9ca3af;
}

/* Bullet Points */
.accuracy-bullets {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accuracy-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
}

.accuracy-bullet-item p {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  text-align: left;
}

/* Right Column - Circular Progress Chart */
.accuracy-chart {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accuracy-circle-wrapper {
  position: relative;
  width: 274px;
  height: 274px;
  filter: none;
}

.accuracy-pie-image {
  display: block;
  width: 274px;
  height: 274px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .accuracy-pie-image {
    width: 274px;
    height: 274px;
  }
}

.accuracy-circle-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.accuracy-percentage {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

@media (min-width: 640px) {
  .accuracy-percentage {
    font-size: 60px;
  }
}

.accuracy-label {
  margin-top: 8px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #9ca3af;
  text-transform: uppercase;
}

/* ========== Section 5 - Pricing ========== */

.pricing-section-new {
  padding: 96px 0px;
}

.pricing-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header h2 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
  color: #ffffff;
  margin-bottom: 16px;
}

.pricing-header p {
  max-width: 600px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #9ca3af;
}

/* Pricing Cards Grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  max-width: 1280px;
}

@media (min-width: 768px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Pricing Card */
.pricing-card-new {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: #111827;
}

.pricing-card-new h3 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 8px;
}

.pricing-description {
  margin-top: 8px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #9ca3af;
}

.pricing-price {
  margin-top: 24px;
}

.pricing-amount {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
.pricing-amount .unit {
  font-family: "Inter";
  font-weight: 700;
  font-size: 24px;
  color: #9ca3af;
  line-height: 1;
  margin-right: 2px;
  margin-bottom: 4px;
}

.pricing-period {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #9ca3af;
}

.pricing-features-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 180px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricing-feature span {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}

.pricing-feature .text-muted {
  color: #6b7280;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #22c55e;
}

.x-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #6b7280;
}

/* Pricing Buttons */
.pricing-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  width: 100%;
  height: 56px;
  border-radius: 9999px;
  border: 1px solid rgba(124, 58, 237, 0.5);
  padding: 12px 24px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pricing-button-secondary:hover {
  background: rgba(124, 58, 237, 0.5);
}

.gradient-button-link,
.community-cta-button,
.final-cta-button {
  display: inline-flex;
  text-decoration: none;
}

/* Featured Card */
.pricing-card-featured {
  position: relative;
  border: 2px solid transparent;
  background:
    linear-gradient(#111827, #111827) padding-box,
    linear-gradient(180deg, #ffffff 0%, #6735ff 100%) border-box;
  box-shadow: 0px 0px 40px 0px #7c3aed1a;
}

.pricing-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 9999px;
  background: #f7f7f8;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  color: #0d101f;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-badge-popular span {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  color: #0d101f;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Gradient Button */
.gradient-button-link {
  display: inline-flex;
  width: 100%;
  max-width: none;
  margin-top: 32px;
  text-decoration: none;
}

.gradient-button-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 9999px;
  cursor: pointer;
  height: 56px;
  padding: 4px;
  background: linear-gradient(90.28deg, #871fff 0.24%, #ac85ff 101.79%);
  width: 100%;
}

.gradient-button-inner {
  position: absolute;
  overflow: hidden;
  border-radius: 9999px;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.gradient-button-bg {
  position: absolute;
  inset: 0;
  background: #000000;
  transition: transform 0.5s ease-out;
  transform-origin: left;
}

.gradient-button-group:hover .gradient-button-bg {
  transform: scaleX(0);
}

.gradient-button-content {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.gradient-button-icon {
  height: 48px;
  width: 48px;
  transition: transform 0.5s ease;
  flex-shrink: 0;
}

.gradient-button-group:hover .gradient-button-icon {
  transform: rotate(180deg);
}

.gradient-button-text {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  width: 100%;
  min-width: 0;
  padding: 0 20px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Footer Link */
.pricing-footer-link {
  margin-top: 48px;
}

.pricing-footer-link a {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  color: #8b7fff;
  transition: color 0.3s ease;
}

.pricing-footer-link a:hover {
  color: #5b9bd5;
}

/* ========== Section 6 - Community CTA ========== */

.community-cta-section {
  width: 100%;
  height: 100%;
  padding: 96px 24px;
  background: linear-gradient(180deg, #0a0e1a 0%, #111827 90%);
}

.community-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

.community-cta-wrapper h2 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
  color: #ffffff;
  margin-bottom: 16px;
}

.community-cta-wrapper p {
  max-width: 672px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #9ca3af;
  margin-bottom: 64px;
}

/* Stats Grid */
.community-stats-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 64px;
  width: 100%;
}

@media (min-width: 768px) {
  .community-stats-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.community-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.community-stat-number {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
  margin-bottom: 8px;
}

.community-stat-label {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #6b7280;
}

.github-icon {
  width: 47px;
  height: 59px;
  margin-bottom: 12px;
}

/* CTA button styles are shared with the gradient button pattern above. */

/* ========== Section 7 - FAQ ========== */

.faq-section-new {
  width: 100%;
  height: 100%;
  padding: 96px 24px;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 896px;
  margin: 0 auto;
}

.faq-wrapper h2 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 64px;
}

/* FAQ List */
.faq-list-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* FAQ Item */
.faq-item-new {
  border-radius: 12px;
  overflow: hidden;
  background: #111827;
  transition: all 0.3s ease;
}

.faq-question-new {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question-new span {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.faq-toggle-new {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  transition: transform 0.3s ease;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  color: #ffffff;
}

.faq-item-new.open .faq-toggle-new {
  transform: rotate(45deg);
}

.faq-answer-new {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-item-new.open .faq-answer-new {
  max-height: 500px;
  opacity: 1;
}

.faq-answer-new p {
  padding: 0 32px 24px 32px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #9ca3af;
}

.faq-answer-new .link {
  color: #871fff;
  transition: color 0.3s ease;
}

.faq-answer-new .link:hover {
  color: #5b9bd5;
}

/* ========== Section 8 - Final CTA ========== */

.final-cta-section {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 96px 24px 150px 24px;
}

@media (min-width: 1024px) {
  .final-cta-section {
    padding: 118px 24px 246px 24px;
  }
}

/* Background Image */
.final-cta-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.final-cta-bg img {
  width: auto;
  height: auto;
}

/* Content */
.final-cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
  color: #ffffff;
  margin-bottom: 16px;
}

.final-cta-content p {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #9ca3af;
  margin-bottom: 32px;
  max-width: 672px;
}

/* CTA button styles are shared with the gradient button pattern above. */

/* ========== Features Page V2 ========== */

.features-v2-main {
  background: #0a0e1a;
  color: #ffffff;
  overflow: hidden;
}

.features-v2-hero,
.features-v2-cta {
  position: relative;
  padding: 128px 24px;
  background: radial-gradient(
    52.88% 153.53% at 50% 50%,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(124, 58, 237, 0) 50%
  );
}

.features-v2-hero-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.features-v2-hero-kicker,
.features-v2-hero-title {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 56px;
  line-height: 1.08;
  margin: 0;
}

.features-v2-hero-kicker {
  font-weight: 600;
  margin-bottom: 16px;
}

.features-v2-hero-title {
  font-weight: 700;
  margin-bottom: 24px;
}

.features-v2-hero-copy {
  font-size: 18px;
  line-height: 1.7;
  color: #d1d5db;
  margin: 0;
}

.features-v2-section {
  padding: 128px 24px;
  background: #0a0e1a;
}

.features-v2-section-gradient {
  background: linear-gradient(180deg, #0a0e1a 0%, #111827 100%);
}

.features-v2-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.features-v2-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-v2-section-header h2,
.features-v2-cta h2 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
}

.features-v2-section-header p,
.features-v2-cta p {
  font-size: 18px;
  line-height: 1.7;
  color: #d1d5db;
  margin: 0;
}

.features-v2-grid {
  display: grid;
  gap: 24px;
}

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

.features-v2-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 24px;
  background: #1a1f2e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.features-v2-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.features-v2-main .features-v2-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(124, 58, 237, 0.32);
  box-shadow: 0 20px 40px rgba(109, 95, 250, 0.2);
}

.features-v2-main .features-v2-card:hover::before {
  opacity: 1;
}

.features-v2-card-icon {
  display: block;
  width: auto;
  height: 40px;
  max-width: 56px;
  object-fit: contain;
  margin-bottom: 24px;
}

.features-v2-card h3 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.features-v2-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #d1d5db;
  margin: 0 0 16px;
}

.features-v2-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.features-v2-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.45;
}

.features-v2-list img {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 3px;
}

.features-v2-deliverable-card h3 {
  display: inline-block;
  color: #ffffff;
}

.features-v2-deliverable-card p {
  margin-bottom: 0;
}

.features-v2-cta-inner {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.features-v2-cta p {
  max-width: 576px;
  margin: 0 auto 48px;
}

.features-v2-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.features-v2-gradient-button,
.features-v2-secondary-button {
  min-height: 58px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.features-v2-gradient-button {
  position: relative;
  width: 250px;
  min-width: 0;
  padding: 4px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(90.28deg, #871fff 0.24%, #ac85ff 101.79%);
}

.features-v2-gradient-button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: #000000;
  transform-origin: left;
  transition: transform 0.5s ease;
}

.features-v2-gradient-button:hover::before {
  transform: scaleX(0);
}

.features-v2-gradient-button img,
.features-v2-gradient-button span {
  position: relative;
  z-index: 1;
}

.features-v2-gradient-button img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  transition: transform 0.5s ease;
}

.features-v2-gradient-button:hover img {
  transform: rotate(180deg);
}

.features-v2-gradient-button span {
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.features-v2-secondary-button {
  color: #c084fc;
  border: 2px solid #a78bfa;
  padding: 0 32px;
  background: transparent;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.features-v2-secondary-button:hover {
  background: rgba(192, 132, 252, 0.1);
  color: #ffffff;
}

@media (max-width: 1024px) {
  .features-v2-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .features-v2-hero,
  .features-v2-section,
  .features-v2-cta {
    padding: 88px 20px;
  }

  .features-v2-hero-kicker,
  .features-v2-hero-title {
    font-size: 40px;
  }

  .features-v2-section-header h2,
  .features-v2-cta h2 {
    font-size: 36px;
  }

  .features-v2-grid-3 {
    grid-template-columns: 1fr;
  }

  .features-v2-gradient-button,
  .features-v2-secondary-button {
    width: 100%;
    max-width: none;
  }

  .features-v2-gradient-button span {
    font-size: clamp(13px, 3.8vw, 16px);
  }
}

/* ========== Contact Page V2 ========== */

.contact-v2-main {
  min-height: 100vh;
  background: #0a0e1a;
  color: #ffffff;
  overflow: hidden;
}

.contact-v2-hero,
.contact-v2-cta {
  position: relative;
  padding: 80px 24px;
  background: radial-gradient(
    52.88% 153.53% at 50% 50%,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(124, 58, 237, 0) 50%
  );
}

.contact-v2-hero-inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-v2-hero-title {
  margin: 0 0 24px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 56px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-v2-hero-copy {
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.contact-v2-section {
  padding: 0px 24px 80px;
  background: #0a0e1a;
}

.contact-v2-container {
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
}

.contact-v2-content-grid {
  display: flex;
  width: 100%;
  max-width: 690px;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto;
}

.contact-v2-info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-v2-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 120px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: #1a1f2e;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-v2-info-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(124, 58, 237, 0.32);
  box-shadow: 0 20px 40px rgba(109, 95, 250, 0.2);
}

.contact-v2-info-card > img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.contact-v2-info-card > span {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.contact-v2-info-card small {
  display: block;
  color: #9ca3af;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-v2-info-card strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  word-break: break-word;
}

.contact-v2-info-card em {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 20px;
  font-style: normal;
  font-weight: 500;
  margin-top: 4px;
}

.contact-v2-info-card em img {
  width: 11px;
  height: 12px;
  flex: 0 0 auto;
}

.contact-v2-form-panel {
  padding: 40px 30px;
  border-radius: 16px;
  background: #1a1f36;
}

.contact-v2-form-panel h2 {
  color: #ffffff;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 32px;
}

.contact-v2-form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-v2-form-group {
  width: 100%;
  margin-bottom: 20px;
}

.contact-v2-form-row .contact-v2-form-group {
  margin-bottom: 0;
}

.contact-v2-form-group label {
  display: block;
  color: #d1d5db;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.contact-v2-form-group label span {
  color: #ff4d4d;
}

.contact-v2-form-group input,
.contact-v2-form-group select,
.contact-v2-form-group textarea {
  width: 100%;
  border: 1px solid #3a3f54;
  border-radius: 8px;
  background-color: #2a2e42;
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  line-height: 22px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-v2-form-group input,
.contact-v2-form-group select {
  height: 48px;
  padding: 0 16px;
}

.contact-v2-form-group textarea {
  min-height: 120px;
  padding: 12px 16px;
  resize: none;
}

.contact-v2-form-group select {
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239CA3AF' d='M6 8L0 2h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-v2-form-group input::placeholder,
.contact-v2-form-group textarea::placeholder {
  color: #6b7280;
}

.contact-v2-form-group input:focus,
.contact-v2-form-group select:focus,
.contact-v2-form-group textarea:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.14);
}

.contact-v2-message-group {
  margin-bottom: 32px;
}

.contact-v2-submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-v2-secure-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 13px;
  line-height: 20px;
}

.contact-v2-secure-note img {
  width: 11px;
  height: 12px;
  flex: 0 0 auto;
}

.contact-v2-gradient-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-width: 0;
  padding: 4px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90.28deg, #871fff 0.24%, #ac85ff 101.79%);
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.contact-v2-gradient-button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: #000000;
  transform-origin: left;
  transition: transform 0.5s ease;
}

.contact-v2-gradient-button:hover::before {
  transform: scaleX(0);
}

.contact-v2-gradient-button img,
.contact-v2-gradient-button span {
  position: relative;
  z-index: 1;
}

.contact-v2-gradient-button img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  transition: transform 0.5s ease;
}

.contact-v2-gradient-button:hover img {
  transform: rotate(180deg);
}

.contact-v2-gradient-button span {
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-v2-cta-inner {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.contact-v2-cta h2 {
  color: #ffffff;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 24px;
}

.contact-v2-cta p {
  max-width: 576px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto 48px;
}

.contact-v2-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-v2-faq-button {
  /* width: 180px; */
}

@media (min-width: 640px) {
  .contact-v2-form-row,
  .contact-v2-submit-row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .contact-v2-hero,
  .contact-v2-cta {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .contact-v2-content-grid {
    gap: 48px;
  }

  .contact-v2-info-card {
    height: 100%;
  }
}

@media (max-width: 768px) {
  .contact-v2-hero-title,
  .contact-v2-cta h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .contact-v2-form-panel {
    padding: 32px 20px;
  }

  .contact-v2-gradient-button {
    width: 100%;
    max-width: none;
  }

  .contact-v2-faq-button {
    /* width: 180px; */
  }

  .contact-v2-gradient-button span {
    flex: 1;
    padding: 0 20px;
    text-align: center;
    font-size: clamp(13px, 3.8vw, 16px);
  }
}

/* ========== How It Works Page V2 ========== */

.how-v2-main {
  min-height: 100vh;
  background: #0a0e1a;
  color: #ffffff;
  overflow: hidden;
}

.how-v2-hero,
.how-v2-cta {
  position: relative;
  padding: 128px 24px;
  background: radial-gradient(
    52.88% 153.53% at 50% 50%,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(124, 58, 237, 0) 50%
  );
}

.how-v2-hero-inner,
.how-v2-cta-inner {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.how-v2-hero-title {
  max-width: 1105px;
  margin: 0 auto 24px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 56px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0;
}

.how-v2-hero-copy {
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 24px;
}

.greenTip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 16px;
  border: 1px solid rgba(16, 184, 90, 0.25);
  border-radius: 999px;
  background: rgba(16, 184, 90, 0.1);
  color: #10b85a;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.greenTip img {
  flex: 0 0 auto;
}

.how-v2-section {
  padding: 96px 24px;
}

.how-v2-section-dark {
  background: #0b0f1c;
}

.how-v2-section-gradient {
  background: linear-gradient(180deg, #0a0e1a 0%, #111827 100%);
}

.how-v2-section-muted {
  background: rgba(17, 24, 39, 0.3);
}

.how-v2-container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
}

.how-v2-container-wide {
  max-width: 1280px;
}

.how-v2-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-v2-section-header h2,
.how-v2-cta h2 {
  color: #ffffff;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 16px;
}

.how-v2-section-header p,
.how-v2-cta p {
  color: #d1d5db;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}

.how-v2-section-gradient .how-v2-section-header p,
.how-v2-section-muted .how-v2-section-header p {
  color: #9ca3af;
}

.how-v2-section-header-compact {
  margin-bottom: 0;
}

.how-v2-section-header-compact h2 {
  font-size: 40px;
  line-height: 48px;
}

.how-v2-section-header-compact p {
  line-height: 28px;
}

.how-v2-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-bottom: 96px;
}

.how-v2-process-step-last {
  margin-bottom: 0;
}

.how-v2-step-media,
.how-v2-step-content {
  flex: 1 1 0;
  width: 100%;
}

.how-v2-step-media img {
  display: block;
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: 16px;
}

.how-v2-step-content h3 {
  color: #ffffff;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 16px;
}

.how-v2-step-content p {
  color: #9ca3af;
  font-size: 16px;
  line-height: 30px;
  margin: 0 0 24px;
}

.how-v2-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(180deg, #871fff 0%, #ac85ff 100%);
  box-shadow: 0 5px 16px rgba(119, 120, 254, 0.55);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.how-v2-check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-v2-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d1d5db;
  font-size: 16px;
  line-height: 24px;
}

.how-v2-check-list img {
  flex: 0 0 auto;
}

.how-v2-output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.how-v2-output-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  background: #1a1f2e;
}

.how-v2-output-card img {
  flex: 0 0 auto;
}

.how-v2-output-card span {
  color: #f9fafb;
  font-size: 14px;
  line-height: 20px;
}

.how-v2-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
}

.how-v2-stat-card {
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: #1a1f2e;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.how-v2-stat-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(124, 58, 237, 0.32);
  box-shadow: 0 20px 40px rgba(109, 95, 250, 0.2);
}

.how-v2-stat-number {
  margin-bottom: 8px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
}

.how-v2-stat-card p {
  color: #9ca3af;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.how-v2-timeline {
  position: relative;
  margin-top: 80px;
}

.how-v2-timeline-line-desktop {
  display: none;
}

.how-v2-timeline-line-mobile {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: 64px;
  padding-left: 32px;
}

.timeline-line-container-horizontal {
  width: 0;
  overflow: hidden;
}

.timeline-line-container-horizontal.animate-in {
  animation: howTimelineGrowHorizontal 1.5s ease-out forwards;
}

.timeline-line-container-vertical {
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
}

.timeline-line-container-vertical.animate-in {
  animation: howTimelineGrowVertical 1.5s ease-out forwards;
}

.how-v2-timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.how-v2-timeline-item {
  min-height: 136px;
  padding-left: 96px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
}

.how-v2-timeline-item img {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 0 24px;
}

.how-v2-timeline-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 0 8px;
}

.how-v2-timeline-time {
  color: #ffffff;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 0 8px;
}

.how-v2-timeline-time-total {
  color: #10b85a;
}

.how-v2-cta-inner {
  max-width: 896px;
}

.how-v2-cta p {
  max-width: 576px;
  margin: 0 auto 48px;
}

.how-v2-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.how-v2-gradient-button,
.how-v2-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.how-v2-gradient-button {
  position: relative;
  height: 56px;
  width: 250px;
  min-width: 0;
  padding: 4px;
  overflow: hidden;
  border: 1px solid transparent;
  background: linear-gradient(90.28deg, #871fff 0.24%, #ac85ff 101.79%);
  color: #ffffff;
}

.how-v2-gradient-button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: #000000;
  transform-origin: left;
  transition: transform 0.5s ease;
}

.how-v2-gradient-button:hover::before {
  transform: scaleX(0);
}

.how-v2-gradient-button img,
.how-v2-gradient-button span {
  position: relative;
  z-index: 1;
}

.how-v2-gradient-button img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  transition: transform 0.5s ease;
}

.how-v2-gradient-button:hover img {
  transform: rotate(180deg);
}

.how-v2-gradient-button span {
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.how-v2-secondary-button {
  height: 58px;
  padding: 0 32px;
  border: 2px solid #a78bfa;
  background: transparent;
  color: #c084fc;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.how-v2-secondary-button:hover {
  background: rgba(192, 132, 252, 0.1);
  transform: translateY(-2px);
}

@keyframes howTimelineGrowHorizontal {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes howTimelineGrowVertical {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@media (min-width: 640px) {
  .how-v2-cta-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .how-v2-process-step {
    flex-direction: row;
  }

  .how-v2-process-step-reverse {
    flex-direction: row-reverse;
  }

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

  .how-v2-timeline-line-desktop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 64px;
    padding: 0 50px;
  }

  .how-v2-timeline-line-mobile {
    display: none;
  }

  .how-v2-timeline-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .how-v2-timeline-item {
    padding-left: 0;
    text-align: center;
  }

  .how-v2-timeline-item img {
    margin: 0 auto 24px;
  }
}

@media (min-width: 1024px) {
  .how-v2-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .how-v2-hero,
  .how-v2-section,
  .how-v2-cta {
    padding: 88px 20px;
  }

  .how-v2-hero-title,
  .how-v2-section-header h2,
  .how-v2-cta h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .how-v2-section-header-compact h2 {
    font-size: 34px;
    line-height: 42px;
  }

  .how-v2-section-header {
    margin-bottom: 48px;
  }

  .how-v2-process-step {
    margin-bottom: 80px;
  }

  .how-v2-process-step-last {
    margin-bottom: 0;
  }

  .how-v2-step-content h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .how-v2-output-grid {
    grid-template-columns: 1fr;
  }

  .how-v2-gradient-button,
  .how-v2-secondary-button {
    width: 100%;
    max-width: none;
  }

  .how-v2-gradient-button span {
    font-size: clamp(13px, 3.8vw, 16px);
  }
}

/* ========== Pricing Page V2 ========== */

.pricing-v2-main {
  background: #0a0e1a;
  color: #ffffff;
  overflow: hidden;
}

.pricing-v2-hero,
.pricing-v2-cta {
  position: relative;
  padding: 128px 24px;
  background: radial-gradient(
    52.88% 153.53% at 50% 50%,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(124, 58, 237, 0) 50%
  );
}

.pricing-v2-hero-inner,
.pricing-v2-cta-inner {
  max-width: 1105px;
  margin: 0 auto;
  text-align: center;
}

.pricing-v2-hero-kicker,
.pricing-v2-hero-title {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 56px;
  line-height: 1.08;
  margin: 0;
}

.pricing-v2-hero-kicker {
  font-weight: 600;
}

.pricing-v2-hero-title {
  display: inline-block;
  max-width: 1105px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.pricing-v2-hero-copy {
  font-size: 18px;
  line-height: 1.7;
  color: #d1d5db;
  margin: 0;
}

.pricing-v2-section {
  padding: 128px 24px;
  background: #0a0e1a;
}

.pricing-v2-muted-section {
  background: rgba(17, 24, 39, 0.3);
}

.pricing-v2-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-v2-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-v2-section-header h2,
.pricing-v2-cta h2 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
}

.pricing-v2-section-header p,
.pricing-v2-cta p {
  font-size: 18px;
  line-height: 1.7;
  color: #d1d5db;
  margin: 0;
}

.pricing-v2-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-v2-plan {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 0;
  border-radius: 24px;
  background: transparent;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-v2-plan:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(109, 95, 250, 0.2);
}

.pricing-v2-plan-popular {
  padding: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #6735ff 100%);
  box-shadow: 0px 0px 40px 0px #7c3aed1a;
}

.pricing-v2-plan-inner {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  align-items: stretch;
  padding: 32px;
  text-align: left;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
}

.pricing-v2-plan-popular .pricing-v2-plan-inner {
  border: none;
  border-radius: 22px;
  padding: 32px 40px;
  background: linear-gradient(180deg, #111827 0%, #0a0e1a 100%);
}

.pricing-v2-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f7f7f8;
  color: #0d101f;
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-v2-plan h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #f9fafb;
  margin: 0 0 8px;
}

.pricing-v2-plan-tip {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #6b7280;
  margin: 0 0 24px;
}

.pricing-v2-plan-popular .pricing-v2-plan-tip {
  color: #9ca3af;
}

.pricing-v2-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 32px;
}

.pricing-v2-currency {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #9ca3af;
}

.pricing-v2-amount {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
}

.pricing-v2-period {
  margin: 0;
  color: #9ca3af;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
}

.pricing-v2-feature-list {
  display: flex;
  width: 100%;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 56px;
  padding: 0;
  list-style: none;
}

.pricing-v2-plan-popular .pricing-v2-feature-list {
  margin-bottom: 40px;
}

.pricing-v2-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #d1d5db;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
}

.pricing-v2-feature-list img {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 3px;
}

.pricing-v2-feature-list .pricing-v2-muted {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-v2-outline-button,
.pricing-v2-gradient-button {
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.pricing-v2-outline-button {
  color: #ffffff;
  border: 1px solid #7c3aed80;
  background: transparent;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    opacity 0.3s ease;
}

.pricing-v2-outline-button:hover {
  border-color: #a78bfa;
  background: rgba(124, 58, 237, 0.1);
}

.pricing-v2-gradient-button {
  position: relative;
  max-width: 250px;
  min-width: 0;
  padding: 4px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(90.28deg, #871fff 0.24%, #ac85ff 101.79%);
}

.pricing-v2-plan .pricing-v2-gradient-button {
  max-width: none;
}

.pricing-v2-gradient-button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: #000000;
  transform-origin: left;
  transition: transform 0.5s ease;
}

.pricing-v2-gradient-button:hover::before {
  transform: scaleX(0);
}

.pricing-v2-gradient-button img,
.pricing-v2-gradient-button span {
  position: relative;
  z-index: 1;
}

.pricing-v2-gradient-button img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  transition: transform 0.5s ease;
}

.pricing-v2-gradient-button:hover img {
  transform: rotate(180deg);
}

.pricing-v2-gradient-button span {
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pricing-v2-table-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-color: #374151 transparent;
  scrollbar-width: thin;
}

.pricing-v2-table-scroll::-webkit-scrollbar {
  height: 8px;
}

.pricing-v2-table-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.pricing-v2-table-scroll::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 999px;
}

.pricing-v2-table {
  position: relative;
  min-width: 1280px;
  overflow: hidden;
  border-radius: 16px;
  background: #1a1f2e;
}

.pricing-v2-pro-column {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(57.142857% - 1.142857px);
  width: calc(14.285714% - 18.285714px);
  pointer-events: none;
  background: rgba(139, 127, 255, 0.1);
  border-top: 4px solid #8b7fff;
  border-right: 1px solid rgba(139, 127, 255, 0.3);
  border-bottom: 1px solid rgba(139, 127, 255, 0.3);
  border-left: 1px solid rgba(139, 127, 255, 0.3);
}

.pricing-v2-table-row {
  position: relative;
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-v2-table-row > div {
  position: relative;
  z-index: 1;
  color: #d1d5db;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
}

.pricing-v2-table-row > div:first-child {
  text-align: left;
}

.pricing-v2-table-row > div:nth-child(4) {
  font-weight: 700;
}

.pricing-v2-table-row img {
  display: block;
  width: 13px;
  height: 14px;
  margin: 0 auto;
}

.pricing-v2-table-head {
  padding-top: 24px;
  padding-bottom: 24px;
}

.pricing-v2-table-head > div {
  color: #9ca3af;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.pricing-v2-table-head > div:nth-child(4) {
  color: #8b7fff;
}

.pricing-v2-table-group {
  position: relative;
  z-index: 1;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  color: #8b7fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.pricing-v2-table-row-last {
  border-bottom: none;
}

.pricing-v2-dash {
  color: #4b5563;
}

.pricing-v2-accent {
  color: #8b7fff;
}

.pricing-v2-featured-cell {
  color: #d1d5db;
  font-weight: 700;
}

.pricing-v2-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pricing-v2-addon-card {
  padding: 32px;
  text-align: center;
  background: #1a1f2e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-v2-addon-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(124, 58, 237, 0.32);
  box-shadow: 0 20px 40px rgba(109, 95, 250, 0.2);
}

.pricing-v2-addon-card img {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
}

.pricing-v2-addon-card h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin: 0 0 12px;
}

.pricing-v2-addon-card p {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.pricing-v2-addon-price {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-v2-addon-price span {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 400;
}

.pricing-v2-addon-card .pricing-v2-addon-note {
  color: #9ca3af;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 0;
}

.pricing-v2-faq-container {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
}

.pricing-v2-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-v2-faq-item {
  background: #111827;
}

.pricing-v2-cta-inner {
  max-width: 896px;
}

.pricing-v2-cta p {
  max-width: 576px;
  margin: 0 auto 48px;
}

.pricing-v2-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .pricing-v2-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .pricing-v2-hero,
  .pricing-v2-section,
  .pricing-v2-cta {
    padding: 88px 20px;
  }

  .pricing-v2-hero-kicker,
  .pricing-v2-hero-title {
    font-size: 40px;
  }

  .pricing-v2-section-header h2,
  .pricing-v2-cta h2 {
    font-size: 36px;
  }

  .pricing-v2-addon-grid {
    grid-template-columns: 1fr;
  }

  .pricing-v2-plan-inner,
  .pricing-v2-addon-card {
    padding: 28px 24px;
  }

  .pricing-v2-plan-popular .pricing-v2-plan-inner {
    padding: 28px 24px;
  }

  .pricing-v2-gradient-button {
    width: 100%;
    max-width: none;
  }

  .pricing-v2-gradient-button span {
    font-size: clamp(13px, 3.8vw, 16px);
  }
}

/* Title Font Overrides */
h1,
h2,
h3,
h4,
.section-header h2,
.card h3,
.feature-card h3,
.timeline-content h3,
.pricing-header h2,
.pricing-header h3,
.enterprise-content h3,
.accuracy-text h2,
.cta-content h2,
.faq-question h3,
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.method-step-content h3,
.job-info h3,
.benefit-card h4,
.page-hero h1,
.hero-title,
.hero-title-primary,
.hero-title-secondary,
.features-title,
.feature-title,
.how-it-works-title,
.step-title,
.accuracy-title,
.pricing-card-new h3,
.community-cta-wrapper h2,
.faq-wrapper h2,
.final-cta-content h2,
.features-v2-hero-kicker,
.features-v2-hero-title,
.features-v2-section-header h2,
.features-v2-cta h2,
.features-v2-card h3,
.features-v2-deliverable-card h3,
.contact-v2-hero-title,
.contact-v2-form-panel h2,
.contact-v2-cta h2,
.how-v2-hero-title,
.how-v2-section-header h2,
.how-v2-cta h2,
.how-v2-section-header-compact h2,
.how-v2-step-content h3,
.pricing-v2-hero-kicker,
.pricing-v2-hero-title,
.pricing-v2-section-header h2,
.pricing-v2-cta h2,
.pricing-v2-plan h3,
.pricing-v2-addon-card h3,
.faq-question-new span,
.solution-visual-title,
.tracker-title {
  font-family: var(--font-title);
}
