/* ===========================================
   ALGORYSE - Main Stylesheet
   Premium Landing Page Styles
   =========================================== */

/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  color: var(--text-heading);
}

h1 {
  font-size: var(--text-5xl);
  letter-spacing: var(--tracking-tight);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

p {
  color: var(--text-secondary);
}

/* ===== UTILITY CLASSES ===== */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.text-gold {
  color: var(--gold-primary);
}

.text-silver {
  color: var(--silver-primary);
}

.gold-shimmer {
  background: var(--gold-shimmer);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: all var(--transition-normal) var(--easing-smooth);
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}

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

.btn-secondary:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

/* ===== PLATFORM SWITCHER ===== */
.platform-switcher-container {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-8);
}

.platform-switcher {
  display: flex;
  align-items: center;
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-full);
  padding: var(--space-1);
  gap: var(--space-1);
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.platform-btn:hover {
  color: var(--text-primary);
}

.platform-btn.active {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold);
}

.platform-btn .platform-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.platform-btn.active .platform-icon {
  stroke: var(--bg-primary);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--gold-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wide);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-switcher:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  border-color: var(--gold-primary);
}

.lang-switcher svg {
  opacity: 0.8;
}

.lang-switcher:hover svg {
  opacity: 1;
}

.lang-current {
  min-width: 24px;
  text-align: center;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-5) 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-4) 0;
  box-shadow: var(--shadow-lg);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-heading);
  letter-spacing: var(--tracking-wide);
}

.nav-logo span {
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--gold-primary);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--gold-primary);
}

.nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  min-width: 160px;
  z-index: 100;
}

.nav-dropdown-menu-inner {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color-light);
  border-radius: 8px;
  padding: var(--space-2) 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-cta {
  margin-left: var(--space-3);
}

/* TRADERWERK Community Banner */
.tw-banner {
  background: #0A0A0A;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: var(--space-3) 0;
  margin-top: 70px;
}

.tw-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.tw-banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.tw-banner a:hover {
  opacity: 0.85;
}

.tw-banner-logo {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  color: #fff;
  letter-spacing: 0.05em;
}

.tw-banner-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: var(--font-normal);
}

.tw-banner-cta {
  font-size: var(--text-sm);
  color: var(--gold-primary);
  margin-left: var(--space-4);
}

.tw-banner-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

.tw-banner-beta {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 2px 10px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.tw-banner-beta:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  color: #22c55e;
}

/* Hero offset when banner is present */
.tw-banner + .starter-hero,
.tw-banner + .vk-hero {
  padding-top: var(--space-16);
}

.tw-banner + .hero {
  margin-top: 0;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-12) var(--space-6);
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-subtitle {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-full);
}

.hero h1 {
  font-size: clamp(var(--text-4xl), 8vw, var(--text-7xl));
  margin-bottom: var(--space-6);
}

/* Hero Video */
.hero-video {
  width: 100%;
  max-width: 800px;
  margin: var(--space-10) auto;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.hero-video .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--bg-card);
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video .video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../assets/images/algorysethumb.jpg') center/cover no-repeat;
}

.hero-video .video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.hero-video .play-button {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: 50%;
  color: var(--bg-primary);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-gold-lg);
  border: none;
  cursor: pointer;
}

.hero-video .play-button:hover {
  transform: scale(1.1);
}

.hero-video .play-button svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.hero-description {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-10);
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.scroll-indicator:hover {
  color: var(--gold-primary);
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold-primary), transparent);
}

/* ===== TRUST HEADLINE ===== */
.trust-headline {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color-light);
  border-bottom: 1px solid var(--border-color-light);
  padding: var(--space-10) 0;
}

.trust-slogan {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-medium);
  color: var(--text-primary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: var(--space-24) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--text-lg);
}

/* ===== PRODUCTS SECTION ===== */
.products {
  background: var(--bg-primary);
}

/* ===== PRODUCTS QUICK NAVIGATION ===== */
.products-nav {
  margin-bottom: var(--space-12);
}

