/*/* ================================================
   NEOdirect Design System v1.0
   March 2026
   ================================================
   
   Einbinden unter:
   HubSpot > Settings > Website > Pages > CSS & Stylesheets
   
   BRAND COLORS:
   - Navy (Primary):     #132f46
   - Teal (CTA):         #0e9aa7
   - Purple (Accent):    #805ad5
   - Light BG (Mint):    #edf7f5
   - Dark Text:          #1a202c
   - Body Text:          #4a5568
   - Border:             #e2e8f0
   - White:              #ffffff
   
   FONTS:
   - Headlines:  'DM Serif Display', Georgia, serif
   - Body:       'Inter', system-ui, sans-serif
   
   LAYOUT:
   - Max Width:       1100px
   - Border Radius:   12-16px (cards), 20px (hero)
   - Section Padding: 64px top/bottom
   ================================================ */

/* --- RESET & BASE --- */
.neo-page * {
  box-sizing: border-box;
}

.neo-page {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a202c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* --- LAYOUT --- */
.neo-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.neo-section {
  padding: 64px 0 48px;
}

.neo-section--mint {
  background: #edf7f5;
}

/* --- TYPOGRAPHY: HEADLINES --- */
.neo-h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #132f46;
  margin: 0 0 16px;
}

.neo-h1--white { color: #ffffff; }

.neo-h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #132f46;
  margin: 0 0 36px;
}

.neo-h2--white { color: #ffffff; }

.neo-h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #132f46;
  margin: 0 0 4px;
}

/* --- TYPOGRAPHY: BODY --- */
.neo-body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.65;
  margin: 0;
}

.neo-body--large { font-size: 18px; }
.neo-body--small { font-size: 13px; }
.neo-body--white { color: rgba(255, 255, 255, 0.8); }

/* --- SECTION LABELS --- */
.neo-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0e9aa7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

/* --- HERO CARD --- */
.neo-hero {
  background: linear-gradient(135deg, #132f46 0%, #1a3a55 50%, #0e2a3f 100%);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 16px;
}

/* --- CARDS --- */
.neo-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 32px;
}

/* --- CARD GRID --- */
.neo-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.neo-grid__item {
  flex: 1 1 0;
  min-width: 280px;
}

.neo-grid--3 .neo-grid__item {
  flex: 1 1 300px;
}

/* --- AVATAR --- */
.neo-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #edf7f5;
  display: block;
  margin: 0 auto 20px;
}

.neo-avatar--small {
  width: 96px;
  height: 96px;
  margin-bottom: 16px;
}

/* --- ROLE TEXT --- */
.neo-role {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0e9aa7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

/* --- BADGES --- */
.neo-badge {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.neo-badge--purple {
  background: #805ad5;
  color: #ffffff;
}

.neo-badge--teal {
  background: rgba(14, 154, 167, 0.18);
  border: 1px solid rgba(14, 154, 167, 0.35);
  color: #5fd4d8;
}

.neo-badge--ihk {
  background: rgba(128, 90, 213, 0.12);
  border: 1px solid rgba(128, 90, 213, 0.3);
  color: #805ad5;
}

/* --- BUTTONS --- */
.neo-btn {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: opacity 0.2s;
  cursor: pointer;
}

.neo-btn:hover {
  opacity: 0.9;
}

.neo-btn--teal {
  background: #0e9aa7;
  color: #ffffff;
  font-size: 16px;
  padding: 14px 36px;
}

.neo-btn--outline {
  background: transparent;
  border: 2px solid #e2e8f0;
  color: #132f46;
  font-size: 15px;
  padding: 12px 28px;
}

.neo-btn--outline:hover {
  border-color: #0e9aa7;
  color: #0e9aa7;
}

.neo-btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
}

/* --- TRUST STATS --- */
.neo-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.neo-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

/* --- CTA BANNER --- */
.neo-cta {
  background: linear-gradient(135deg, #132f46 0%, #1a3a55 50%, #0e2a3f 100%);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* --- PRICING CARDS --- */
.neo-pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}

.neo-pricing-card--featured {
  border: 2px solid #0e9aa7;
  box-shadow: 0 4px 24px rgba(14, 154, 167, 0.12);
}

.neo-price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  color: #132f46;
}

.neo-price__period {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4a5568;
}

/* --- FEATURE LIST --- */
.neo-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.neo-features li {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #4a5568;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- TOGGLE (Billing switch) --- */
.neo-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f1f5f9;
  border-radius: 100px;
  padding: 4px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
}

.neo-toggle__option {
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 500;
  color: #4a5568;
  transition: all 0.2s;
}

.neo-toggle__option--active {
  background: #ffffff;
  color: #132f46;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* --- STEPS / PROCESS --- */
.neo-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.neo-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #edf7f5;
  color: #0e9aa7;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- TESTIMONIALS --- */
.neo-testimonial {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
}

.neo-testimonial__stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 12px;
}

.neo-testimonial__text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}

.neo-testimonial__author {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #132f46;
}

/* --- FAQ ACCORDION --- */
.neo-faq {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}

.neo-faq__question {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #132f46;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
}

.neo-faq__answer {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.65;
  padding: 0 24px 20px;
  background: #ffffff;
}

/* --- LOGO BAR --- */
.neo-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.neo-logos img {
  height: 32px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.2s;
}

.neo-logos img:hover {
  filter: grayscale(0%);
}

/* --- FOOTER --- */
.neo-footer {
  background: #132f46;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  padding: 48px 0 32px;
}

.neo-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.neo-footer a:hover {
  color: #ffffff;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .neo-h1 { font-size: 32px; }
  .neo-h2 { font-size: 26px; }
  .neo-hero { padding: 40px 24px; border-radius: 16px; }
  .neo-card { padding: 28px 20px; }
  .neo-cta { padding: 40px 24px; }
  .neo-stats { gap: 16px; }
  .neo-grid__item { min-width: 100%; }
  .neo-grid--3 .neo-grid__item { flex: 1 1 100%; }
  .neo-logos { gap: 24px; }
  .neo-logos img { height: 24px; }
}

/* --- HUBSPOT OVERRIDES --- */
.neo-page h1, .neo-page h2, .neo-page h3 {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-weight: 400 !important;
}

.neo-page p, .neo-page ul, .neo-page li, .neo-page a {
  font-family: 'Inter', system-ui, sans-serif;
} @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/