:root {
  --lime: #A8E000;
  --lime-dark: #7FA800;
  --orange: #FF5A1F;
  --orange-dark: #D93F0A;
  --ink: #17181A;
  --ink-soft: #5A5D63;
  --bg: #FFFFFF;
  --bg-alt: #F3F3EE;
  --border: #E4E4DD;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(23, 24, 26, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo { height: 50px; width: auto; display: block; }

nav { display: flex; align-items: center; gap: 28px; }

nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

nav a:hover { color: var(--lime-dark); }

.nav-cta {
  background: var(--lime);
  color: var(--ink) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.nav-cta:hover { background: var(--lime-dark); }

/* Hero */
.hero {
  padding: 32px 0 52px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 15% -10%, rgba(168,224,0,0.14), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(255,90,31,0.10), transparent 55%);
}
@media (max-width: 640px) { .hero { padding: 20px 0 36px; } }

.hero-bg-icon {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 480px;
  height: 480px;
  color: var(--ink);
  opacity: 0.11;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 900px) { .hero-bg-icon { width: 320px; height: 320px; right: -60px; } }

.hero-inner { max-width: 780px; position: relative; z-index: 1; }

.hero-nav { display: flex; flex-wrap: wrap; gap: 20px; margin: 0 0 20px; }
.hero-nav a { color: var(--ink-soft); text-decoration: none; font-weight: 700; font-size: 15px; }
.hero-nav a:hover { color: var(--lime-dark); }

.preise-currency-row { display: flex; justify-content: center; margin: 8px 0 32px; }
.currency-toggle-big {
  background: none; border: 1.5px solid var(--border); padding: 13px 29px;
  border-radius: 999px; cursor: pointer; font-size: 21px; font-weight: 600;
  color: var(--ink); transition: background 0.2s, border-color 0.2s;
}
.currency-toggle-big:hover { background: var(--bg-alt); border-color: var(--lime-dark); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 22px;
}

.hero h1 {
  font-size: clamp(30px, 4.8vw, 46px);
  line-height: 1.18;
  margin: 0 0 22px;
  font-weight: 800;
}

.hero h1 .h1-tail {
  display: block;
  font-size: 0.48em;
  font-weight: 500;
  letter-spacing: 0.005em;
  margin-top: 12px;
  color: #3A3D42;
}

.hero-sub {
  font-size: 18px;
  color: #3A3D42;
  max-width: 56ch;
  margin: 0 0 26px;
  font-family: 'Inter', sans-serif;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(168,224,0,0.28);
}

.btn-primary:hover { transform: translateY(-2px); background: var(--lime-dark); }

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--border);
}

.btn-ghost:hover { background: var(--bg-alt); }

/* Sections */
.section { padding: 24px 0; }
.section-alt { background: var(--bg-alt); }

.section h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  margin: 0 0 12px;
}

.section-sub {
  font-size: 16.5px;
  color: #3A3D42;
  max-width: 60ch;
  margin: 0 0 10px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.card h3 { font-size: 19px; margin: 0 0 10px; }
.card p { color: var(--ink-soft); font-size: 15px; margin: 0 0 14px; font-family: 'Inter', sans-serif; }

.card-link {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange-dark);
  text-decoration: none;
  margin-bottom: 12px;
}
.card-link:hover { text-decoration: underline; }

.badge {
  display: inline-block;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  background: var(--lime);
  padding: 3px 10px;
  border-radius: 999px;
}

.how { margin-top: 12px; }
.how summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-dark);
  list-style: none;
}
.how summary::-webkit-details-marker { display: none; }
.how summary::before { content: "+ "; }
.how[open] summary::before { content: "– "; }

.steps {
  margin: 14px 0 0;
  padding-left: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
}
.steps li { margin-bottom: 6px; }

.how-note {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 10px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card .btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 15px;
  margin-top: auto;
}

.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(255,90,31,0.18);
}

.ribbon {
  position: absolute;
  top: -14px;
  left: 26px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.price-card h3 { font-size: 18px; margin: 0 0 10px; }

.price { margin: 0 0 6px; }
.price .amount { font-size: 32px; font-weight: 400; font-family: 'Anton', sans-serif; }
.price .period { font-size: 14px; color: var(--ink-soft); margin-left: 4px; font-family: 'Inter', sans-serif; }

.setup { font-size: 13px; color: var(--ink-soft); margin: 0 0 14px; font-family: 'Inter', sans-serif; }
.price-desc { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 20px; font-family: 'Inter', sans-serif; }

.scarcity-note {
  text-align: left;
  margin: 34px 0 0;
  font-size: 14.5px;
  color: var(--orange-dark);
  font-weight: 600;
}

.guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 560px;
  margin: 28px auto 0;
  padding: 18px 22px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
}

.guarantee-icon { font-size: 24px; }
.guarantee-badge strong { display: block; margin-bottom: 4px; }
.guarantee-badge p { margin: 0; font-size: 14px; color: var(--ink-soft); font-family: 'Inter', sans-serif; }