.products-nav-inner {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.products-nav-inner[hidden] {
  display: none;
}

.products-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-fast);
  text-decoration: none;
  min-width: 140px;
}

.products-nav-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.products-nav-item.active {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

.nav-item-name {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-heading);
}

.nav-item-return {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: #22c55e;
}

/* ===== ALGO CARD - UNIFIED CARD DESIGN ===== */
.products-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.algo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-xl);
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto auto;
  gap: var(--space-4) var(--space-6);
  transition: all var(--transition-normal) var(--easing-smooth);
  position: relative;
  overflow: hidden;
}

.algo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
}

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

/* Algo Card Header - Full width, top */
.algo-card-header {
  grid-column: 1 / -1;
  grid-row: 1;
  text-align: left;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.algo-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  border-radius: var(--border-radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--gold-primary);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.algo-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--gold-primary);
  margin-bottom: var(--space-1);
}

.algo-tagline {
  font-size: var(--text-sm);
  color: var(--silver-primary);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* Algo Chart - Full width, larger for desktop */
.algo-chart-container {
  grid-column: 1 / -1;
  grid-row: 2;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: var(--space-4);
  min-height: 220px;
  max-height: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.algo-chart-container canvas {
  flex: 1;
}

/* Algo Metrics - Full width, row 3 */
.algo-metrics {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border-color-light);
  border-bottom: 1px solid var(--border-color-light);
  flex-wrap: wrap;
}

.algo-metric {
  text-align: left;
}

.algo-metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--text-heading);
}

.algo-metric-value.text-success {
  color: #22c55e;
}

.algo-metric-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-top: 2px;
}

/* Algo Content Area - Description and Features */
.algo-content {
  grid-column: 1 / -1;
  grid-row: 4;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Algo Description */
.algo-description {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
}

/* Algo Features */
.algo-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.algo-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.algo-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Algo Footer - Full width, row 5 */
.algo-footer {
  grid-column: 1 / -1;
  grid-row: 5;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-color-light);
}

.algo-price {
  text-align: left;
}

.algo-price .price-amount {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-heading);
}

.algo-price .price-period {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.algo-actions {
  display: flex;
  gap: var(--space-2);
}

.algo-actions .btn {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.algo-actions .btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Promo Note for Special Offers */
.algo-promo-note {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  margin-top: var(--space-3);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
}

.promo-badge {
  background: var(--gold-primary);
  color: var(--bg-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  flex: 1;
}

.btn-sm {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-xs);
}

/* Backtest Report Link */
.btn-report {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--silver-primary);
  background: transparent;
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-report:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

/* Algo Backtest Link (in metrics row) */
.algo-backtest-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: var(--space-1);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.algo-backtest-link:hover {
  background: rgba(212, 175, 55, 0.1);
}

.algo-backtest-link .algo-metric-value {
  color: var(--gold-primary);
}

.algo-backtest-link:hover .algo-metric-value {
  color: var(--gold-light);
}

/* Algo Card Disclaimer (clickable) */
.algo-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.algo-disclaimer:hover {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

/* ===== RISK MODAL ===== */
.risk-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.risk-modal[hidden] {
  display: none;
}

.risk-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.risk-modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-xl);
  padding: var(--space-8);
  max-width: 500px;
  width: 100%;
  animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.risk-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: var(--space-1);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.risk-modal-close:hover {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

.risk-modal-content h3 {
  color: var(--gold-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
  padding-right: var(--space-8);
}

.risk-modal-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.risk-modal-content li {
  position: relative;
  padding: var(--space-3) 0 var(--space-3) var(--space-5);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  border-bottom: 1px solid var(--border-color-light);
}

.risk-modal-content li:last-child {
  border-bottom: none;
}

.risk-modal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.risk-modal-content li strong {
  color: var(--gold-primary);
}

/* ===== DISCLAIMER SECTION ===== */
.disclaimer-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--space-16) 0;
}

.disclaimer-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-8);
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-xl);
}

