/* KlangRein — bold-ocean-756.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #ffffff;
  --color-dark: #1a1a1a;
  --color-green: #CCE1D6;
  --color-peach: #FCE2CF;
  --color-blue: #CEE6ED;
  --color-pink: #F2D1E1;
  --color-cream: #FFF3D8;
  --color-lightblue: #E2F5FA;
  --font-main: Georgia, 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  background: var(--color-bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── UTILS ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad { padding: 64px 0; }
.section-pad-sm { padding: 40px 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-main); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; line-height: 1.7; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-dark {
  background: var(--color-dark);
  color: #fff;
  border: 2px solid var(--color-dark);
}
.btn-dark:hover { background: #333; border-color: #333; }
.btn-outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}
.btn-outline:hover { background: var(--color-dark); color: #fff; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--color-dark); }

/* ── HEADER ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: #fff;
  z-index: 100;
  border-bottom: 1px solid #e8e8e8;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo svg { height: 38px; width: auto; }

/* ── NAV ────────────────────────────────────────────── */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.15s;
  color: var(--color-dark);
  text-decoration: none;
}
.main-nav a:hover { background: #f0f0f0; text-decoration: none; }
.main-nav a.active { background: var(--color-green); }
.nav-cta {
  margin-left: 10px;
  padding: 8px 20px !important;
  background: var(--color-dark) !important;
  color: #fff !important;
  border-radius: 4px;
}
.nav-cta:hover { background: #333 !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--color-dark); transition: all 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 20px 20px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 14px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  color: var(--color-dark);
  text-decoration: none;
}
.mobile-nav a:hover { background: #f5f5f5; }

.header-spacer { height: var(--header-height); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 20px;
}
.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero .lead { color: rgba(255,255,255,0.88); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── ICON GRID ───────────────────────────────────────── */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--color-dark);
  gap: 14px;
  transition: transform 0.2s;
}
.icon-card:hover { transform: translateY(-3px); text-decoration: none; }
.icon-card-bg {
  width: 100%;
  padding: 44px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.icon-card-bg i { font-size: 3rem; color: var(--color-dark); }
.icon-card span { font-family: var(--font-main); font-size: 1.1rem; font-weight: 700; }

/* ── COLORED SECTIONS ────────────────────────────────── */
.colored-section { width: 100%; }
.colored-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 40px;
}
.colored-inner.narrow { max-width: 860px; }
.section-heading { text-align: center; margin-bottom: 36px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { font-size: 1.05rem; color: #444; max-width: 620px; margin: 0 auto; }

/* ── PRICING ─────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.pricing-card {
  background: #fff;
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.pricing-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}
.pricing-name { font-family: var(--font-main); font-size: 1.3rem; font-weight: 700; }
.pricing-price { font-size: 2rem; font-weight: 700; font-family: var(--font-main); }
.pricing-price small { font-size: 1rem; font-weight: 400; color: #666; }
.pricing-desc { font-size: 0.92rem; color: #555; line-height: 1.5; }
.pricing-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.pricing-list li { font-size: 0.9rem; display: flex; gap: 8px; align-items: flex-start; }
.pricing-list li i { color: #5a9472; font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.pricing-card .btn { margin-top: auto; padding-top: 16px; }
.pricing-card .btn a { display: block; width: 100%; text-align: center; }

/* ── TWO-COL LAYOUT ──────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.img-rounded { border-radius: 6px; width: 100%; height: 340px; object-fit: cover; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.testimonial-card {
  background: #fff;
  padding: 28px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars { color: #d4a800; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text { font-style: italic; line-height: 1.7; color: #333; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.82rem; color: #777; margin-top: 2px; }

/* ── FAQ ────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 36px auto 0; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  color: var(--color-dark);
  cursor: pointer;
}
.faq-question i { font-size: 0.8rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 18px; color: #444; line-height: 1.7; }
.faq-answer.open { display: block; }

/* ── CONTACT SECTION ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item i { font-size: 1.1rem; color: #5a9472; width: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: #888; margin-bottom: 4px; }
.contact-info-value { font-size: 0.97rem; }

/* ── FORM ────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color 0.15s;
  background: #fff;
  color: var(--color-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5a9472;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: #888; }
.form-submit { align-self: flex-start; }

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: var(--color-dark);
  color: #fff;
  text-align: center;
  padding: 56px 20px;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 1.05rem; }

/* ── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: #f2f2f0;
  padding: 56px 0 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-desc { font-size: 0.9rem; color: #555; line-height: 1.6; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.9rem; color: #555; text-decoration: none; }
.footer-col ul li a:hover { color: var(--color-dark); text-decoration: underline; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.footer-contact-item i { color: #5a9472; font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.88rem; color: #555; }

.footer-bar {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 20px;
  margin-top: 0;
}
.footer-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bar-copy { font-size: 0.82rem; }
.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a { color: rgba(255,255,255,0.65); font-size: 1rem; transition: color 0.15s; }
.footer-social a:hover { color: #fff; text-decoration: none; }

/* ── COOKIE BANNER ───────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 18px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner.hidden { display: none; }
.cookie-text { flex: 1; font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.5; min-width: 240px; }
.cookie-text a { color: #8ecfb0; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-sans);
}
.cookie-accept { background: #fff; color: #1a1a1a; border: 2px solid #fff; }
.cookie-accept:hover { background: #eee; border-color: #eee; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 2px solid rgba(255,255,255,0.3); }
.cookie-decline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--color-green);
  padding: 56px 20px;
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; color: #444; max-width: 600px; margin: 0 auto; }

/* ── CONTENT PAGE ────────────────────────────────────── */
.content-page { max-width: 820px; margin: 0 auto; padding: 56px 20px; }
.content-page h2 { margin: 36px 0 14px; font-size: 1.4rem; }
.content-page h3 { margin: 24px 0 10px; font-size: 1.1rem; }
.content-page p { margin-bottom: 16px; color: #333; }
.content-page ul { padding-left: 20px; margin-bottom: 16px; }
.content-page ul li { margin-bottom: 6px; list-style: disc; color: #333; }

/* ── ABOUT PAGE ──────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.team-card { text-align: center; }
.team-card img { width: 100%; height: 260px; object-fit: cover; border-radius: 6px; margin-bottom: 16px; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: #777; }

/* ── SUCCESS MESSAGE ─────────────────────────────────── */
.success-msg {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* ── STEPS ───────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 40px; height: 40px;
  background: var(--color-dark); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.step-body h4 { margin-bottom: 6px; }
.step-body p { color: #555; margin: 0; }

/* ── RESULTS NUMBERS ─────────────────────────────────── */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  margin-top: 36px;
  text-align: center;
}
.number-item {}
.number-big { font-family: var(--font-main); font-size: 2.8rem; font-weight: 700; line-height: 1; }
.number-label { font-size: 0.88rem; color: #555; margin-top: 6px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 460px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-bar-inner { flex-direction: column; text-align: center; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .colored-inner { padding: 36px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
