/* Import Premium Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Premium High-End Light Theme Palette with Indigo/Blue Accents */
  --bg-app: #fafaff;
  --bg-card: #ffffff;
  --bg-accent-light: rgba(99, 102, 241, 0.04);
  
  --color-primary: #0f172a;
  --color-secondary: #334155;
  --color-muted: #64748b;
  
  --accent-glow: linear-gradient(135deg, #6366f1, #3b82f6);
  --accent-glow-hover: linear-gradient(135deg, #4f46e5, #2563eb);
  --accent-solid: #6366f1;
  --accent-solid-hover: #4f46e5;
  
  --success: #10b981;
  --success-bg: #ecfdf5;
  
  --border-light: rgba(99, 102, 241, 0.08);
  --border-focus: rgba(99, 102, 241, 0.3);
  
  --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.02);
  --shadow-premium: 0 20px 40px -15px rgba(99, 102, 241, 0.15);
  --shadow-glow: 0 10px 25px -5px rgba(99, 102, 241, 0.25);
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & behavior */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-app);
  color: var(--color-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

/* Background Mesh Gradients (Ambient Glow) */
.ambient-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, rgba(59, 130, 246, 0.03) 50%, rgba(250, 250, 255, 0) 70%);
  pointer-events: none;
}

.ambient-glow-2 {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, rgba(99, 102, 241, 0.02) 50%, rgba(250, 250, 255, 0) 70%);
  pointer-events: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Premium Navigation Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Cool Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
}

.logo-symbol {
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.2);
  position: relative;
  overflow: hidden;
}

.logo-symbol::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shine 4s infinite linear;
}

@keyframes shine {
  0% { transform: translate(-50%, -50%) rotate(45deg); }
  100% { transform: translate(50%, 50%) rotate(45deg); }
}

.logo-text {
  background: linear-gradient(135deg, var(--color-primary), #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.15);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--success);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--success);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 968px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 4rem;
    padding-bottom: 3rem;
    gap: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(99, 102, 241, 0.06);
  color: var(--accent-solid);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border: 1px solid rgba(99, 102, 241, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 30%, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* Hero Visual / Image Area */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: var(--transition);
  border: 4px solid rgba(255, 255, 255, 0.8);
}

.hero-image-wrapper:hover .hero-image {
  transform: rotateY(0deg) rotateX(0deg) translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
}

/* Floating Stats Box over Image */
.floating-stats-box {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateZ(30px);
  transition: var(--transition);
}

@media (max-width: 968px) {
  .floating-stats-box {
    position: relative;
    left: 0;
    bottom: 0;
    transform: translateY(-40px);
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding: 1.25rem;
  }
  .hero-image-wrapper {
    max-width: 100%;
  }
  .hero-image {
    transform: none;
    box-shadow: var(--shadow-subtle);
  }
}

.hero-image-wrapper:hover .floating-stats-box {
  transform: translateZ(50px) translateY(-10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-solid);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-lbl {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 600;
  margin-top: 0.2rem;
}

.stat-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 0.4rem 1rem;
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }
}

.btn-primary {
  background: var(--accent-glow);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-glow-hover);
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(-1px);
}

/* Trust / GDPR Badge Row */
.trust-banner {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 4rem 2rem;
  margin-bottom: 6rem;
  box-shadow: var(--shadow-subtle);
}

@media (max-width: 768px) {
  .trust-banner {
    padding: 3rem 1.5rem;
    margin-bottom: 4rem;
  }
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 968px) {
  .trust-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.trust-icon {
  background: rgba(99, 102, 241, 0.06);
  color: var(--accent-solid);
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: var(--transition);
}

.trust-item:hover .trust-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(99, 102, 241, 0.1);
}

.trust-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.trust-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Activity Section */
.activity-section {
  max-width: 1200px;
  margin: 0 auto 8rem;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .activity-section {
    margin-bottom: 4rem;
    padding: 0 1rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .section-title {
    font-size: 1.8rem;
  }
}

.section-subtitle {
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.activity-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 850px;
  margin: 0 auto;
}

.activity-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.activity-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-premium);
  border-color: rgba(99, 102, 241, 0.15);
}

@media (max-width: 640px) {
  .activity-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
  }
}

.activity-main {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.activity-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  flex-shrink: 0;
}

.activity-details p {
  font-weight: 700;
  font-size: 1.05rem;
}

.activity-details span {
  font-size: 0.85rem;
  color: var(--color-muted);
  display: block;
  margin-top: 0.2rem;
}