.disclaimer-icon {
  margin-bottom: var(--space-4);
  color: var(--gold-primary);
}

.disclaimer-box h3 {
  color: var(--gold-primary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.disclaimer-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  font-weight: var(--font-medium);
}

.disclaimer-list {
  text-align: left;
  max-width: 650px;
  margin: 0 auto;
}

.disclaimer-list li {
  position: relative;
  padding: var(--space-3) 0 var(--space-3) var(--space-6);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  border-bottom: 1px solid var(--border-color-light);
}

.disclaimer-list li:last-child {
  border-bottom: none;
}

.disclaimer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.disclaimer-list li strong {
  color: var(--gold-primary);
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--bg-secondary);
  padding: var(--space-24) 0;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--bg-card);
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
}

.play-button {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: 50%;
  color: var(--bg-primary);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-gold-lg);
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.video-placeholder p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ===== FEATURES SECTION ===== */
.features {
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.feature-item {
  text-align: center;
  padding: var(--space-8);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  color: var(--gold-primary);
  transition: all var(--transition-normal);
}

.feature-item:hover .feature-icon {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-item h4 {
  margin-bottom: var(--space-3);
}

.feature-item p {
  font-size: var(--text-sm);
}

/* Feature Item Link (clickable) */
.feature-item-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.feature-item-link:hover {
  transform: translateY(-4px);
}

.feature-item-link h4,
.feature-item-link p {
  color: inherit;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: var(--space-24) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-section h2 {
  margin-bottom: var(--space-4);
}

.cta-section p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--border-color-light);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-heading);
  margin-bottom: var(--space-4);
}

.footer-logo span {
  color: var(--gold-primary);
}

.footer-brand p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  border-color: var(--gold-primary);
}

/* Footer About Link */
.footer-about-link {
  display: inline-block;
  color: var(--primary-gold);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  transition: all var(--transition-fast);
  margin-top: var(--space-4);
}

.footer-about-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-column h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-5);
}

.footer-column ul li {
  margin-bottom: var(--space-3);
}

.footer-column a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-style: normal;
  padding: 0;
  background: none;
}

.footer-column a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.risk-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-muted);
  max-width: 600px;
  text-align: right;
}

