
/*** T3SB identifier: t3sbsCSSassets_30680 */

/* t3sbs_assets_30680 */
:root {
  --primary: #0a84ff;
  --primary-dark: #0066cc;
  --secondary: #5e5ce6;
  --accent: #ff375f;
  --success: #34c759;
  --warning: #ff9f0a;
  --dark: #1c1c1e;
  --dark-lighter: #2c2c2e;
  --text: #ffffff;
  --text-secondary: #e5e5e7;
  --text-muted: #98989d;
  --border: #1a1c11;
    --border-2: #e3e3e9;
}
#c30645{
   position: absolute;
  left: 0;
  bottom: 0;
}
.custom-ul-2 li {
  padding-left: 28px !important;
}



/* All content above background */
section {
  position: relative;
  z-index: 1;
}

/* Stats Header */
.stats-header {
  background: transparent;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  background: linear-gradient(135deg, #020024 0%, #114f20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  font-family: 'JetBrains Mono', monospace;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    90deg,
    #020024 0%,
    #090979 35%,
    rgb(19, 128, 252) 100%
  );
  padding: 100px 0 80px;
  text-align: left;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>')
    no-repeat bottom;
  background-size: cover;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
  font-size: 3.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
 
  margin-bottom: 2.5rem;
}



/* Roadmap Visual */
.hero-visual {
  background: var(--dark);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 132, 255, 0.05) 0%,
    rgba(94, 92, 230, 0.05) 100%
  );
  pointer-events: none;
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.timeline-phase {
  background: var(--dark);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);

  position: relative;
}

.timeline-phase:hover {
  transform: translateX(10px);
  border-left-color: var(--secondary);
}

.phase-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.phase-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.phase-desc {
  font-size: 0.85rem;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(10, 132, 255, 0.3);
}

/* Section Styles */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}

.section-title .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 4rem;
  font-family: 'JetBrains Mono', monospace;
}

/* Checkup Components Grid */
.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.component-card {
  background: transparent;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.component-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.component-card:hover::before {
  transform: scaleX(1);
}

.component-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.component-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.component-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.component-card p {
  line-height: 1.6;
}

.component-list {
  list-style: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.component-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}

.component-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Benefits Section */
.benefits-section {
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: transparent;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.benefit-card p {
  line-height: 1.6;
}

/* Process Steps */
.process-section {
  background: linear-gradient( 90deg, #020024 0%, #090979 35%, rgb(19, 128, 252) 100% );
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  padding: 40px 30px;
  position: relative;
}



.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.process-step p {
  font-size: 0.95rem;
}

/* Target Audience */
.audience-section {
  background: transparent;
  border-top: 1px solid var(--border);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.audience-card {
  background: transparent;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;

}

.audience-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.audience-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.audience-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.audience-card p {
  line-height: 1.6;
}

/* Packages */
.packages-section {
  background: transparent;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.package-card {
  background: transparent;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  border-color: var(--primary);
}

.package-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.package-card.featured::before {
  content: "EMPFOHLEN";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}

.package-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.package-price {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-subtitle {
  margin-bottom: 30px;
  font-size: 0.9rem;
  font-family: 'JetBrains Mono', monospace;
}

.package-features {
  list-style: none;
  text-align: left;
  margin-bottom: 35px;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.package-features li:before {
  content: "✓ ";
  color: var(--success);
  font-weight: bold;
  margin-right: 8px;
}

/* DIGI Section */
.digi-section {
background: linear-gradient( 90deg, #000e00 0%, #002e00 35%, rgb(0, 140, 15) 100% );
  color: white;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
}


.digi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.digi-card {
  background: rgba(255,255,255,0.15);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.digi-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.digi-card ul {
  list-style: none;
  text-align: left;
}

.digi-card li {
  padding: 8px 0;
  font-size: 0.95rem;
}




/* Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-features {
    text-align: left;
  }

  .stats-grid {
    gap: 25px;
  }

  .process-step::after {
    display: none;
  }

  .package-card.featured {
    transform: none;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }
}

	

