@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,400;1,6..12,500&display=swap');

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #15458a;
  --primary-dark: #0e3268;
  --primary-light: #c8d8ed;
  --primary-bg: #e8eff8;
  --teal: #15458a;
  --teal-dark: #0e3268;
  --teal-light: #c8d8ed;
  --teal-bg: #e8eff8;
  --warm: #49686b;
  --warm-light: #fdedc0;
  --accent: #81c346;
  --accent-dark: #6aab32;
  --berry: #b92f6a;
  --berry-dark: #9a2558;
  --gold: #fbbf18;
  --blue: #0b79a5;
  --blue-dark: #096189;
  --dark: #1A1A2E;
  --gray: #555;
  --gray-light: #888;
  --white: #fefefe;
  --border: #E0E0E0;
  --shadow: 0 2px 16px rgba(21,69,138,0.08);
  --shadow-lg: 0 8px 32px rgba(21,69,138,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --max-w: 800px;
  --font: 'Nunito Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { font-family: var(--font); color: var(--dark); line-height: 1.7; font-size: 17px; background: linear-gradient(180deg, var(--warm-light) 0%, #fefefe 100%); background-attachment: fixed; }

h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }
h1 { font-size: 2.2rem; color: var(--teal); margin-bottom: 0.5em; }
h2 { font-size: 1.5rem; color: var(--teal); margin-top: 2.5rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.15rem; color: var(--teal); margin-top: 1.5rem; margin-bottom: 0.4rem; }
p { margin-bottom: 1rem; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
strong { font-weight: 600; }
img { max-width: 100%; }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.nav-logo {
  font-weight: 700; font-size: 1.4rem; color: var(--teal);
  display: flex; align-items: center; gap: 0.7rem;
  line-height: 1.3; white-space: nowrap;
}
.nav-logo svg, .nav-logo img { width: 52px; height: 52px; flex-shrink: 0; object-fit: contain; }

/* Burger toggle – always visible, positioned left */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
  gap: 5px; z-index: 101;
  position: absolute; left: 2rem; top: 50%; transform: translateY(-50%);
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px; background: var(--dark);
  border-radius: 2px; transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav links – always as dropdown */
.nav-links {
  position: fixed; top: 80px; left: 0; right: 0; background: var(--white);
  flex-direction: column; padding: 0.8rem 1rem; gap: 0.15rem;
  border-bottom: 1px solid var(--border);
  transform: translateY(-120%); opacity: 0; transition: all 0.3s;
  box-shadow: var(--shadow); display: flex;
}
.nav-links.open { transform: translateY(0); opacity: 1; }
.nav-links a {
  padding: 0.7rem 1rem; border-radius: 6px; font-size: 1rem;
  color: var(--gray); font-weight: 500; transition: all 0.2s;
  text-align: left;
}
.nav-links a:hover { color: var(--teal); background: var(--teal-bg); }
.nav-cta {
  background: none !important; color: var(--gray) !important;
  padding: 0.7rem 1rem !important; border-radius: 6px !important;
  font-weight: 500 !important; text-transform: none !important;
  letter-spacing: normal !important; font-size: 1rem !important;
  text-align: left !important; margin-top: 0;
}
.nav-cta:hover { background: var(--teal-bg) !important; color: var(--teal) !important; }
.nav-cta:hover { background: var(--accent-dark) !important; }

/* Mobile nav anpassungen */
@media (max-width: 600px) {
  .nav-inner {
    justify-content: flex-start;
    padding: 0.8rem 1rem 0.8rem 3.2rem;
  }
  .nav-toggle {
    left: 0.8rem;
  }
  .nav-logo {
    font-size: 1rem;
    white-space: normal;
    line-height: 1.2;
    gap: 0.5rem;
  }
  .nav-logo svg, .nav-logo img {
    width: 36px;
    height: 36px;
  }
  .nav-links {
    top: 70px;
  }
}

/* ═══ HERO ═══ */
.hero {
  min-height: auto; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(165deg, var(--teal-bg) 0%, #fefefe 50%, var(--warm-light) 100%);
  padding: 10rem 1.5rem 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -15%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(42,127,98,0.06) 0%, transparent 70%); border-radius: 50%;
}
.hero-content { max-width: var(--max-w); text-align: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.2rem; line-height: 1.2; }
.hero p { font-size: 1.15rem; color: var(--gray); max-width: 600px; margin: 0 auto 2rem; }
.hero-sm p { margin-bottom: 0; }
.hero-sm { min-height: auto; padding: 7rem 1.5rem 2rem; align-items: flex-end; }
.hero-sm h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-block; padding: 0.85rem 2.2rem; border-radius: 0;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.02em;
  transition: all 0.2s ease; cursor: pointer; border: none;
  font-family: var(--font); text-transform: uppercase;
}
.btn-primary {
  background: var(--accent); color: var(--white);
  border-bottom: 3px solid var(--accent-dark);
}
.btn-primary:hover {
  background: var(--accent-dark); color: var(--white);
  transform: translateY(-1px);
  border-bottom-color: #568f2a;
}
.btn-primary:active { transform: translateY(1px); border-bottom-width: 1px; }
.btn-outline {
  background: transparent; color: var(--teal);
  border: 2px solid var(--teal); border-bottom-width: 3px;
}
.btn-outline:hover { background: var(--teal-bg); transform: translateY(-1px); }