/* ===== RESPONSIVE DESIGN ===== */

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

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

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  /* Platform Switcher Mobile */
  .platform-switcher {
    order: 3;
    margin-top: var(--space-4);
    width: 100%;
    justify-content: center;
  }

  .navbar .container {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-secondary);
    padding: var(--space-6);
    gap: var(--space-4);
    border-bottom: 1px solid var(--border-color-light);
  }

  .nav-links.active {
    display: flex;
  }

  /* Nav Dropdown Mobile */
  .nav-dropdown-toggle svg {
    display: none;
  }

  .nav-dropdown-menu {
    display: block;
    position: static;
    transform: none;
    padding-top: 0;
    min-width: auto;
  }

  .nav-dropdown-menu-inner {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    padding-left: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-3);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* TRADERWERK Banner Mobile */
  .tw-banner {
    margin-top: 60px;
  }

  .tw-banner-cta {
    display: none;
  }

  .tw-banner-beta {
    font-size: 10px;
    padding: 2px 8px;
  }

  .hero {
    padding: var(--space-20) var(--space-4);
  }

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

  .trust-slogan {
    font-size: var(--text-lg);
    padding: 0 var(--space-4);
  }

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

  /* Products Navigation Mobile */
  .products-nav-inner {
    gap: var(--space-2);
  }

  .products-nav-item {
    min-width: auto;
    padding: var(--space-2) var(--space-3);
    flex: 1;
  }

  .nav-item-name {
    font-size: var(--text-xs);
  }

  .nav-item-return {
    font-size: var(--text-sm);
  }

  /* ===== ALGO CARDS MOBILE ===== */
  .products-grid {
    gap: var(--space-6);
  }

  .algo-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-5);
  }

  .algo-card::before {
    width: 100%;
    height: 3px;
    left: 0;
    top: 0;
  }

  .algo-card-header {
    grid-column: unset;
    grid-row: unset;
    text-align: center;
    flex-direction: column;
    gap: var(--space-2);
    order: 1;
  }

  .algo-chart-container {
    grid-column: unset;
    grid-row: unset;
    min-height: 180px;
    max-height: none;
    order: 2;
  }

  .algo-metrics {
    grid-column: unset;
    grid-row: unset;
    flex-wrap: wrap;
    justify-content: center;
    order: 3;
  }

  .algo-metric {
    text-align: center;
    min-width: 80px;
  }

  .algo-title {
    font-size: var(--text-xl);
  }

  .algo-metric-value {
    font-size: var(--text-lg);
  }

  .algo-content {
    order: 4;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
  }

  .algo-description {
    font-size: var(--text-sm);
    text-align: center;
  }

  .algo-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
  }

  .algo-features li {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-2);
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
  }

  .algo-footer {
    grid-column: unset;
    grid-row: unset;
    flex-direction: column;
    align-items: center;
    padding-top: var(--space-4);
    gap: var(--space-3);
    order: 5;
  }

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

  .algo-price .price-amount {
    font-size: var(--text-2xl);
  }

  .algo-actions {
    width: 100%;
    justify-content: center;
  }

  .algo-actions .btn {
    flex: 1;
  }

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

  .footer-brand {
    max-width: 100%;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

/* Small Mobile */
@media (max-width: 480px) {
  .section {
    padding: var(--space-16) 0;
  }

  .container {
    padding: 0 var(--space-4);
  }

  .product-card {
    padding: var(--space-6);
  }
}


/* ===========================================
   STARTER PAGE - Einsteiger Guide Styles
   =========================================== */

/* ===== STARTER HERO ===== */
.starter-hero {
  padding: calc(80px + var(--space-16)) 0 var(--space-16);
  background: var(--bg-primary);
  text-align: center;
}

.starter-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
}

.starter-hero-description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

/* ===== STARTER INTRO (CFD) ===== */
.starter-intro {
  padding: var(--space-12) 0;
}

.intro-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-xl);
  padding: var(--space-8);
  max-width: 800px;
  margin: 0 auto;
}

.intro-card h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--gold-primary);
  margin-bottom: var(--space-4);
}

.intro-card p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.intro-card p:last-child {
  margin-bottom: 0;
}

/* ===== 3-STEP OVERVIEW ===== */
.steps-overview {
  background: var(--bg-secondary);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-12);
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-xl);
  padding: var(--space-8);
  text-align: center;
  flex: 1;
  max-width: 280px;
  position: relative;
  transition: all var(--transition-normal);
}

.step-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  color: var(--gold-primary);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.step-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.step-connector {
  color: var(--gold-primary);
  opacity: 0.5;
  flex-shrink: 0;
}

.step-connector svg {
  width: 24px;
  height: 24px;
}

/* ===== GUIDE SECTIONS ===== */
.guide-section {
  border-bottom: 1px solid var(--border-color-light);
}

.guide-section-alt {
  background: var(--bg-secondary);
}

.guide-header {
  margin-bottom: var(--space-10);
}

.guide-step-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-3);
}

.guide-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-primary);
}

.guide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.guide-text h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--gold-primary);
  margin-bottom: var(--space-3);
  margin-top: var(--space-6);
}

.guide-text h3:first-child {
  margin-top: 0;
}

.guide-text p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* Guide Checklist */
.guide-checklist {
  list-style: none;
  margin-top: var(--space-4);
}

.guide-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  color: var(--text-secondary);
}

.guide-checklist li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Guide CTA */
.guide-cta {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.guide-cta-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: italic;
}

/* Guide Steps Box */
.guide-steps-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-xl);
  padding: var(--space-8);
}

.guide-steps-box h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-color-light);
}

.numbered-steps {
  counter-reset: step-counter;
  list-style: none;
}

