:root {
  --azure: #007FFF;
  --deep-sea: #003366;
  --orange: #FF6600;
  --grey-light: #f5f5f5;
  --grey-dark: #333;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* RESET */
* {
  box-sizing: border-box;
}

header, section, footer, nav {
  margin: 0;
  padding: 0;
  opacity: 0.95;
}

body {
  margin: 0;
  padding-top: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f7f9fc;
  color: #1f2937;
  line-height: 1.6;
  overflow: auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html{
  height: auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background: #1e4466;
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 48px;
  margin-right: 25px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-lang {
  display: flex;
  gap: 6px;
}

.burger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

.lang-btn {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #535c86;
  cursor: pointer;
}

.lang-btn:hover {
  color: #535c86;
}

/* Visible focus style for language buttons */
.lang-btn:focus {
  outline: 2px solid #626faa;
  outline-offset: 2px;
  background-color: #1e4466;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1.05rem;
}

.navbar a:hover {
  color: var(--orange);
}

.navbar a.active-link {
  color: var(--orange);
}

.nav-links-mobile {
  display: contents;
}

.lang-btn.active-lang {
  color: var(--orange);
}

.lang-separator {
  color: #ccc;
  font-weight: 300;
}

.hero-spacer {
  height: 10px;
}

.section-spacer {
  height: 20px;
}

.hero {
  width: 100%;
  background: #1e4466;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.17);
  position: sticky;
  top: 70px;
  z-index: 999;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.5;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-brand {
  transition: opacity 1.0s ease;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-logo {
  width: 936px;
  max-width: 100%;
  height: auto;
  transform: translate(-20px, 10px);
  max-height: 200px;
  transition: opacity 0.4s ease, max-height 0.4s ease, transform 0.4s ease;
}

.hero-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 20px 20px;
}

.hero-action .btn {
  white-space: nowrap;
}

.hero-action .btn.btn-book {
  margin: 0;
}

.hero-scrolled-text {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  margin-right: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background: linear-gradient(90deg, #FF5C00, #FF6600);
  color: white;
  text-decoration: none;
  border-radius: 18px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.33);
  font-size: 1rem;
  font-weight: 600;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: 0.3px;
  text-align: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(255,255,255,0.7);
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06)), linear-gradient(90deg, #FF5C00, #FF6600);
}
/*box-shadow: 0 6px 14px rgba(0,0,0,0.2);*/

.btn:active {
  transform: translateY(1px) scale(0.98);
  filter: brightness(0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--orange);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  background: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
/*  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  background-color: rgba(255,255,255,0.1);*/
/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.1s ease, filter 0.1s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: white;
  border-radius: 12px;
  padding: 35px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  background: none;
  border: none;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #000;
}

.modal h2 {
  margin: 0 0 20px;
  color: var(--deep-sea);
  text-align: center;
}

.modal form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 100%;
  margin: 0;
  text-align: left;
}

/* CHART (legacy, can be removed if unused) */
.chart-illustration {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 250px;
  height: 120px;
}

.bar {
  width: 20%;
  background: var(--orange);
  border-radius: 5px 5px 0 0;
}

/* CONTENT */
main {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
  flex: 1;
  position: relative;
  z-index: 1;
}

.bg-band {
  position: fixed;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: -1;
  pointer-events: none;
}

.band-1 {
  top: 164px;
  height: 380px;
}

.band-2 {
  top: 770px;
  height: 380px;
}

.band-3 {
  top: 1310px;
  height: 380px;
}

main ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

section {
  margin-bottom: 50px;
  text-align: left;
}

section h2, section h3 {
  text-align: center;
}

section ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

h1, h2 {
  color: var(--deep-sea);
}

/* FEATURES (now using pricing-grid/card structure) */
.features {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin: 30px 0;
}

@media (max-width: 1024px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
  
  .burger {
    display: block;
  }

    .nav-links {
     position: absolute;
     top: 100%;
     left: 0;
     width: 100%;
     background: #1e4466;

     flex-direction: column;
     align-items: center;
     gap: 20px;

     padding: 20px 0;

     display: none;
   }

   .nav-links.active {
     display: flex;
   }
 }

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  flex: 1 1 250px;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--orange);
}

.feature-card.expanded {
  border-color: var(--orange);
}

.feature-card.expanded:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--orange);
}