/* ═══ SECTIONS ═══ */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-alt { background: var(--white); }
.section-warm { background: rgba(11,121,165,0.04); }

.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--blue); margin-bottom: 0.5rem;
}

/* ═══ AUDIENCE TABS ═══ */
.audience-nav {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
  margin-bottom: 3rem; padding: 0 1rem;
}
.audience-tab {
  padding: 0.6rem 1.4rem; border-radius: 0; font-size: 0.92rem;
  font-weight: 600; cursor: pointer; border: 2px solid var(--border);
  background: var(--white); color: var(--gray); transition: all 0.2s;
  font-family: var(--font);
}
.audience-tab:hover { border-color: var(--teal); color: var(--teal); }
.audience-tab.active { background: var(--teal); color: var(--white); border-color: var(--teal); }
.audience-panel { display: none; animation: fadeIn 0.4s ease; }
.audience-panel.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ═══ FEATURE LIST ═══ */
.features { list-style: none; margin: 1.5rem 0; }
.features li {
  padding: 0.8rem 0 0.8rem 2.2rem; position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.features li:last-child { border-bottom: none; }
.features li::before {
  content: ''; position: absolute; left: 0; top: 1.15rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal); opacity: 0.6;
}

.check-list { list-style: none; margin: 1.5rem 0; }
.check-list li { padding: 0.5rem 0 0.5rem 2rem; position: relative; }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0.5rem;
  color: var(--accent); font-weight: 700; font-size: 1.1rem;
}

/* ═══ PILLAR CARDS (Accordion) ═══ */
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem 0; }
.pillar-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: box-shadow 0.2s;
}
.pillar-card:hover { box-shadow: var(--shadow-lg); }
.pillar-header {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.5rem; cursor: pointer; user-select: none;
  transition: background 0.2s;
}
.pillar-header:hover { background: rgba(0,0,0,0.015); }
.pillar-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,121,165,0.08); border-radius: 10px; color: var(--blue);
}
.pillar-title { flex: 1; min-width: 0; }
.pillar-title h3 { margin: 0 0 0.2rem; font-size: 1.05rem; }
.pillar-title p { margin: 0; font-size: 0.9rem; color: var(--gray); line-height: 1.5; }
.pillar-toggle {
  flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light); transition: transform 0.3s;
  margin-top: 0.3rem;
}
.pillar-card.open .pillar-toggle { transform: rotate(180deg); }
.pillar-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.pillar-card.open .pillar-body {
  max-height: 800px; padding: 0 1.5rem 1.5rem;
}
.pillar-evidence {
  font-size: 0.88rem; color: var(--gray); font-style: italic;
  padding: 0.8rem 1rem; background: rgba(11,121,165,0.06);
  border-radius: var(--radius-sm); margin-bottom: 0.8rem;
  line-height: 1.6; border-left: 3px solid var(--blue);
}
.pillar-body .check-list { margin-top: 0.5rem; }