.numbered-steps li {
  counter-increment: step-counter;
  position: relative;
  padding-left: var(--space-10);
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-color-light);
  color: var(--text-secondary);
}

.numbered-steps li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.numbered-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-detail {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.step-detail code {
  background: var(--bg-secondary);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--border-radius);
  font-family: monospace;
  font-size: var(--text-xs);
}

/* ===== VPS BENEFITS ===== */
.vps-benefits {
  margin-top: var(--space-6);
}

.benefit-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-color-light);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--gold-primary);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-content strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.benefit-content p {
  font-size: var(--text-sm);
  margin: 0;
}

/* ===== CHANCES & RISKS ===== */
.chances-risks-section {
  background: var(--bg-secondary);
}

.chances-risks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.chances-card,
.risks-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-xl);
  padding: var(--space-8);
}

.chances-card {
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.risks-card {
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.chances-card h3,
.risks-card h3 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-color-light);
}

.chances-card h3 {
  color: #22c55e;
}

.risks-card h3 {
  color: #ef4444;
}

.chances-card ul,
.risks-card ul {
  list-style: none;
}

.chances-card li,
.risks-card li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-color-light);
}

.chances-card li:last-child,
.risks-card li:last-child {
  border-bottom: none;
}

.chances-card li strong,
.risks-card li strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.chances-card li p,
.risks-card li p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
}

.risk-notice {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.risk-notice p {
  color: var(--text-secondary);
  margin: 0;
}

.risk-notice strong {
  color: #ef4444;
}

/* ===== SETUP SERVICE ===== */
.setup-service-section {
  background: var(--bg-primary);
}

.setup-service-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-12);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-xl);
  padding: var(--space-12);
}

.service-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-4);
}

.setup-service-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.service-tagline {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.service-includes {
  list-style: none;
  margin-bottom: var(--space-8);
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  color: var(--text-secondary);
}

.service-includes li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.service-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.service-price {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.setup-service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-large {
  width: 150px;
  height: 150px;
  color: var(--gold-primary);
  opacity: 0.3;
}

.service-icon-large svg {
  width: 100%;
  height: 100%;
}

/* ===== STARTER PAGE RESPONSIVE ===== */
@media (max-width: 992px) {
  .steps-grid {
    flex-wrap: wrap;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    flex: 1 1 calc(33.333% - var(--space-4));
    min-width: 200px;
  }

  .guide-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .chances-risks-grid {
    grid-template-columns: 1fr;
  }

  .setup-service-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-includes li {
    justify-content: center;
  }

  .service-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .setup-service-visual {
    order: -1;
  }

  .service-icon-large {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .step-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .guide-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .guide-cta .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .starter-hero {
    padding: calc(80px + var(--space-12)) 0 var(--space-12);
  }

  .intro-card {
    padding: var(--space-6);
  }

  .step-card {
    padding: var(--space-6);
  }

  .guide-steps-box {
    padding: var(--space-6);
  }

  .chances-card,
  .risks-card {
    padding: var(--space-6);
  }

  .setup-service-card {
    padding: var(--space-6);
  }

  .vps-pricing-box {
    flex-direction: column;
  }
}

/* ===== VPS PRICING BOX ===== */
.vps-pricing-box {
  display: flex;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.vps-pricing-item {
  flex: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  position: relative;
}

.vps-pricing-item.vps-pricing-featured {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.vps-pricing-badge {
  position: absolute;
  top: -10px;
  right: var(--space-4);
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--border-radius);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vps-pricing-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.vps-pricing-price {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
}

.vps-pricing-price small {
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  color: var(--text-muted);
}

.vps-pricing-note {
  font-size: var(--text-xs);
  color: var(--gold-primary);
}

/* ===========================================
   LEGAL PAGES (Datenschutz, AGB, Impressum)
   =========================================== */

.legal-hero {
  padding: calc(80px + var(--space-16)) 0 var(--space-12);
}

.legal-content {
  padding: var(--space-12) 0 var(--space-20);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border-color-light);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--gold-primary);
  margin-bottom: var(--space-6);
}

.legal-section h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-heading);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal-section p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
}

.legal-section ul li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.legal-section ul li strong {
  color: var(--text-primary);
}

.legal-section a {
  color: var(--gold-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.legal-section a:hover {
  color: var(--gold-light);
}

.legal-address {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius);
  padding: var(--space-5);
  margin: var(--space-4) 0;
}

.legal-address p {
  margin-bottom: var(--space-2);
}

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

.legal-contact-highlight {
  font-size: var(--text-lg);
  text-align: center;
  padding: var(--space-6);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.legal-contact-highlight a {
  color: var(--gold-primary);
  font-weight: var(--font-semibold);
}

/* Legal Pages Mobile */
@media (max-width: 768px) {
  .legal-hero {
    padding: calc(80px + var(--space-10)) 0 var(--space-8);
  }

  .legal-section h2 {
    font-size: var(--text-xl);
  }

  .legal-section h3 {
    font-size: var(--text-base);
  }
}

/* Impressum Info Grid */
.legal-info-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.legal-info-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4);
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--gold-primary);
}