.feature-summary {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.feature-card:not(.expanded):hover .feature-summary {
  transform: translateY(-5px);
}

.features:has(.feature-card.expanded) .feature-card:hover {
  bbox-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-color: transparent;
}

.features:has(.feature-card.expanded) .feature-card.expanded:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--orange);
}

.features:has(.feature-card.expanded) .feature-card.expanded:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--orange);
}

.feature-summary {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-summary {
  transform: translateY(-5px);
}

.features:has(.feature-card.expanded) .feature-card:hover .feature-summary {
  transform: none;
}

.features:has(.feature-card.expanded) .feature-card.expanded:hover .feature-summary {
  transform: none;
}

.feature-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s ease-in-out, opacity 0.6s ease;
  text-align: left;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #eee;
  pointer-events: none;
}

.feature-card.expanded .feature-details {
  max-height: 200px;
  opacity: 1;
  pointer-events: auto;
}

.feature-details p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}



.feature-card h3 {
  color: var(--deep-sea);
  margin: 0 0 10px;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
}

/* CTA */
.cta {
  background: var(--deep-sea);
  color: white;
  border-radius: 12px;
  padding: 20px 20px;
  text-align: center;
  opacity: 0.95;
}

.cta h2 {
  color: white;
  margin: 0 0 10px;
  opacity: 0.95;
}

.cta p {
  font-size: 1.1rem;
  margin: 0 0 20px;
  opacity: 0.95;
}

.cta .btn {
  background: linear-gradient(90deg, #FF5C00, #FF6600);
  padding: 14px 35px;
  font-size: 1.05rem;
  opacity: 0.95;
}

/* ABOUT */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content .service-card {
  background: white;
  border-radius: 12px;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: border-color 0.9s ease;
}

.about-content .service-card:hover {
  border-color: var(--orange);
}

.about-content .service-card.expanded {
  border-color: var(--orange);
}

.about-content .service-header {
  padding: 20px 25px;
  opacity: 0.95;
}

.about-content .service-header h2 {
  color: var(--deep-sea);
  margin: 0;
  font-size: 1.25rem;
}

.about-content .service-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s ease-in-out, opacity 0.6s ease-in-out;
}

.about-content .service-card.expanded .service-details {
  max-height: 400px;
  opacity: 1;
  padding: 0 25px 20px;
}

.about-content .service-details p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 10px;
}

.about-content .service-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.about-content .service-details ul li {
  padding: 6px 0;
  border-top: 1px solid #f0f0f0;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

.cta-section {
  text-align: center;
  padding: 30px 0;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}

input, textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background: linear-gradient(90deg, #FF5C00, #FF6600);
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.about-hero {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 30px;
  text-align: left;
}

.about-hero-img {
  width: 320px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  margin-top: 20px;
}

.about-hero-text {
  flex: 1;
  text-align: left;
}

.about-hero-text_bottom {
  margin-top: -30px;
  margin-bottom: 50px;
}

.impressum-content, .datenschutz-content {
  max-width: 700px;
  margin: 0 auto;
  align-content: left !important;

}

@media (max-width: 768px) {
  .about-hero {
    flex-direction: column;
    align-items: center;
  }
  .about-hero-img {
    width: 80%;
    max-width: 320px;
  }

  .pricing-grid .card {
    border-color: var(--orange);
  }
  .pricing-grid .card:hover,
  .pricing-grid .card.merged:hover,
  .pricing-grid:has(.card.expanded) .card:hover,
  .pricing-grid:has(.card.expanded) .card.expanded:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-color: var(--orange);
  }

  /* --- Feature Card Mobile: vereinfacht --- */
  /* Lange Paragraphen ausblenden */
  .features.pricing-grid .card-summary .merged-col p:last-child {
    display: none;
  }
  .card.merged {
    padding: 16px;
  }
  .pricing-grid .card-summary {
    min-height: auto;
  }
  .features.pricing-grid .card-details .merged-col ul li {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  .impressum-content, .datenschutz-content {
  max-width: 700px;
  margin: 0 auto;
  align-content: left !important;
}
}

/* FOOTER */
footer {
  text-align: center;
  padding: 10px;
  background: #1e4466;
}

footer p {
  color: white;
  margin: 5px 0;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-grid .card-summary {
  min-height: 260px;
}

.card.merged {
  flex: 1 1 500px;
  max-width: 900px;
  cursor: pointer;
  padding: 25px;
}

.merged-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.merged-col h3 {
  color: var(--deep-sea);
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.merged-col p {
  color: #555;
  font-size: 1rem;
  line-height: 1.45;
  margin: 0 0 6px;
}

.merged-col p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .merged-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.card:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--orange);
}

.card.merged:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--orange);
}

