/* RESET & BASE STYLES --------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F9FBFC;
  min-height: 100vh;
  color: #173A5E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #2579DB;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s cubic-bezier(.4, 0, .2, 1);
}
a:hover, a:focus {
  color: #5B7DBE;
}
ul, ol {
  margin-left: 24px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px;
  font-size: 16px;
}
th {
  background: #e8edf2;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* BRAND TYPE SCALE --------------------------------------------------- */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #173A5E;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #2B5278;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #4176AC;
  letter-spacing: 0.01em;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #4176AC;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #25425B;
}
strong, b {
  font-weight: 700;
}

/* LAYOUT CONTAINERS --------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F5F6FA;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(173, 188, 213, 0.10);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(135, 166, 179, 0.12);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 100%;
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(95, 140, 174, 0.22);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 28px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fffbee;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(179, 158, 172, 0.09);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #F3E2FF;
  transition: box-shadow .2s, border-color .2s;
  max-width: 500px;
}
.testimonial-card p {
  color: #173A5E;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #674186;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(200, 183, 224, 0.18);
  border-color: #E1CCFC;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F5F6FA;
  border-radius: 14px;
  box-shadow: 0 1.5px 10px rgba(199, 194, 219, 0.11);
  padding: 24px 16px 20px 16px;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 320px;
  margin-bottom: 20px;
  border: 1px solid #EFF2FA;
  transition: box-shadow .2s, border-color .2s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
  border-radius: 8px;
  background: #E5F2FF;
  box-shadow: 0 0.5px 4px rgba(173, 188, 213, 0.08);
}
.feature-item:hover {
  box-shadow: 0 8px 24px rgba(146, 190, 219,.18);
  border-color: #CEEAFB;
}
@media (max-width: 900px) {
  .feature-item {
    min-width: 120px;
    flex-basis: 120px;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  justify-content: flex-start;
}
@media (max-width: 820px) {
  .feature-grid {
    flex-direction: column;
    gap: 22px;
  }
}

/* HEADER & NAVIGATION --------------------------------------------------- */
header {
  background: linear-gradient(90deg, #D9ECF7 0%, #F3ECFF 100%);
  padding: 0;
  box-shadow: 0 3px 22px rgba(200,210,230,0.13);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 85px;
}
.logo img {
  height: 54px;
  width: auto;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #173A5E;
  padding: 5px 7px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #C2E0F7;
  color: #4176AC;
}
.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #80CEFF 0%, #BDABF4 100%);
  box-shadow: 0 2px 16px rgba(140,180,230,0.09);
  border: none;
  border-radius: 30px;
  padding: 10px 26px;
  margin-left: 24px;
  cursor: pointer;
  transition: background .20s, transform .18s;
  letter-spacing: 0.01em;
  text-align: center;
  outline: none;
  display: inline-block;
  text-shadow: 0 1px 4px rgba(175,218,255,0.03);
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #60B8E7 0%, #A78DE8 94%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 28px rgba(160,160,210,0.13);
}

/* Mobile Burger Menu --------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #173A5E;
  margin-left: 16px;
  cursor: pointer;
  border-radius: 50%;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 300;
}
.mobile-menu-toggle:hover {
  background: #d7e9fa;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(219, 229, 245, 0.92);
  backdrop-filter: blur(2.5px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform .28s cubic-bezier(.5,.2,.3,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 26px;
  background: none;
  border: none;
  color: #173A5E;
  font-size: 2rem;
  cursor: pointer;
  z-index: 20;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fcdfff;
}
.mobile-nav {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #173A5E;
  font-weight: 500;
  background: #F7F8FE;
  border-radius: 12px;
  padding: 12px 30px;
  min-width: 210px;
  text-align: center;
  transition: background .15s, color .15s, box-shadow .2s;
  box-shadow: 0 0.5px 4px rgba(120,180,200,0.06);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E9E3FA;
  color: #6155A6;
  box-shadow: 0 3px 18px rgba(180,185,220,.13);
}

/* HERO -------------------------------------------------------------- */
.hero {
  background: linear-gradient(180deg, #C0ECFF 0%, #ECEAFF 97%);
  border-radius: 0 0 54px 54px;
  padding-top: 82px;
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 6px 40px rgba(168,195,232, 0.09);
  margin-bottom: 42px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 660px;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.12;
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 16px;
  color: #3c5c7c;
}

/* CONTACT BLOCKS ----------------------------------------------------- */
.contact-info,
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-info img,
.contact-details img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 7px;
}
.contact-hint {
  background: #F5F5FE;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 8px rgba(120,140,210,.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* PRICING TABLE ------------------------------------------------------ */
.pricing-table {
  background: #F5F6FA;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(181,186,200, .09);
  overflow: auto;
  margin-bottom: 18px;
}
.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid #EAEAFF;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.package-options {
  margin-top: 24px;
}