.legal-info-label {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.legal-info-value {
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
}

.legal-notice-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--space-5);
  margin-top: var(--space-6);
}

.legal-notice-box p {
  margin-bottom: var(--space-3);
}

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

/* ===== Results Page ===== */

.results-hero {
  padding: calc(80px + var(--space-16)) 0 var(--space-12);
  background: var(--bg-primary);
  text-align: center;
}

.results-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.results-hero p {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

.results-main {
  padding: var(--space-8) 0 var(--space-16);
  background: var(--bg-primary);
}

.results-section {
  margin-bottom: var(--space-16);
  scroll-margin-top: 100px;
}

.results-header {
  margin-bottom: var(--space-6);
}

.results-title-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.results-title-row h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  margin: 0;
}

.results-asset {
  color: var(--gold-primary);
  font-weight: 400;
  font-size: 0.7em;
}

.results-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.results-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.results-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-secondary);
  opacity: 0.5;
}

.results-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: var(--space-3);
  max-width: 800px;
}

.results-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.results-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: var(--space-5);
}

.results-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

/* Settings Card */
.results-settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-6);
}

.results-setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-1) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.results-setting-key {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.results-setting-val {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.85rem;
}

/* Metrics Card */
.results-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

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

.results-metric-label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}

.results-metric-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.results-metric-value.pnl-pos { color: #4ade80; }
.results-metric-value.pnl-neg { color: #f87171; }

/* Chart Card */
.results-chart-card {
  margin-top: var(--space-4);
}

.results-chart-wrap {
  height: 280px;
  position: relative;
}

/* Alternatives Table */
.results-alt-card {
  margin-top: var(--space-4);
}

.results-alt-table-wrap {
  overflow-x: auto;
}

.results-alt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.results-alt-table th {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: right;
}

.results-alt-table th:first-child {
  text-align: left;
}

.results-alt-table td {
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  text-align: right;
}

.results-alt-table td:first-child {
  text-align: left;
}

.results-alt-params {
  color: var(--text-secondary);
  font-size: 0.78rem;
}

.alt-note {
  color: var(--gold);
  font-style: italic;
  opacity: 0.85;
}

.results-alt-table .pnl-pos { color: #4ade80; }
.results-alt-table tr.alt-highlight { background: rgba(212, 175, 55, 0.10); }
.results-alt-table tr.alt-highlight td { font-weight: 600; color: #D4AF37; }
.results-alt-table tr.alt-highlight .alt-note { color: #D4AF37; opacity: 0.8; }

/* Responsive */
@media (max-width: 768px) {
  .results-body {
    grid-template-columns: 1fr;
  }

  .results-settings-grid {
    grid-template-columns: 1fr;
  }

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

  .results-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .results-meta {
    flex-wrap: wrap;
  }
}