.pricing-grid:has(.card.expanded) .card:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border-color: transparent;
}

.pricing-grid:has(.card.expanded) .card.expanded:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border-color: var(--orange);
}

.card-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s ease-in-out, opacity 0.8s ease;
  pointer-events: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.card.expanded .card-details {
  max-height: 800px;
  opacity: 1;
  pointer-events: auto;
}

.card-details .booking-type {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin: 15px 0;
}

.card-details .booking-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.4s ease;
}

.card-details .booking-option:hover {
  background: #f3f4f6;
}

.card-details .booking-option.active {
  background: #e0f2fe;
}

.card-details .booking-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #9ca3af;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.card-details .booking-option.active .booking-circle {
  border-color: var(--deep-sea);
}

.card-details .booking-option.active .booking-circle::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--deep-sea);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-details .merged-col {
  text-align: left;
    color: #555;
  font-size: 1rem;
  line-height: 1.45;
  margin: 0 0 6px;
}

.card-details .detail-content h3 {
  color: var(--deep-sea);
  margin: 8px 0 4px;
  font-size: 1rem;
}

.card-details .merged-col h3 {
  color: var(--deep-sea);
  margin: 38px 0 4px;
  font-size: 1.25rem;
}

.card-details .merged-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.card-details .merged-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.card-details .detail-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.card-details .merged-col ul li {
  padding: 10px 0px 10px;
  font-size: 1rem;
  margin: 0 0 6px;
  line-height: 1.45;
}

.package-options {
  display: none !important;
  flex-direction: column !important;
  gap: 6px;
  align-items: center;
  margin: 10px 0;
}

.package-options.visible {
  display: flex !important;
}

.package-option {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 16px;
  font-size: 0.85rem;
  transition: background 0.6s ease;
}

.package-option:hover {
  background: #f3f4f6;
}

.package-option.active {
  background: #fff3e0;
}

.package-option .package-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #9ca3af;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.package-option.active .package-circle {
  border-color: var(--orange);
}

.package-option.active .package-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.package-custom-input {
  display: none;
  width: 60px;
  padding: 4px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  font-size: 0.85rem;
}

.package-custom-input.visible {
  display: inline-block;
}

.library-topic-options {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 10px 0;
}

.library-topic-options.visible {
  display: flex;
}

.library-topic-select {
  max-width: 260px;
}

.toast-success {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #16a34a;
  color: white;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.4s ease;
  pointer-events: none;
}

.toast-success.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.btn-book {
  margin: 15px auto 10px;
  display: block;
  text-align: center;
}

.cta .btn-book {
  display: inline-block;
  margin: 0;
}

.card h2 {
  color: var(--deep-sea);
  margin-top: 0;
  text-align: center;
}

.card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  margin: 10px 0;
  text-align: center;
}

.card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.card ul li:last-child {
  border-bottom: none;
}

.badge {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 12px;
}

.hero-badges .badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: .55rem .9rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.select-group {
  margin: 18px 0;
}

.select-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

.card .btn {
  margin-top: 0;
}

.pricing-grid .card {
  display: flex;
  flex-direction: column;
}

.pricing-grid .feature-list {
  flex: 1;
}

