/* === BASE === */
:root {
  --cream: #faf8f4;
  --warm-bg: #f5f0e8;
  --text: #3d3424;
  --text-light: #6b5e4d;
  --accent: #8b6f47;
  --accent-dark: #6d5635;
  --accent-light: #c4a97d;
  --gold: #b8963e;
  --border: #e0d5c4;
  --white: #ffffff;
  --error: #c44b3f;
  --success: #4a7c59;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-weight: normal;
  line-height: 1.3;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img { max-width: 100%; }

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

.container--wide {
  max-width: 960px;
}

/* === HEADER === */
.header {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo {
  font-size: 1.25rem;
  color: var(--accent-dark);
  letter-spacing: 0.02em;
}

.header__cta {
  font-size: 0.875rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 20px;
  border-radius: 6px;
  transition: all 0.2s;
}

.header__cta:hover {
  background: var(--accent);
  color: var(--white);
}

/* === HERO === */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero__cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-family: inherit;
  transition: background 0.2s;
}

.hero__cta:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.hero__note {
  margin-top: 14px;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* === SECTIONS === */
section {
  padding: 60px 0;
}

section:nth-child(even) {
  background: var(--warm-bg);
}

.section-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text);
}

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.step__number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* === EXAMPLES === */
.examples-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.examples-list li {
  padding: 16px 20px;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--accent-light);
  font-style: italic;
  color: var(--text-light);
}

/* === FOR WHO === */
.for-who-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.for-who-list li {
  padding-left: 28px;
  position: relative;
  color: var(--text);
}

.for-who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 50%;
}

/* === ABOUT === */
.about__text {
  font-size: 1.05rem;
  color: var(--text);
}

.about__text p {
  margin-bottom: 16px;
}

.about__signature {
  margin-top: 24px;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

/* === PRICING === */
.pricing {
  text-align: center;
}

.pricing__card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
}

.pricing__amount {
  font-size: 2.5rem;
  color: var(--accent-dark);
  margin: 16px 0 8px;
}

.pricing__desc {
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing__includes {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing__includes li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.pricing__includes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* === FORM === */
.form-section {
  padding: 60px 0 80px;
}

.form {
  max-width: 560px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--text);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #b8ad9e;
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__hint {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__error {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

.form__error.visible {
  display: block;
}

.form__global-error {
  background: #fef2f1;
  border: 1px solid var(--error);
  color: var(--error);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: none;
}

.form__global-error.visible {
  display: block;
}

.form__submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.form__submit:hover {
  background: var(--accent-dark);
}

.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form__privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
}

/* === FAQ === */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  padding: 0;
  line-height: 1.5;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  display: none;
  padding-top: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* === FOOTER === */
.footer {
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
}

.footer a {
  color: var(--text-light);
}

/* === BEDANKT === */
.bedankt {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.bedankt h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.bedankt p {
  color: var(--text-light);
  margin-bottom: 12px;
  max-width: 480px;
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 1.75rem; }
  .hero__subtitle { font-size: 1rem; }

  section { padding: 40px 0; }
  .section-title { font-size: 1.4rem; margin-bottom: 28px; }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pricing__card { padding: 28px 20px; }
  .pricing__amount { font-size: 2rem; }
}

/* === LOADING SPINNER === */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
