/* =====================================================
   PLAYFUL_DYNAMIC STYLE for BLITZKURIER
   CSS ONLY FLEXBOX LAYOUT SYSTEM – NO GRID/COLUMNS
   ===================================================== */

/* ================= RESET & BASE =================== */
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, 
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;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body {
  background: #fff;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}
img { display: inline-block; max-width: 100%; height: auto; border: 0; }
a { color: #1459a6; text-decoration: none; transition: color 0.18s;}
a:hover, a:focus { color: #f9b112; text-decoration: underline;}
ul, ol { padding-left: 28px; }
section, main, header, nav, footer { display: block; }
button { font-family: inherit; font-size: 1em; border: none; cursor: pointer; background: none; }

table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: 12px; }
th { background: #f9b112; color: #1459a6; font-weight: bold; }
td { background: #f7f8fa; color: #1c1c1c; }
tr:not(:last-child) td, tr:not(:last-child) th { border-bottom: 2px solid #e6eaff; }

/* ================== BRAND COLOR PALETTE ================== */
:root {
  --color-primary: #1459a6;
  --color-accent: #f9b112;
  --color-secondary: #ffffff;
  --color-grey: #f4f7fb;
  --color-shadow: rgba(20,89,166,0.09);
  --color-dark: #1c1c1c;
}

/* =================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.8rem; line-height: 1.14; }
h2 { font-size: 2rem; line-height: 1.18; }
h3 { font-size: 1.3rem; line-height: 1.3; }
h4 { font-size: 1.1rem; }
p, ul, li { font-family: 'Open Sans', Arial, sans-serif; font-size: 1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
}

strong, b { color: var(--color-primary); font-weight: bold; }

/* Fun (playful_dynamic) font tweaks */
h1, h2, h3 {
  text-shadow: 1px 3px 0 var(--color-accent), 0 4px 10px #ffe9bd77;
}

/* =================== CONTAINER & WRAPPERS ==================*/
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}

/* ================= SECTIONS & LAYOUT SPACING ============== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 32px 0;
}
@media (max-width: 768px) {
  .section,
  section { padding: 22px 0 22px 0; margin-bottom: 34px; }
  .container { padding: 0 7px; }
}

/* ============= HEADER & NAVIGATION ============== */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 4px 25px var(--color-shadow);
  padding: 0;
}
header .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  padding: 0 16px;
}
header img { height: 54px; margin-right: 8px; vertical-align: middle; }
nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
nav.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
  position: relative;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background 0.16s, color 0.19s;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  text-decoration: none;
}
.cta-header {
  display: inline-block;
  padding: 8px 20px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 999px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-left: 10px;
  box-shadow: 0 0 0 #f9b112, 0 3px 15px #1459a611;
  transition: background 0.15s, color 0.16s, transform 0.14s, box-shadow 0.15s;
}
.cta-header:hover, .cta-header:focus {
  background: #ffffff;
  color: var(--color-primary);
  transform: scale(1.07) rotate(-3deg);
  box-shadow: 0 2px 11px #f9b11255;
}
/* Hide menu button on desktop */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-accent);
  background: none;
  border: none;
  margin-left: 18px;
  z-index: 80;
  transition: background 0.14s, color 0.17s, transform 0.13s;
}
.mobile-menu-toggle:active {
  transform: scale(0.93);
}