.trust-section .trust-box,
.trust-box.trust-section {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.trust-box {
  text-align: center;
  margin: 30px 0;
  color: #555;
  font-size: 0.95rem;
}

.trust-box h2 {
  margin-bottom: 10px;
}

.trust-box p {
  color: #666;
  margin-bottom: 24px;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.trust-item {
  background: #f9fafb;
  padding: 14px 20px;
  border-radius: 18px;
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check::before {
  content: "\2713";
  margin-right: 6px;
  color: var(--orange);
  font-weight: 700;
}

.price-note {
  color: #6b7280;
  font-size: 0.95rem;
  margin: -8px 0 18px;
  line-height: 1.4;
}

.process {
  background: #1e4466;
  color: white;
  padding: 60px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.process h2 {
  color: white;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-step {
  background: rgba(255,255,255,0.06);
  padding: 28px;
  border-radius: 20px;
}

.process-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 12px;
}

.process-step h3 {
  color: white;
  margin: 0 0 8px;
  text-align: left;
}

.process-step p {
  color: #d1d5db;
  margin: 0;
  font-size: 0.95rem;
  text-align: left;
}

@media (max-width: 800px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.cta-section {
  margin: 40px 0;
}

.cta-box {
  background: #1e4466;
  color: white;
  text-align: center;
  border-radius: 32px;
  padding: 60px 40px;
}

.cta-box h2 {
  color: white;
  margin-top: 0;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.85);
}

.cta-box .btn-light {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.5);
  display: inline-block;
  width: auto;
  padding: 12px 28px;
}

.cta-box .btn-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: white;
}

@media (max-width: 600px) {
  .cta-box {
    padding: 40px 20px;
  }
}

.library-section {
  padding-top: 20px;
}

.library-card {
  background: linear-gradient(135deg, #1e4466, #1a3650);
  color: white;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.library-content {
  padding: 50px;
}

.library-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.library-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 20px;
  color: white;
}

.library-text {
  color: #d1d5db;
  max-width: 650px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.library-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 35px;
}

.library-feature {
  background: rgba(255,255,255,0.08);
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
}

.library-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-light {
  background: white;
  color: #111827;
}

.btn-light:hover {
  background: #dbeafe;
  color: #1d4ed8;
}

.library-preview {
  background: rgba(255,255,255,0.06);
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.preview-box {
  width: 100%;
  max-width: 300px;
  background: white;
  color: #111827;
  border-radius: 24px;
  padding: 28px;
}

.preview-box h3 {
  margin-top: 0;
  color: var(--deep-sea);
}

.preview-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 10px 0;
  color: var(--orange);
}

.preview-list {
  padding-left: 18px;
}

.preview-list li {
  margin-bottom: 10px;
}

.small-note {
  margin-top: 18px;
  color: #6b7280;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .library-card {
    grid-template-columns: 1fr;
  }
  .library-preview {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
}

/* SERVICES */
.services-section {
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

.consulting-services .services-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

@media (max-width: 800px) {
  .consulting-services .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
  border-left: 4px solid var(--orange);
  overflow: hidden;
  margin-bottom: 24px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}

.service-header h3 {
  color: var(--deep-sea);
  margin: 0;
  font-size: 1.1rem;
}

.service-header p {
  display: none;
}

.service-toggle {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  transition: transform 0.3s ease;
  line-height: 1;
}

.service-card.expanded .service-toggle {
  transform: rotate(45deg);
}

.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease-in-out;
}

.service-card.expanded .service-details {
  max-height: 3000px;
}

.service-body-inner {
  padding: 0 20px 16px;
  flex: 1;
}

.service-body-inner p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 12px;
}

.service-body-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-body-inner ul li {
  font-size: 0.95rem;
  color: #555;
  padding: 6px 0 6px 16px;
  position: relative;
  line-height: 1.5;
  border-top: 1px solid #f0f0f0;
}

.service-body-inner ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  body {
    padding-top: 0;
  }

  header.hero {
    top: 56px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 10px 15px 2px;
    gap: 0;
    opacity: 0.95;
  }

  .hero-content {
    align-items: center;
    width: 100%;
    gap: 2px;
    opacity: 0.95;
    transition: gap 0.6s ease;
  }

  .hero-action {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 8px;
    opacity: 0.95;
  }

  .hero-logo {
    width: 280px;
    transform: none;
    opacity: 0.95;
  }

  .navbar {
    gap: 0;
    padding: 8px 8px;
    height: 56px;
    min-height: 56px;
    width: 100vw;
    max-width: 100vw;
  }

  .navbar a {
    font-size: 0.8rem;
    padding: 4px 4px;
    white-space: nowrap;
  
  }
  .navbar a:hover {
    color: var(--orange);
  }

  .nav-right {
    margin-left: auto;
    margin-right: 15px;
    display: flex;
    align-items: center;
    gap: 0px;
  }

  .nav-lang {
    display: flex;
    gap: 3px;
  }

  .lang-btn {
    font-size: 0.75rem;
    padding: 2px 4px;
  }

  .burger {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.6rem;
    padding: 0px;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 90%;
  }

  .band-1 {
    top: 200px;
    height: 300px;
  }
  .band-2 {
    top: 650px;
    height: 300px;
  }
  .band-3 {
    top: 1100px;
    height: 300px;
  }
}

.page-transition-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.page-transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-link:hover {
  color: var(--orange);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.footer-sep {
  color: #666;
  font-weight: 300;
}

.chr-footer__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

 .social-buttons {
      display: flex;
      gap: 15px;
    }

    .social-btn {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: white;
      font-size: 22px;
      transition: transform 0.2s ease;
    }

    .social-btn img {
      width: 38px;
      height: 38px;
      filter: brightness(0) invert(1);
    }
  
    .social-btn:hover {
      transform: translateY(-4px);
    }

    .social-btn:active {
      transform: translateY(-1px);
    }

  .social-btn:hover {
      transform: translateY(-4px);
    }

    .social-btn:active {
      transform: translateY(-1px);
    }

    .chr-footer__social__container {
      display: flex;
      color: white;
      align-items: center;
      flex-direction: row;
      gap: 30px; 
      justify-content: left;
      margin-top: 8px;
      margin-left: 60px;
    }

    .chr-footer__social__list {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 18px;
    }
    
    .section-divider {
      height: 1px;
      background: linear-gradient(
      to right,
      transparent,
      white,
      transparent);
      margin: 10px 0;
    }

    .section-divider-card-details {
      height: 1px;
      background: linear-gradient(
      to right,
      transparent,
      var(--orange),
      transparent);
      margin: 15px 0;
    }

    .footer-spacer {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0px;
      padding: 30px 30px 20px;
      margin: 10px 10px 30px;
      background: #1e4466;
      padding-left: 50px;
    }

  .chr-footer__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .chr-footer__list li {
    display: flex;
    align-items: center;
  }

  .chr-footer__list p,
  .chr-footer__list a {
    margin: 0;
    line-height: 1;
  }

/* SEGMENT CHOICE (index.html) */
.segment-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 30px 0;
}

.segment-card {
  background: white;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  flex: 1 1 240px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.segment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--orange);
}

