
/*** T3SB identifier: t3sbsCSSassets_30618 */

/* t3sbs_assets_30618 */
: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: #e3e3e9;
}
#c30626{
    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;
  color: var(--text-muted);
  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;
}

/* Chat Demo */
.hero-visual {
  background: var(--dark-lighter);
  margin: 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  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;
}

.chat-demo {
  position: relative;
  z-index: 1;
}

.chat-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 15px 20px;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chat-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.chat-status {
  font-size: 0.75rem;
  opacity: 0.9;
  font-family: "JetBrains Mono", monospace;
}

.chat-messages {
  background: var(--dark);
  padding: 20px;
  border-radius: 0 0 12px 12px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chat-message {
  display: flex;
  gap: 10px;
  animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message.user {
  flex-direction: row-reverse;
}

.message-bubble {
  background: var(--dark-lighter);
  padding: 12px 16px;
  border-radius: 12px;
  max-width: 75%;
  border: 1px solid var(--border);
}

.chat-message.user .message-bubble {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
}

.message-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

.message-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: "JetBrains Mono", monospace;
}

/* 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-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
  font-family: "JetBrains Mono", monospace;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #1a1c11;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.benefit-card p {
  line-height: 1.6;
}

/* Use Cases */
.usecases-section {
  border-top: 1px solid #1a1c11;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.usecase-card {
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #1a1c11;
  transition: all 0.3s ease;
}

.usecase-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.usecase-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.usecase-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.usecase-subtitle {
  font-size: 0.9rem;

  margin-bottom: 15px;
  font-family: "JetBrains Mono", monospace;
}

.usecase-features {
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

/* 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;
}

.step-number {
  height: 40px;
  width: 40px;
  margin: 0 auto 20px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.process-section h2 {
  color: white;
}
.process-step p {
  font-size: 0.95rem;
}

/* Packages */
.packages-section {
  background: transparent;
  border-top: 1px solid #1a1c11;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.package-card {
  background: transparent;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  border: 1px solid #114f20;
  transition: all 0.3s ease;
}
.package-card ul li {
  padding-left: 28px;
}
.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 #2b4ea0;
  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;
  color: var(--text);
}

.package-price {
  font-size: 2.2rem;
  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 {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.9rem;
  font-family: "JetBrains Mono", monospace;
}

/* DIGI Section */
.digi-section {
  /*background: linear-gradient(135deg, #114f20 0%, #009e26 100%);*/
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-section h2,
.digi-section p {
  color: white;
}

.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;
  }

  .message-bubble {
    max-width: 85%;
  }
}

	