/* MOBILE Navigation Handling */
@media (max-width: 1000px) {
  nav.main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .cta-header { margin-left: 6px; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 70px 0 #0003;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.76,.13,.27,.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--color-primary);
  background: none;
  border: none;
  margin: 28px 0 12px 22px;
  align-self: flex-start;
  transition: color 0.17s, transform 0.11s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
  transform: scale(1.10) rotate(-10deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding-left: 28px;
  animation: nav-in 0.7s cubic-bezier(.53,1.72,.51,.99);
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.26rem;
  color: var(--color-primary);
  background: none;
  padding: 12px 0;
  border-radius: 12px;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

@keyframes nav-in {
  0% { opacity:0; transform:translateY(40px); }
  100% { opacity:1; transform:translateY(0); }
}

@media (min-width: 1001px) {
  .mobile-menu { display: none !important; }
}

/* ================= HERO / CALL TO ACTIONS =================== */
.hero {
  background: linear-gradient(105deg, #f9b112 0%, #fffbe8 100%);
  background-color: #fffbe8;
  box-shadow: 0 3px 14px #1459a62d;
  border-radius: 0 0 46px 0;
  position: relative;
  margin-bottom: 50px;
  padding-top: 38px;
  padding-bottom: 36px;
  overflow: hidden;
}
.hero .container { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.hero h1 {
  color: var(--color-primary);
  font-size: 2.1rem;
  text-shadow: 2px 5px 0 #ffe6b866, 0 4px 20px #fff1c199;
}
.hero p { margin: 12px 0 28px 0; font-size: 1.08rem; color: #222;}
.cta-main {
  display: inline-block;
  padding: 16px 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  box-shadow: 0 4px 30px #1459a629, 0 0 0 #f9b112;
  transition: background 0.17s, color 0.13s, box-shadow 0.16s, transform 0.13s;
  position: relative;
  z-index: 1;
}
.cta-main:after {
  content: '';
  display: block;
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 8px;
  height: 8px;
  border-radius: 40px;
  background: #ffebc288;
  filter: blur(3px);
  z-index: -1;
  transition: opacity 0.2s;
}
.cta-main:hover, .cta-main:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 4px 16px #f9b11244;
  transform: scale(1.045) rotate(-2deg);
}
.cta-main:hover:after,
.cta-main:focus:after {
  opacity: 0.5;
}

/* ============== FEATURE / SERVICE / VALUE GRIDS ================ */
.feature-grid, .service-list, .value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.feature-item, .service-card, .value-item {
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 340px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 5px 24px #1459a610, 0 1.5px 8px #f9b11222;
  padding: 30px 22px 28px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.21s, transform 0.16s;
  position: relative;
  z-index: 1;
}
.feature-item img, .service-card img, .value-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  animation: bounceIn 1s both;
}
@keyframes bounceIn {
  0% { transform: scale(0.8) translateY(40px); opacity: 0; }
  60% { transform: scale(1.1) translateY(-10px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.feature-item:hover, .service-card:hover, .value-item:hover {
  box-shadow: 0 8px 33px #f9b11244, 0 2px 18px #1459a62c;
  transform: translateY(-7px) scale(1.02) rotate(-1.5deg);
  cursor: pointer;
  z-index: 2;
}
.feature-item h3, .service-card h3, .value-item strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1.19rem;
  margin-bottom: 5px;
}
.feature-item p, .service-card p, .value-item p {
  color: #444;
  font-size: 1rem;
}
.value-item strong { font-weight: 700; color: var(--color-accent); font-size: 1.13rem; }

/* ===== Callout Info Box / Address Block ===== */
.info-box {
  padding: 16px 23px;
  background: #fffbe8;
  border-left: 5px solid var(--color-accent);
  border-radius: 13px;
  color: #1c1c1c;
  margin: 15px 0;
  font-size: 1.04em;
  box-shadow: 0 2px 12px #ffe7b166;
}
.address-block, .phone-email-block, .opening-hours {
  background: #e5f1fa;
  border-radius: 13px;
  padding: 12px 20px;
  margin: 0 0 10px 0;
  display: flex; align-items: center; gap: 16px;
}
.address-block img, .phone-email-block img, .opening-hours img {
  width: 22px; height: 22px; margin-right: 8px; vertical-align: middle;
}

/* =========== TESTIMONIALS / SLIDER ============= */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 0 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 36px;
  padding: 30px 32px;
  box-shadow: 0 4px 32px #1459a611, 0 1.5px 8px #f9b1121a;
  min-width: 250px; max-width: 370px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card p {
  color: #1a2342;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #1459a6;
  font-size: 1.01em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.testimonial-card:hover {
  box-shadow: 0 9px 40px #f9b11235, 0 2px 18px #1459a611;
  transform: translateY(-7px) scale(1.02) rotate(1.5deg);
  cursor: pointer;
}

/* ========== FAQ ACCORDION ========== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fffbe5;
  border-radius: 20px;
  box-shadow: 0 2px 11px #ece3bc55;
  padding: 22px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.12s;
}
.faq-item h3 {
  cursor: pointer;
  color: var(--color-accent);
  font-size: 1.01rem;
  margin-bottom: 7px;
  position: relative;
}
.faq-item.open {
  box-shadow: 0 7px 26px #f9b11233, 0 2px 13px #1459a617;
  transform: scale(1.011) rotate(-1.2deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0.7;
  transition: max-height 0.45s cubic-bezier(.7,.1,.58,1.01), opacity 0.23s;
}
.faq-item.open .faq-answer {
  max-height: 900px;
  opacity: 1;
}

/* ========== TABLES (PRICING) ========== */
.pricing-table { overflow-x: auto; margin-bottom: 16px; }
.pricing-table table {
  width: 100%;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 1px 24px #1459a618;
  overflow: hidden;
  margin-top: 20px;
}
.pricing-table th,
.pricing-table td {
  font-size: 1.05rem;
  padding: 16px 15px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table th {
  color: var(--color-primary);
  background: #f9b11233;
}
.pricing-table tr:nth-child(even) td { background: #fffbe8; }

.benefit-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.benefit-list li {
  background: #fff;
  border-radius: 18px;
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 1.08rem;
  box-shadow: 0 1px 11px #f9b11218;
}
.benefit-list img {
  width: 24px;
  height: 24px;
}

/* ========== Footer ============= */
footer {
  background: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  padding: 30px 0 0 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 8px;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-navigation a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  background: none;
  font-size: 1rem;
  border-radius: 7px;
  padding: 6px 11px;
  transition: background 0.14s, color 0.13s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: var(--color-accent);
  background: #fff;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #fffbe8;
  color: #222;
  border-radius: 13px;
  padding: 17px 21px;
  margin-bottom: 8px;
  box-shadow: 0 2px 12px #ffe7b155;
  max-width: 370px;
  font-size: 0.97em;
}
.contact-info img { width: 18px; height: 18px; vertical-align: middle; margin-right: 10px; }

/* ============= Utility / Content Patterns ============= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1.5px 8px #f9b11215;
  padding: 23px 26px;
  margin-bottom: 20px;
  position: relative;
}
.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:18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid, .service-list, .value-list { gap: 16px; }
  .testimonial-slider { gap: 12px; }
  .footer-navigation { gap: 10px; font-size: 0.95em; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* ============= COOKIE CONSENT BANNER & MODAL ============= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  background: #fffbe7;
  color: #1c1c1c;
  box-shadow: 0 -1.5px 16px #0c1c3425;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 18px 22px 30px;
  font-size: 1.08em;
  animation: cookieIn 0.34s cubic-bezier(.65,1.2,.22,1.13);
}
@keyframes cookieIn {
  0%{transform:translateY(90px);opacity:0;}
  100%{transform:translateY(0);opacity:1;}
}
.cookie-banner p {
  max-width: 77vw;
}
.cookie-btn {
  margin: 0 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  border-radius: 999px;
  padding: 11px 26px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px #1459a610;
  transition: background 0.15s, color 0.14s, transform 0.13s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: #eee;
  color: #1c1c1c;
}
.cookie-btn.settings {
  background: #ffffff;
  color: var(--color-primary);
  border: 1px solid #f9b11266;
}
.cookie-btn:hover, .cookie-btn:focus { transform: scale(1.07) rotate(-2deg); background: var(--color-accent); color: var(--color-primary);}
@media (max-width: 660px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 10px; padding: 16px 7px 16px 3px; }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #1c1c1cd6;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fffbe7;
  border-radius: 18px;
  box-shadow: 0 5px 38px #1459a62e;
  padding: 38px 42px 30px;
  min-width: 320px; max-width: 99vw;
  font-size: 1.09em;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: modalShow .3s cubic-bezier(.67,1.12,.44,1.05);
}
@keyframes modalShow {
  0% { transform: scale(0.92) translateY(55px); opacity: 0; }
  100% {transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.45rem;
  color: var(--color-primary);
  margin-bottom: 13px;
}
.cookie-modal-content .modal-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 6px 0;
}
.cookie-modal-content .cookie-switch {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #e5e5e5;
  border-radius: 22px;
  position: relative;
  outline: none;
  transition: background 0.15s;
  vertical-align: middle;
}
.cookie-modal-content .cookie-switch:checked {
  background: var(--color-accent);
}
.cookie-modal-content .cookie-switch::before {
  content: '';
  position: absolute; left: 3px; top: 2.5px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px #0002;
  transition: left 0.18s;
}
.cookie-modal-content .cookie-switch:checked::before {
  left: 18px;
}
.cookie-modal-content .cookie-switch[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal-content .close-cookie-modal {
  position: absolute;
  right: 17px;
  top: 17px;
  font-size: 1.7em;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 150;
}
.cookie-modal-content .close-cookie-modal:hover {
  color: var(--color-accent);
}
@media (max-width: 500px) {
  .cookie-modal-content { padding: 17px 2vw 17px 2vw; min-width: unset; }
}

/* ============== Miscellaneous / Utility ============== */
.text-section { margin-bottom: 18px; }
.text-section h2 { margin-top: 23px; }
ul,ol { margin:0 0 15px 0; }
li { margin-bottom:8px; }

/* ============== RESPONSIVE BREAKPOINTS ============== */
@media (max-width: 1100px) {
  .feature-item, .service-card, .value-item { min-width: 180px; }
}
@media (max-width: 768px) {
  .feature-item, .service-card, .value-item, .testimonial-card {
    max-width: 99vw;
    min-width: 165px;
    padding: 20px 11px;
  }
  .footer-navigation {
    flex-wrap: wrap; gap: 9px; font-size:0.98em;
  }
}
@media (max-width: 440px) {
  .feature-item, .service-card, .value-item {
    font-size: 0.97em;
    padding: 11px 5px 15px 7px;
  }
  .testimonial-card { padding: 12px 8px; }
}

/* ============== Animations for Playful Feel ============== */
.cta-main, .cta-header, .feature-item, .service-card, .testimonial-card, .cookie-btn, .faq-item, .card {
  transition: box-shadow 0.17s, transform 0.14s, background 0.14s, color 0.13s;
}
.cta-main:active, .cta-header:active, .cookie-btn:active { transform: scale(0.97) rotate(2deg); }

/* Subtle wiggle on focus for major buttons for dynamic vibe */
.cta-main:focus, .cta-header:focus, .cookie-btn:focus {
  animation: wiggle 0.24s ease-in-out 1;
  outline: none;
}
@keyframes wiggle {
  0% { transform: rotate(0deg); }
  23% { transform: rotate(-3deg); }
  52% { transform: rotate(4deg); }
  77% { transform: rotate(-1.5deg); }
  100%{ transform: rotate(0deg); }
}

/* =================== END ================== */