.segment-card h3 {
  color: var(--deep-sea);
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.segment-card p {
  color: #555;
  font-size: 0.9rem;
  margin: 0 0 16px;
  line-height: 1.4;
}

.segment-tag {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.segment-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  text-align: left;
  width: 100%;
}

.segment-list li {
  padding: 5px 0 5px 18px;
  position: relative;
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.4;
}

.segment-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.segment-arrow {
  font-size: 1.3rem;
  color: var(--orange);
  margin-top: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  max-height: 10px;
}

@media (max-width: 1024px) {
  .segment-grid {
    flex-direction: column;
    align-items: center;
  }
  .segment-card {
    width: 100%;
    max-width: 280px;
    padding: 16px 12px;
    border-color: var(--orange);
    gap: 6px;
  }
  .segment-card h3 {
    font-size: 1rem;
    margin: auto;
  }
  .segment-card p {
    font-size: 0.85rem;
    margin: 0;
  }
  .segment-arrow {
    margin-top: auto;
    font-size: 1.25rem;
  }
  .segment-list {
    font-size: 0.8rem;
  }
  .segment-list li {
    padding: 3px 0 3px 16px;
  }
}

/* FEATURES GRID */
.features-grid {
  padding: 20px 0;
}

.features-grid .section-header {
  margin-bottom: 40px;
}

.features-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.features-grid .feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-grid .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: var(--orange);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.features-grid .feature-card h3 {
  margin: 0 0 10px;
  color: var(--deep-sea);
  font-size: 1.15rem;
}

.features-grid .feature-card p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 800px) {
  .features-grid-inner {
    grid-template-columns: 1fr;
  }
  .features-grid .feature-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* PRICING NOTICE BANNER */
.pricing-notice {
  background: #fff3e0;
  border: 2px solid var(--orange);
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 30px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.pricing-notice > div {
  flex: 1;
  min-width: 200px;
}

.pricing-notice h3 {
  color: var(--deep-sea);
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.pricing-notice p {
  color: #555;
  margin: 0;
  font-size: 0.95rem;
}

.pricing-notice .btn {
  white-space: nowrap;
  padding: 8px 18px;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .pricing-notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* FORM SELECT DROPDOWNS */
.form-select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: white;
  font-size: 0.95rem;
  font-family: inherit;
  color: #333;
  cursor: pointer;
}

.form-select:focus {
  outline: 2px solid #0078d4;
  outline-offset: 1px;
  border-color: #0078d4;
}

.form-label {
  display: block;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-sea);
  margin-bottom: 4px;
}
 