/* ═══ FORMAT GRID ═══ */
.format-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem; margin: 1.5rem 0;
}
.format-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1rem; box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.format-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.format-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(11,121,165,0.08); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.6rem;
}
.format-card h4 {
  font-size: 0.95rem; color: var(--teal); margin: 0 0 0.3rem;
  font-weight: 700;
}
.format-card p { font-size: 0.88rem; color: var(--gray); margin: 0; line-height: 1.5; }

@media (max-width: 820px) {
  .pillar-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pillar-header { padding: 1rem; gap: 0.8rem; }
  .pillar-icon { width: 36px; height: 36px; }
  .pillar-icon svg { width: 22px; height: 22px; }
  .pillar-card.open .pillar-body { padding: 0 1rem 1rem; }
  .format-grid { grid-template-columns: 1fr; }
}

/* ═══ SCENARIO CARDS ═══ */
.scenarios { display: grid; gap: 1.2rem; margin: 1.5rem 0; }
.scenario {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  border-left: 4px solid var(--gold); box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.scenario:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.scenario-q {
  font-style: italic; color: var(--warm); font-size: 1.05rem;
  margin-bottom: 0.6rem; font-weight: 500;
}
.scenario-a { color: var(--teal); font-weight: 600; margin-bottom: 0; }
.section-alt .scenario { background: var(--white); }

/* ═══ PROCESS STEPS ═══ */
.steps { list-style: none; margin: 1.5rem 0; counter-reset: step; }
.steps li {
  padding: 1rem 0 1rem 3.5rem; position: relative;
  border-left: 2px solid var(--teal-light); margin-left: 1rem;
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: -14px; top: 0.9rem;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.steps li:last-child { border-left-color: transparent; }

/* ═══ CALLOUT ═══ */
.callout {
  background: var(--teal-bg); border: 1px solid var(--teal-light);
  border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0;
}
.callout-warn { background: var(--warm-light); border-color: rgba(251,191,24,0.4); }
.callout h3 { margin-top: 0; }

/* ═══ PROMISE CARDS (Warteliste) ═══ */
.promise-grid {
  display: grid; gap: 1rem; margin: 1.5rem 0;
}
.promise-card {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem 1.5rem 1.5rem 1.2rem;
  box-shadow: var(--shadow); border-left: 3px solid var(--blue);
}
.promise-card h3 { margin-top: 0; }
.promise-card p { margin-bottom: 0; font-size: 0.95rem; color: var(--gray); }
.promise-icon { margin-bottom: 0.3rem; color: var(--blue); }
.promise-icon svg { width: 32px; height: 32px; }

/* ═══ FORM ═══ */
.form-wrapper {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg); margin-top: 2.5rem;
}
.form-intro { color: var(--gray); }
.form-section { margin-top: 1.5rem; }
.form-section-title {
  background: var(--primary-bg); padding: 0.7rem 1rem; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-weight: 600; color: var(--teal); font-size: 0.95rem;
}
.form-section-subtitle { font-size: 0.85rem; color: var(--gray-light); font-weight: 400; font-style: italic; }
.form-group { padding: 1rem; border: 1px solid var(--border); border-top: none; }
.form-group:last-child { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.form-group label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--dark); }
.form-group .hint { font-size: 0.85rem; color: var(--gray-light); font-style: italic; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: var(--font);
  transition: border-color 0.2s; background: var(--white); color: var(--dark);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,121,165,0.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }

.privacy-box {
  background: var(--teal-bg); border: 1px solid var(--teal-light);
  border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0;
  font-size: 0.9rem; color: var(--gray);
}
.privacy-box strong { color: var(--teal); }
.form-submit { text-align: center; margin-top: 2rem; }

/* ═══ SOURCES BOX ═══ */
.sources-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sources-toggle {
  display: block;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--teal);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
  list-style: none;
}
.sources-toggle::-webkit-details-marker { display: none; }
.sources-toggle::before {
  content: '▸';
  display: inline-block;
  margin-right: 0.6rem;
  transition: transform 0.2s;
  font-size: 0.85rem;
}
details.sources-box[open] .sources-toggle::before {
  transform: rotate(90deg);
}
.sources-toggle:hover {
  background: var(--teal-bg);
}
.sources-content {
  padding: 0 1.5rem 1.5rem;
}
.sources-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sources-list li {
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.sources-list li:last-child {
  border-bottom: none;
}
.sources-list li em {
  color: var(--gray);
}
.sources-list li a {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  margin-left: 0.3rem;
}
.sources-list li a:hover {
  text-decoration: underline;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.7); padding: 3rem 1.5rem;
  text-align: center; font-size: 0.9rem;
}
.footer a { color: var(--teal-light); }
.footer-logo { color: var(--white); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-link-pro {
  display: inline-block; padding: 0.5rem 1.2rem; border: 1px solid var(--teal-light);
  border-radius: 8px; color: var(--teal-light) !important; font-weight: 500;
  transition: all 0.2s;
}
.footer-link-pro:hover { background: rgba(212,237,228,0.1); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 600px) {
  .hero { min-height: auto; padding-top: 5rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-sm { min-height: auto; padding: 5rem 1.2rem 1.5rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  .section { padding: 3rem 1.2rem; }
  .audience-tab { font-size: 0.82rem; padding: 0.5rem 1rem; }
  .scenario { padding: 1.2rem; }
  .form-wrapper { padding: 1.5rem 1rem; }
}

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ FOUNDER CARDS ═══ */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.founder-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.founder-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.founder-photo-wrap {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-light);
  background: var(--primary-bg);
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
/* Individuelle Foto-Positionierung: Zoom + verschieben */
.founder-photo[alt="Frieda Tanski"] {
  object-position: center top;
  transform: scale(1.4) translateY(10%) translateX(8%);
}
.founder-photo[alt="Kristina Müller"] {
  object-position: center top;
  transform: scale(1.4) translateY(10%) translateX(8%);
}
.founder-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.founder-role {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.founder-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}
@media (max-width: 820px) {
  .founder-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ═══ PACKAGE CARDS ═══ */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.package-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.package-body {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.package-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.package-header {
  text-align: center;
  padding: 1.5rem 0 1rem;
}
.package-header h3 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0;
}
.package-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  margin: 0.2rem 0 0;
}
.package-header-blue { background: var(--blue); }
.package-header-green { background: var(--accent); }
.package-header-berry { background: var(--berry); }
.package-price {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.2rem 0 0.3rem;
}
.package-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}
.package-discount {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-bottom: 1rem;
}
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.package-features li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.package-features li:last-child { border-bottom: none; }
.package-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.package-ideal {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.5;
  flex-grow: 1;
}
@media (max-width: 900px) {
  .package-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* ═══ PRICE TABLES ═══ */
.price-table {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 1rem 0 2rem;
}
.price-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 0;
}
.price-row-header {
  background: var(--primary);
}
.price-row-header .price-col {
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}
.price-col {
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.price-row-alt .price-col {
  background: var(--primary-bg);
}
@media (max-width: 700px) {
  .price-row { grid-template-columns: 1fr; }
  .price-row-header { display: none; }
  .price-col { padding: 0.5rem 1rem; }
  .price-col:first-child { padding-top: 0.8rem; background: rgba(11,121,165,0.04); font-weight: 600; }
  .price-col:last-child { padding-bottom: 0.8rem; border-bottom: 2px solid var(--border); }
}

/* ═══ AVAILABILITY ICONS ═══ */
.avail-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  vertical-align: middle;
  margin-right: 2px;
}
.avail-online { background: var(--blue); }
.avail-online::after { content: "O"; }
.avail-place { background: var(--accent); }
.avail-place::after { content: "V"; }
.avail-phone { background: var(--berry); }
.avail-phone::after { content: "T"; }
.avail-legend {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

/* ═══ COLLABORATION CARDS ═══ */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.collab-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--blue);
}
.collab-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.collab-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(11,121,165,0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.collab-card h3 {
  font-size: 1.1rem;
  color: var(--teal);
  margin: 0 0 0.6rem;
}
.collab-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  flex-grow: 1;
}
.collab-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue);
}
.collab-card:hover .collab-link {
  color: var(--teal);
}
@media (max-width: 820px) {
  .collab-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ═══════════ Cookie Consent Banner ═══════════ */
#cookie-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.45);
  display: flex; align-items: flex-end; justify-content: center;
  transition: opacity .3s ease;
}
#cookie-banner {
  background: #fff; max-width: 640px; width: 100%; margin: 1rem;
  border-radius: 16px; box-shadow: 0 -4px 24px rgba(0,0,0,.15);
  animation: cb-slide-up .4s ease;
}
@keyframes cb-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cb-content { padding: 1.5rem 1.8rem; }
.cb-content h3 {
  font-family: 'Nunito Sans', Arial, sans-serif;
  color: var(--dark, #264653); font-size: 1.15rem; margin: 0 0 .6rem;
}
.cb-content p {
  font-size: .92rem; line-height: 1.55; color: #555; margin: 0 0 .6rem;
}
.cb-details a {
  color: var(--teal, #2A9D8F); text-decoration: underline; font-size: .88rem;
}
.cb-toggle {
  display: flex; align-items: center; gap: .6rem;
  margin: 1rem 0; padding: .6rem .8rem;
  background: var(--teal-bg, #eaf7f5); border-radius: 8px;
}
.cb-label { font-size: .9rem; color: #333; }
.cb-switch { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.cb-switch input { opacity: 0; width: 0; height: 0; }
.cb-slider {
  position: absolute; inset: 0; cursor: pointer;
  background: #ccc; border-radius: 24px; transition: .3s;
}
.cb-slider::before {
  content: ''; position: absolute; width: 18px; height: 18px;
  left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: .3s;
}
.cb-switch input:checked + .cb-slider { background: var(--teal, #2A9D8F); }
.cb-switch input:checked + .cb-slider::before { transform: translateX(18px); }
.cb-buttons {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem;
}
.cb-btn {
  padding: .55rem 1.1rem; border-radius: 8px; font-size: .9rem;
  font-family: 'Nunito Sans', Arial, sans-serif; font-weight: 600;
  cursor: pointer; border: none; transition: background .2s, color .2s;
}
.cb-btn-primary {
  background: var(--teal, #2A9D8F); color: #fff;
}
.cb-btn-primary:hover { background: var(--dark, #264653); }
.cb-btn-secondary {
  background: var(--teal-bg, #eaf7f5); color: var(--teal, #2A9D8F);
  border: 1px solid var(--teal, #2A9D8F);
}
.cb-btn-secondary:hover { background: var(--teal, #2A9D8F); color: #fff; }
.cb-btn-ghost {
  background: transparent; color: #777;
  border: 1px solid #ddd;
}
.cb-btn-ghost:hover { background: #f5f5f5; color: #555; }
@media (max-width: 600px) {
  .cb-content { padding: 1.2rem; }
  .cb-buttons { flex-direction: column; }
  .cb-btn { width: 100%; text-align: center; }
}
