/** ===== 首页亮色主题样式 ===== */

/* 背景装饰 */
.bg-decoration {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 95, 227, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float-blob 20s ease-in-out infinite;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation: float-blob 25s ease-in-out infinite reverse;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-blob 30s ease-in-out infinite;
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(91, 95, 227, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 95, 227, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -50px) scale(1.1); }
  50% { transform: translate(-30px, 30px) scale(0.95); }
  75% { transform: translate(40px, 40px) scale(1.05); }
}

/* Hero区域 */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  padding: 120px var(--space-lg) var(--space-2xl);
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-right {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  margin-bottom: var(--space-lg);
}

.badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(91, 95, 227, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  border: 1px solid rgba(91, 95, 227, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91, 95, 227, 0.1); }
  50% { box-shadow: 0 0 20px 5px rgba(91, 95, 227, 0.15); }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.text-gradient-animated {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero-desc strong {
  color: var(--primary);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  border: none;
  box-shadow: var(--shadow-md), 0 0 20px rgba(91, 95, 227, 0.3);
  transition: all var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(91, 95, 227, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  transition: all var(--transition-normal);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(91, 95, 227, 0.05);
}

.hero-trust {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-trust strong {
  color: var(--primary);
  font-weight: 700;
}

/* Hero卡片堆叠 */
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.main-card {
  position: relative;
  z-index: 3;
}

.card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-color);
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-tertiary);
}

.card-dots span:first-child { background: #EF4444; }
.card-dots span:nth-child(2) { background: #F59E0B; }
.card-dots span:last-child { background: #10B981; }

.card-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.code-preview {
  padding: var(--space-lg);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.8;
  background: #0F172A;
  color: #E2E8F0;
}

.code-line {
  white-space: nowrap;
}

.code-line.indent {
  padding-left: 2rem;
}

.code-line .keyword { color: #C084FC; }
.code-line .string { color: #34D399; }
.code-line .variable { color: #60A5FA; }
.code-line .function { color: #FBBF24; }
.code-line .number { color: #F472B6; }

.code-line.highlight {
  background: rgba(91, 95, 227, 0.1);
  margin: 0 calc(-1 * var(--space-lg));
  padding: 0.5rem var(--space-lg);
}

.cursor {
  animation: blink 1s infinite;
  color: var(--primary);
  font-weight: bold;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.card-badge {
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  background: rgba(14, 165, 233, 0.05);
}

/* 浮动卡片 */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  animation: float-card 6s ease-in-out infinite;
  z-index: 2;
  min-width: 200px;
}

.card-gpt {
  top: -20px;
  right: -40px;
  animation-delay: 0s;
}

.card-claude {
  bottom: 60px;
  left: -60px;
  animation-delay: 2s;
}

.card-gemini {
  bottom: -30px;
  right: 20px;
  animation-delay: 4s;
}

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

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}

.float-content {
  flex: 1;
}

.float-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.float-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* 统计栏 */
.stats-bar {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-suffix {
  font-size: 1.2rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* 特性区域 V2 */
.features-v2 {
  padding: var(--space-2xl) 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.features-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
}

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

.feature-card-v2.feature-large {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(91, 95, 227, 0.03) 0%, var(--bg-card) 100%);
}

.feature-visual {
  position: relative;
  margin-bottom: var(--space-lg);
}

.feature-icon-large {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-glow);
}

.feature-particles {
  position: absolute;
  top: 0;
  right: 0;
}

.feature-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: float-particle 4s ease-in-out infinite;
}

.feature-particles span:nth-child(1) { top: 0; right: 40px; animation-delay: 0s; }
.feature-particles span:nth-child(2) { top: 20px; right: 10px; animation-delay: 1s; }
.feature-particles span:nth-child(3) { top: 50px; right: 30px; animation-delay: 2s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-10px); opacity: 0.6; }
}

.feature-card-v2 h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.feature-card-v2 p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(91, 95, 227, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.feature-metric {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-color);
}

.metric-bar {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.metric-fill {
  height: 100%;
  background: var(--gradient-main);
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

.feature-metric span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 模型展示 */
.models-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
}

.models-showcase-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.model-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-normal);
}

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

.model-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
}

.model-info {
  flex: 1;
}

.model-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.model-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.model-badge {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.model-badge.hot {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.model-badge.new {
  background: rgba(34, 197, 94, 0.1);
  color: #16A34A;
}

/* 价格区域 V2 */
.pricing-v2 {
  padding: var(--space-2xl) 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
}

.price-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.price-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-color);
}

.price-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.price-save-badge {
  padding: 0.35rem 0.85rem;
  background: rgba(34, 197, 94, 0.1);
  color: #16A34A;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.price-comparison {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.price-official,
.price-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-official .label,
.price-us .label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-official .value {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-us .value {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-us .value span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.price-arrow {
  display: flex;
  justify-content: center;
  color: var(--primary);
  animation: bounce-down 1.5s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.pricing-cta-v2 {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(91, 95, 227, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.bonus-badge strong {
  color: var(--primary);
  font-size: 1.3rem;
}

/* 快速开始 */
.quick-start {
  padding: var(--space-2xl) 0;
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
}

.quick-start-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.quick-start-text {
  padding-right: var(--space-xl);
}

.quick-start-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.quick-start-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.quick-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.quick-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
}

.quick-feature svg {
  color: #10B981;
  flex-shrink: 0;
}

/* 代码窗口 */
.code-window {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.window-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: #0F172A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.window-title {
  flex: 1;
  font-size: 0.85rem;
  color: #94A3B8;
  font-family: var(--font-mono);
}

.copy-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #94A3B8;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.copy-button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.window-body {
  background: #0F172A;
  padding: var(--space-lg);
  overflow-x: auto;
}

.window-body pre {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.8;
  color: #E2E8F0;
}

.window-body .line { display: block; }
.window-body .line.indent { padding-left: 2rem; }
.window-body .keyword { color: #C084FC; }
.window-body .string { color: #34D399; }
.window-body .variable { color: #60A5FA; }
.window-body .comment { color: #64748B; }
.window-body .function { color: #FBBF24; }
.window-body .number { color: #F472B6; }

/* 最终CTA */
.final-cta {
  padding: var(--space-2xl) 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.cta-box {
  background: var(--gradient-main);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -50px;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: white;
  position: relative;
  z-index: 1;
}

.cta-box > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: white;
  color: var(--primary);
  border: none;
  font-weight: 600;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Section通用 */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.badge-primary {
  background: rgba(91, 95, 227, 0.1);
  color: var(--primary);
}

.badge-accent {
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

/* 动画 */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* 响应式 */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px var(--space-md) var(--space-2xl);
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-card-stack {
    max-width: 100%;
    margin-top: var(--space-xl);
  }

  .feature-card-v2.feature-large {
    grid-column: span 1;
  }

  .quick-start-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .quick-start-text {
    padding-right: 0;
    text-align: center;
  }

  .quick-features {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-card-stack {
    display: none;
  }

  .float-card {
    display: none;
  }

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

  .stat-item {
    justify-content: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .price-cards {
    grid-template-columns: 1fr;
  }

  .models-showcase-v2 {
    grid-template-columns: 1fr;
  }

  .cta-box h2 {
    font-size: 1.8rem;
  }

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

  .cta-actions .btn-xl {
    width: 100%;
    max-width: 300px;
  }

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

  .hero-actions .btn-xl {
    width: 100%;
    max-width: 300px;
  }
}