/* FAQ & FAQ-LIST ----------------------------------------------------- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.faq-list > div {
  background: #F8FAFF;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(126,132,182,.06);
  padding: 18px 14px 12px 18px;
  flex: 1 1 260px;
  min-width: 220px;
}

/* FOOTER -------------------------------------------------------------- */
footer {
  background: linear-gradient(90deg, #E3F3FF 0%, #F9F6FF 100%);
  margin-top: 64px;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 -2px 24px rgba(180,180,200,.07);
  font-size: 0.98rem;
  padding: 22px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.footer-links a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #4F5C71;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 6px;
  transition: background .14s;
}
.footer-links a:hover, .footer-links a:focus {
  background: #E8E3FC;
  color: #523E74;
}
.footer-contact {
  color: #9EAAB7;
  letter-spacing: 0.01em;
}

/* UTILITIES ----------------------------------------------------------- */
ul {
  list-style: disc inside;
  margin-bottom: 10px;
}
ol {
  list-style: decimal inside;
  margin-bottom: 10px;
}
li {
  margin-bottom: 4px;
  font-size: 1rem;
}

/* Call-to-action & Buttons -------------------------------------------- */
button, .cta-primary, .cookie-btn {
  border: none;
  cursor: pointer;
  outline: none;
}

.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg,#B6D2FB 0%,#C1B3F7 100%);
  border-radius: 22px;
  padding: 8px 26px;
  margin-right: 8px;
  transition: background .20s, box-shadow .16s, color .14s;
  box-shadow: 0 1.5px 10px rgba(140,130,180,0.06);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: linear-gradient(90deg, #84BDF7 0%, #B59DF9 100%);
  color: #fff;
}
.cookie-btn.reject {
  background: #E6B1B7;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E58688;
  color: #fff;
}
.cookie-btn.settings {
  background: #F4E1A6;
  color: #5A5042;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F3CD72;
  color: #4F4021;
}

/* COOKIE BANNER & MODAL ----------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 12000;
  background: #FDF9F2;
  box-shadow: 0 2px 18px rgba(200,173,171,.13);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 26px 32px 22px 32px;
  max-width: 540px;
  margin: 0 auto;
  opacity: 1;
  animation: cookie-slidein .46s cubic-bezier(.45, .05, .3, 1);
}
@keyframes cookie-slidein {
  0% {transform: translateY(40px);opacity:0;}
  100% {transform: translateY(0);opacity:1;}
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
}
@media (max-width: 600px) {
  .cookie-banner { padding: 16px 12px 16px 14px; }
}
.cookie-banner p {
  color: #6a5772;
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(230,215,255, 0.94);
  backdrop-filter: blur(3.5px);
  z-index: 14000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(135, 169, 200, 0.16);
  display: flex;
  flex-direction: column;
  min-width: 300px;
  max-width: 98vw;
  width: 440px;
  padding: 36px 34px 28px 34px;
  position: relative;
}
@media (max-width: 520px) {
  .cookie-modal-content {
    padding: 18px 10px 16px 14px;
    min-width: 0; width: 100vw; border-radius: 0;
  }
}
.cookie-modal-content h2 {
  margin-bottom: 10px;
}
.cookie-modal-content p {
  margin-bottom: 16px;
  color: #57606A;
  font-size: 1rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding: 10px 0;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #453665;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 14px;
  background: #EEE6F6;
  position: relative;
  cursor: pointer;
  transition: background .16s;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0; position: absolute; left: -100vw;
}
.cookie-toggle .slider {
  position: absolute; left: 2px; top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #C1B3F7;
  transition: transform .18s, background .14s;
}
.cookie-toggle input:checked + .slider {
  transform: translateX(20px);
  background: #7FCFE5;
}
.cookie-modal-close {
  position: absolute;
  top: 20px; right: 26px;
  border: none;
  background: none;
  color: #83609e;
  font-size: 2em;
  cursor: pointer;
  padding: 0;
  z-index: 30;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #5e3590;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* THANK YOU + GENERIC CTA SECTION ------------------------------------- */
.thank-you .cta-primary {
  margin-top: 26px;
  font-size: 1.11rem;
}
.cta {
  background: #E1F6F9;
  border-radius: 16px;
  padding: 32px 12px 30px 12px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DREAMY PASTEL SOFT ACCENTS ------------------------------------------ */
.about, .privacy, .gdpr, .terms, .cookie-policy, .about-pricing, .security-maintenance, .details, .why {
  background: linear-gradient(90deg, #F5EFFF 0%, #EAF7FF 100%);
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(210,185,230,0.06);
}
@media (max-width: 768px) {
  .footer-links, .footer-contact, footer .container { align-items: flex-start !important; }
}

/* RESPONSIVE: MOBILE STACKING & PADDING ------------------------------- */
@media (max-width: 980px) {
  header .container {
    flex-direction: row;
    align-items: center;
    min-height: 68px;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 8px;
  }
  .footer-links {
    gap: 12px;
  }
  .footer-contact {
    font-size: 0.89rem;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.15rem; }
  .hero { padding-top: 44px; }
  .footer-links a { font-size: 0.91rem; }
  .cta-primary { padding: 8px 20px; font-size: 0.98rem; }
}

/* INTERACTIVE MICRO-INTERACTIONS -------------------------------------- */
a, button, .cta-primary, .cookie-btn, .footer-links a, .mobile-nav a, .main-nav a, .feature-item {
  transition: background .14s, color .16s, box-shadow .18s, transform .16s;
}
.feature-item:active, .card:active {
  transform: scale(0.98);
}

::-webkit-input-placeholder {color:#A6B1B7; opacity: 1;}
::-moz-placeholder {color:#A6B1B7; opacity: 1;}
:-ms-input-placeholder {color:#A6B1B7; opacity: 1;}
::placeholder {color:#A6B1B7; opacity: 1;}

/* SCROLLBAR STYLES (for pastel refinement) ---------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #F5F6FA;
}
::-webkit-scrollbar-thumb {
  background: #E5EAF1;
  border-radius: 6px;
}

/* PASTEL GRADIENTS FOR ICON/SPECIAL CARDS ----------------------------- */
.feature-item img, .why ul img, .about ul img {
  box-shadow: 0 0.5px 4px rgba(173,200,210,.10);
}

/* FOCUS STATES ------------------------------------------------------- */
a:focus, button:focus, .cta-primary:focus, .footer-links a:focus, .mobile-nav a:focus {
  outline: 2px solid #ACB1FF;
  outline-offset: 1px;
  background: #e1e8f9;
}

/* ACCESSIBILITY COLOR CONTRAST
   (Testimonials: dark text on light backgrounds) ---------------------- */
.testimonial-card, .feature-item, .card {
  color: #173A5E !important;
}

/* Z-INDEX LAYERING --------------------------------------------------- */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 1200;
}

/* MISC SPACING (catch-alls for 20px+ min gaps) ----------------------- */
section, .section {
  margin-bottom: 60px !important;
}
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px !important;
}
.feature-grid, .card-container, .content-grid {
  gap: 20px !important;
}

/*********************************************************
*  END OF SOFT PASTEL SKYVISITEN WÜRZBURG CSS
*********************************************************/