.activity-right {
  text-align: right;
}

@media (max-width: 640px) {
  .activity-right {
    text-align: left;
    width: 100%;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.activity-reward {
  font-weight: 800;
  color: var(--success);
  font-size: 1.25rem;
}

.activity-time {
  font-size: 0.85rem;
  color: var(--color-muted);
  display: block;
  margin-top: 0.25rem;
}

@media (max-width: 640px) {
  .activity-time {
    margin-top: 0;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0b0f19, #111827);
  color: white;
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 5rem 1.5rem;
  }
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: white;
  font-size: 3.2rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
  .cta-section h2 {
    font-size: 2.2rem;
  }
}

.cta-section p {
  color: #94a3b8;
  font-size: 1.15rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 640px) {
  .cta-section p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

/* Footer */
footer {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  padding: 5rem 2rem 2.5rem;
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 1.5rem 2rem;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-company-desc {
  max-width: 340px;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-links-group {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .footer-links-group {
    gap: 2rem;
    flex-direction: column;
  }
}

.footer-links-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col ul li {
  margin-bottom: 0.85rem;
}

.footer-links-col ul li a {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.footer-links-col ul li a:hover {
  color: var(--accent-solid);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}



/* Entrance Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger animations for list cards */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }

/* Legal Layout Refinements */
.legal-container {
  max-width: 800px;
  margin: 5rem auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .legal-container {
    margin: 3rem auto;
    padding: 0 1.5rem;
  }
}

.legal-container h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .legal-container h1 {
    font-size: 2rem;
  }
  .nav-container {
    padding: 0.75rem 1rem;
  }
  .logo {
    gap: 0.4rem;
    font-size: 1.15rem;
  }
  .logo-symbol {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }
  .logo-symbol svg {
    width: 16px;
    height: 16px;
  }
  .live-indicator {
    padding: 0.25rem 0.65rem;
    font-size: 0.65rem;
    gap: 0.3rem;
  }
  .pulse-dot {
    width: 5px;
    height: 5px;
  }
}

.legal-container h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.legal-container p, .legal-container li {
  color: var(--color-secondary);
  font-size: 0.975rem;
  line-height: 1.7;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-solid);
  font-weight: 700;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.back-home:hover {
  color: var(--accent-solid-hover);
  transform: translateX(-3px);
}

/* Auffällige Telegram CTA-Button-Erweiterungen */
.cta-tg-link {
  background: linear-gradient(135deg, #0088cc, #00c6ff) !important;
  color: #ffffff !important;
  font-size: 1.15rem !important;
  padding: 1.25rem 2.75rem !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.6), 0 10px 25px -5px rgba(0, 136, 204, 0.4) !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
  animation: tg-pulse 2s infinite ease-in-out !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.cta-tg-link:hover {
  background: linear-gradient(135deg, #00c6ff, #0072ff) !important;
  transform: translateY(-5px) scale(1.06) !important;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.9), 0 15px 35px rgba(0, 114, 255, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
}

@keyframes tg-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.7), 0 10px 25px -5px rgba(0, 136, 204, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px 8px rgba(0, 198, 255, 0.9), 0 10px 25px -5px rgba(0, 136, 204, 0.4);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 198, 255, 0);
    transform: scale(1);
  }
}

/* Highlights Ribbon Section styling */
.highlights-ribbon {
  max-width: 1200px;
  margin: -1.5rem auto 4rem auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.highlights-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.highlights-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-glow);
}

.highlights-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -10px rgba(99, 102, 241, 0.2);
}

.highlights-header {
  margin-bottom: 2rem;
}

.highlights-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.08);
  color: var(--accent-solid);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.highlights-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-solid);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.highlights-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.highlights-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.highlights-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: rgba(250, 250, 255, 0.6);
  border: 1px dashed rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  font-size: 0.9rem;
  font-weight: bold;
}

.highlight-item-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}

.highlight-bullet {
  font-size: 1.5rem;
  color: rgba(99, 102, 241, 0.4);
  user-select: none;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}

@media (max-width: 768px) {
  .highlights-ribbon {
    margin-top: 0;
    margin-bottom: 3rem;
  }
  .highlights-wrapper {
    padding: 2.25rem 1.5rem;
  }
  .highlights-title {
    font-size: 1.5rem;
  }
  .highlights-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .highlights-grid {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  .highlight-bullet {
    display: none;
  }
  .highlight-item-text {
    font-size: 1.05rem;
    text-align: center;
  }
}