.pricing-notes {
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 14px;
  color: var(--ink-soft);
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.pricing-notes p { margin: 0 0 8px; }

/* Vorteile */
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.vorteil h3 { font-size: 17px; margin: 0 0 8px; }
.vorteil p { color: var(--ink-soft); font-size: 14.5px; margin: 0; font-family: 'Inter', sans-serif; }

/* FAQ */
.faq-list { max-width: 760px; }

.faq-item {
  border-bottom: 2px solid var(--border);
  padding: 18px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "+ "; color: var(--orange); }
.faq-item[open] summary::before { content: "– "; }

.faq-item p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
}

/* Contact */
.kontakt-inner h2 { text-align: center; }

.kontakt-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 44px;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.field input, .field textarea, .field select {
  width: 100%; padding: 11px 14px; border: 2px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: 'Inter', sans-serif; color: var(--ink); background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--lime-dark);
}
.field textarea { resize: vertical; min-height: 80px; }

.contact-result { margin-top: 16px; padding: 14px; border-radius: 8px; font-size: 14px; display: none; font-family: 'Inter', sans-serif; }
.contact-result.ok { display: block; background: rgba(168,224,0,0.16); color: var(--lime-dark); }
.contact-result.err { display: block; background: rgba(255,90,31,0.12); color: var(--orange-dark); }

/* Footer */
.site-footer {
  border-top: 2px solid var(--border);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-logo { height: 36px; opacity: 0.85; }
.footer-inner p { font-size: 13px; color: var(--ink-soft); margin: 0; font-family: 'Inter', sans-serif; }

.footer-social { display: flex; gap: 16px; margin-top: 4px; }
.footer-social a { color: var(--ink-soft); }
.footer-social a:hover { color: var(--orange); }

/* Message mockups */
.mockup-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}

.phone-mockup {
  width: 260px;
  border-radius: 34px;
  background: #17181A;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(23,24,26,0.22);
  flex-shrink: 0;
}

.phone-screen {
  background: var(--bg-alt);
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.phone-header {
  background: var(--lime);
  color: var(--ink);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-header .avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--ink);
}

.phone-header .who { font-size: 12.5px; font-weight: 700; line-height: 1.3; font-family: 'Inter', sans-serif; }
.phone-header .status { font-size: 10.5px; opacity: 0.75; font-weight: 400; }

.phone-body { padding: 14px; flex: 1; font-family: 'Inter', sans-serif; }

.chat-date {
  text-align: center;
  font-size: 10px;
  color: var(--ink-soft);
  background: rgba(0,0,0,0.06);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  margin: 0 auto 12px;
}
.chat-date-wrap { text-align: center; }

.bubble {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 10px;
  max-width: 92%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.bubble.out {
  background: var(--lime);
  margin-left: auto;
}

.bubble b { color: var(--orange-dark); }
.bubble .time { display: block; text-align: right; font-size: 9.5px; color: var(--ink-soft); margin-top: 4px; }

.sms-header {
  background: var(--bg-alt);
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.sms-header .avatar { margin: 0 auto 6px; }
.sms-header .who { font-size: 12.5px; font-weight: 700; font-family: 'Inter', sans-serif; }
.sms-header .status { font-size: 10.5px; color: var(--ink-soft); }

.bubble.sms { background: var(--border); max-width: 88%; }
.bubble.sms.out { background: var(--lime); color: var(--ink); }
.bubble.sms.out .time { color: rgba(23,24,26,0.6); }

.chat-note {
  text-align: center;
  font-size: 10px;
  color: var(--ink-soft);
  margin: 0 auto 12px;
}

.email-mockup {
  width: 320px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.email-topbar {
  padding: 10px 14px;
  background: var(--bg-alt);
  display: flex;
  gap: 6px;
}
.email-topbar span {
  width: 9px; height: 9px; border-radius: 50%; display: inline-block;
}
.email-topbar span:nth-child(1) { background: var(--orange); }
.email-topbar span:nth-child(2) { background: #E8C87A; }
.email-topbar span:nth-child(3) { background: var(--lime); }

.email-body { padding: 20px; font-family: 'Inter', sans-serif; }
.email-body h4 { font-size: 15px; margin: 0 0 12px; font-family: 'Anton', sans-serif; font-weight: 400; text-transform: none; letter-spacing: 0; }

.email-from {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.email-from .avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--lime); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }
.email-from .meta { font-size: 12px; }
.email-from .meta strong { display: block; font-size: 12.5px; }
.email-from .meta span { color: var(--ink-soft); font-size: 11px; }

.email-body p { font-size: 12.5px; line-height: 1.6; color: var(--ink); margin: 0 0 12px; }
.email-stars { font-size: 18px; letter-spacing: 4px; margin: 0 0 16px; }
.email-cta-btn {
  display: inline-block;
  background: var(--lime);
  color: var(--ink); font-size: 12.5px; font-weight: 700;
  padding: 10px 18px; border-radius: 999px; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.email-footnote { font-size: 10.5px; color: var(--ink-soft); }
