/* =========================================
   REMOTE PAGE SPECIFIC STYLES
   ========================================= */
:root {
  --nav-top: 25px;
}

/* Hero Section (wie Hosting) */
.hero-remote {
  padding-top: 140px; /* Platz für Header */
  padding-bottom: 80px;
  background: #f8f8f8; /* Hellgrau wie Hosting */
}

.hero-remote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Mobile Anpassung für Hero */
@media (max-width: 900px) {
  .hero-remote-inner { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }
  .hero-copy { margin-bottom: 40px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  
  /* Bild auf Mobile etwas kleiner */
  .hero-media img {
    max-width: 100%;
    height: auto;
  }
}

/* Typografie im Hero */
.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #111;
}

.hero-sub--dark { 
  color: #333; 
  opacity: 0.9; 
  font-size: 1.1rem; 
  line-height: 1.6;
  max-width: 600px;
}

.hero-link--dark { 
  color: #333; 
  border-bottom-color: rgba(0,0,0,0.2); 
}
.hero-link--dark:hover { 
  border-bottom-color: #8120C1; 
  color: #8120C1; 
}

/* Trust Pills im Hero */
.hero-trust { 
  display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; 
}
.trust-pill { 
  display: flex; align-items: center; gap: 8px; 
  font-size: 0.9rem; font-weight: 700; 
  background: #fff; padding: 10px 18px; border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  color: #333;
}
.trust-pill i { color: #8120C1; font-size: 1.2rem; }

/* Bild im Hero */
.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Restliche Sections */
.section-white { background: #fff; padding: 80px 0; }

.how-it-works, .remote-guidelines {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.04);
  padding: 30px;
  margin-bottom: 40px;
}

.steps-list { list-style: none; padding: 0; display: grid; gap: 14px; }
.steps-list li { padding-left: 14px; border-left: 3px solid #8120C1; color: #333; line-height: 1.6; }

/* Download Grid */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}
.download-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
  transition: transform 0.2s;
}
.download-card:hover { transform: translateY(-4px); border-color: #8120C1; }

.download-icon {
  font-size: 2rem; color: #8120C1; background: rgba(129,32,193,0.1);
  width: 60px; height: 60px; border-radius: 16px; 
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.download-btn {
  display: inline-block;
  margin-top: 16px;
  background: #8120C1; color: #fff;
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700;
}

.manual-info {
  background: #f8f8f8; padding: 16px; border-radius: 12px; 
  text-align: center; font-size: 0.95rem; color: #555;
  border: 1px solid rgba(0,0,0,0.05);
}
.manual-info code { background: #eee; padding: 2px 6px; border-radius: 4px; font-weight: 700; }
.remote-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.remote-use-card {
  background: #f8f8f8;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 26px;
}
.remote-use-card i { color: #8120C1; font-size: 1.8rem; }
.remote-use-card h3 { margin: 12px 0 8px; }
.remote-use-card p { color: #555; line-height: 1.7; }
@media (max-width: 700px) { .remote-use-grid { grid-template-columns: 1fr; } }

.remote-badge {
  color: #8120C1;
  background: rgba(129,32,193,0.1);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.remote-section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.remote-muted-copy {
  color: #777;
  line-height: 1.6;
}

.remote-section-spaced {
  margin-top: 70px;
}

.remote-download-title {
  text-align: center;
  margin-top: 60px;
}

.remote-download-subtitle {
  text-align: center;
  color: #777;
}
