/* =====================================================================
   TWILIGHT RUSH AKADEMIE – Structured Geometric Style (Flexbox Only)
   =====================================================================
   Brand Colors:
     Primary   #20415A (dark blue)
     Secondary #64A1C5 (light blue)
     Accent    #F3DDAE (soft gold)
   Fonts:
     Display:  'Montserrat', 'Arial', sans-serif
     Body:     'Open Sans', 'Arial', sans-serif
   ===================================================================== */

/* ========================
   RESET & NORMALIZE
   ======================== */
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,
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 { height: 100%; scroll-behavior: smooth; }
body { min-height: 100%; font-family: 'Open Sans', Arial, sans-serif; background: #fff; color: #20415A; line-height: 1.6; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; outline: none; }

/* Remove tap highlight */
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }

/* =============================
   TYPOGRAPHY & HEADINGS
   ============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #20415A;
  letter-spacing: 0.03em;
  line-height: 1.15;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 18px; }
h3 { font-size: 1.2rem; margin-bottom: 14px; }
p, li, small, span, label {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #20415A;
}
strong { font-weight: 700; font-family: inherit; color: #20415A; }
small { font-size: 0.95em; color: #46647D; }

@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.4rem; }
}

/* ==============
   STRUCTURE
   ============== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

main > section:first-child {
  margin-top: 24px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

/* ========================
   HEADER / NAVIGATION
   ======================== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2.5px solid #20415A;
  box-shadow: 0 2px 12px 0 rgba(32,65,90,0.05);
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
.brand-logo img { height: 44px; width: auto; }
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: 14px;
}
.main-nav a {
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  color: #20415A;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 0;
  transition: color 0.2s;
}
.main-nav a:after {
  content: "";
  display: block;
  height: 2.5px;
  width: 0;
  background: #64A1C5;
  border-radius: 1px;
  transition: width 0.22s cubic-bezier(0.34,1.56,0.64,1), background 0.2s;
  margin: 2.6px auto 0 auto;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #64A1C5;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%; background: #20415A;
}
.primary-cta {
  display: inline-flex;
  align-items: center;
  background: #64A1C5;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 38px;
  box-shadow: 0 6px 18px -2px rgba(100,161,197,0.18);
  margin-left: 16px;
  border: 2px solid #64A1C5;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.19s;
}
.primary-cta:hover, .primary-cta:focus {
  background: #20415A;
  color: #F3DDAE;
  box-shadow: 0 10px 24px -8px rgba(32,65,90,0.20);
  border-color: #20415A;
}
.secondary-cta {
  display: inline-flex;
  align-items: center;
  border: 2px solid #20415A;
  color: #20415A;
  background: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 38px;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: background 0.17s, color 0.17s, border 0.22s;
  cursor: pointer;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #F3DDAE;
  color: #20415A;
  border-color: #64A1C5;
}

/* ================
   MOBILE NAV
   ================ */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 250;
  right: 18px;
  top: 22px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  background: #20415A;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(32,65,90,0.10);
  transition: background 0.15s, color 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #64A1C5;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #20415A;
  color: #fff;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.48,.16,.46,1.19);
  box-shadow: 4px 0 24px 0 rgba(32,65,90,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 28px;
  top: 22px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 800;
  border-radius: 10px;
  transition: background 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #64A1C5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 100px;
  width: 100%;
  align-items: flex-start;
  padding-left: 35px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.18s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #64A1C5;
  color: #F3DDAE;
}

@media (min-width: 900px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
  header .main-nav, header .primary-cta {
    display: flex !important;
  }
}
@media (max-width: 899px) {
  header .main-nav, header .primary-cta {
    display: none !important;
  }
  .mobile-menu-toggle { display: flex !important; }
}

/* ==========================
   HERO SECTION
   ========================== */
.hero {
  background: #20415A;
  color: #fff;
  border-radius: 0 0 56px 56px;
  box-shadow: 0 8px 32px -8px rgba(32,65,90,0.10);
  min-height: 260px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding-top: 44px;
  padding-bottom: 44px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 16px;
}
.hero h1, .hero p {
  color: #fff;
  text-align: center;
}
.hero .primary-cta {
  margin-top: 18px;
}

/* ========================
   FEATURE & SERVICE LISTS
   ======================== */
.features, .services, .about, .team, .contact-section, .legal, .faq, .confirmation {
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 4px 22px -7px rgba(32,65,90,0.10);
  margin-bottom: 48px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 2px;
  align-items: stretch;
}
.feature-grid li {
  background: #F3DDAE;
  border-radius: 18px;
  box-shadow: 0 3px 12px 0 rgba(32,65,90,0.08);
  padding: 22px 18px 18px 18px;
  min-width: 180px;
  max-width: 260px;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #20415A;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 2.2px solid #64A1C5;
  transition: box-shadow 0.18s, border 0.18s;
}
.feature-grid li:hover, .feature-grid li:focus {
  box-shadow: 0 6px 24px -6px rgba(100,161,197,0.23);
  border-color: #20415A;
}
.feature-grid img {
  height: 36px; width: 36px; margin-bottom: 3px;
  filter: drop-shadow(0 2px 8px rgba(32,65,90,0.11));
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-list li {
  background: #F8F8F8;
  border-radius: 14px;
  border-left: 8px solid #64A1C5;
  box-shadow: 0 2px 8px 0 rgba(100,161,197,0.07);
  padding: 22px 18px;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  position: relative;
}
.service-list strong { color: #20415A; font-family: 'Montserrat', Arial, sans-serif; font-size: 1.11rem; }
.service-list span { color: #46647D; font-size: 0.96rem; }

/* =======================
   CARDS, GRIDS, TESTIMONIALS
   ======================= */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px 0 rgba(32,65,90,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, border 0.19s;
  min-width: 220px; max-width: 340px;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px -7px rgba(32,65,90,0.16);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ==========================
   TESTIMONIALS & RATINGS
   ========================== */
.testimonials {
  background: #F8FAFC;
  border-radius: 34px;
  box-shadow: 0 8px 32px -8px rgba(32,65,90,0.12);
  padding: 42px 20px;
}
.testimonials .content-wrapper {
  gap: 22px;
  align-items: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(32,65,90,0.10);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 22px;
  max-width: 560px;
  border-left: 7px solid #64A1C5;
  position: relative;
  transition: box-shadow 0.16s, border-left 0.18s;
}
.testimonial-card p {
  color: #20415A;
  font-size: 1.05rem;
  margin-bottom: 0;
  line-height: 1.4;
}
.testimonial-card strong { color: #20415A; font-size: 1.1rem; }
.testimonial-card span {
  color: #46647D;
  font-size: 0.99rem;
  margin-left: 14px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 28px -7px rgba(100,161,197,0.17);
  border-left: 7px solid #20415A;
}
.rating-summary {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20415A;
  font-weight: 700;
  font-size: 1.17rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.rating-summary img { filter: drop-shadow(0 1.5px 3px rgba(243,221,174,0.9)); height: 22px; }

/* Ensure readability (dark text on light back) */
.testimonial-card, .testimonials .content-wrapper p {
  background: #fff;
  color: #20415A;
}

/* =====================
   CONTACT SECTION / MAP
   ===================== */
.contact-summary ul, .contact-section ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 22px 0;
}
.contact-summary li, .contact-section li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.07rem;
}
.contact-summary img, .contact-section img {
  height: 28px;
  width: 28px;
}
.map-placeholder {
  background: #F3DDAE;
  color: #20415A;
  border-radius: 12px;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 10px;
  letter-spacing: 0.01em;
  text-align: left;
}

/* =====================
   FAQ (Kontakt-Page)
   ===================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #F8F8F8;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 2px 7px 0 rgba(32,65,90,0.06);
  margin-bottom: 6px;
  border-left: 7px solid #F3DDAE;
}
.faq-accordion strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  color: #20415A;
}
.faq-accordion p { margin-top: 5px; color: #46647D; }

/* ===================
   FOOTER
   =================== */
footer {
  background: #20415A;
  color: #fff;
  border-radius: 56px 56px 0 0;
  box-shadow: 0 -1px 24px 0 rgba(32,65,90,0.09);
  padding: 36px 0 14px 0;
  margin-top: 45px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.footer-top {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.footer-top img {
  height: 40px;
  width: auto;
  filter: grayscale(0%) drop-shadow(0 2px 7px #64A1C5);
}
.brand-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F3DDAE;
  font-weight: 700;
  font-size: 1.03rem;
  letter-spacing: 0.03em;
}
.footer-nav, .legal-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.footer-nav a, .legal-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  padding: 6px 2px;
  border-radius: 4px;
  transition: color 0.18s, background 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus, .legal-nav a:hover, .legal-nav a:focus {
  color: #F3DDAE;
  background: #64A1C5;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.footer-social a img {
  height: 25px; width: 25px;
  filter: brightness(1.2) drop-shadow(0 2px 5px #F3DDAE);
  transition: filter 0.16s, transform 0.16s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(1.4) drop-shadow(0 2px 9px #64A1C5);
  transform: scale(1.09) rotate(-6deg);
}
.footer-bottom {
  width: 100%;
  text-align: center;
  color: #C7D2DE;
  font-size: 0.98rem;
  margin-top: 16px;
}

/* =============
   LEGAL PAGES
   ============= */
.legal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 14px 0 rgba(32,65,90,0.10);
  padding: 36px 24px;
  color: #20415A;
}
.legal h1, .legal h2 {
  margin-bottom: 16px;
}
.legal ul {
  list-style: disc inside;
  margin: 14px 0 14px 16px;
}

/* ===========
   CONFIRMATION
   =========== */
.confirmation {
  text-align: center;
  margin: 0 auto;
  padding-top: 54px;
  padding-bottom: 65px;
}
.confirmation h1 {
  color: #20415A;
  margin-bottom: 26px;
  font-size: 2.15rem;
}
.confirmation p {
  color: #46647D;
  font-size: 1.13rem;
  margin-bottom: 23px;
}

/* =====================================
   COOKIE CONSENT BANNER & MODAL
   ===================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: #20415A;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 30px 18px 22px 18px;
  box-shadow: 0 -2px 16px 0 rgba(32,65,90,0.14);
  border-radius: 20px 20px 0 0;
  width: 100%;
  font-size: 1.05rem;
  animation: cookie-drop 0.4s;
}
@keyframes cookie-drop {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-top: 6px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 28px;
  padding: 10px 24px;
  margin: 0;
  border: none;
  outline: none;
  background: #64A1C5;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.14s, color 0.14s;
  min-width: 120px;
  box-shadow: 0 2px 12px 0 rgba(100,161,197,0.09);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F3DDAE; color: #20415A;
}
.cookie-btn.reject {
  background: #F3DDAE; color: #20415A;
  border: 2px solid #64A1C5;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #20415A; color: #fff;
}
.cookie-btn.settings {
  background: #20415A; color: #F3DDAE;
  border: 2px solid #F3DDAE;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #64A1C5; color: #fff;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,65,90,0.33);
  z-index: 10050;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookie-modal-fade 0.24s;
}
@keyframes cookie-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #20415A;
  border-radius: 22px;
  box-shadow: 0 8px 36px -7px rgba(32,65,90,0.23);
  max-width: 420px;
  width: 93vw;
  padding: 36px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.17rem;
  font-weight: 700;
  color: #20415A;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #EEE;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1rem;
  color: #20415A;
  font-family: 'Open Sans';
  font-weight: 600;
}
.cookie-toggle {
  width: 38px; height: 22px;
  background: #F3DDAE;
  border: 1.5px solid #64A1C5;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-toggle input {
  opacity: 0; width: 0; height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #64A1C5;
  border-radius: 50%;
  transition: left 0.14s, background 0.12s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 18px;
  background: #20415A;
}
.cookie-modal .cookie-btn {
  margin-top: 18px;
  font-size: 1.07rem;
  width: 100%;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: #64A1C5;
  font-size: 1.46rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 22px;
  transition: background 0.13s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  background: #F3DDAE;
}

/* ===================
   RESPONSIVE DESIGN
   =================== */
@media (max-width: 900px) {
  .container { padding-left: 13px; padding-right: 13px; }
  .footer-nav, .legal-nav { gap: 11px; }
  .footer-social { gap: 10px; }
  .feature-grid { gap: 16px; }
}
@media (max-width: 768px) {
  /* Switch to single-column */
  .content-grid, .card-container, .card-grid, .feature-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .footer-top {
    flex-direction: column;
    gap: 8px;
  }
  .hero {
    border-radius: 0 0 36px 36px;
    padding: 28px 0 28px 0;
  }
  .features, .services, .about, .team, .testimonials, .contact-section, .legal, .confirmation {
    padding: 18px 6px;
    border-radius: 10px;
  }
  .map-placeholder { padding: 12px; font-size: 0.99rem; }
  .testimonial-card { border-radius: 12px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .service-list { gap: 11px; }
}
@media (max-width: 500px) {
  .container { padding-left: 3vw; padding-right: 3vw; }
  .hero { min-height: 0; border-radius: 0 0 20px 20px; }
  .footer-top img { height: 28px; }
}

/* ===================
   ANIMATIONS
   =================== */
.card, .testimonial-card, .feature-grid li {
  will-change: transform, box-shadow;
  transition: transform 0.14s, box-shadow 0.16s, border 0.12s;
}
.card:hover, .card:focus, .feature-grid li:hover, .feature-grid li:focus, .testimonial-card:hover, .testimonial-card:focus {
  transform: translateY(-2px) scale(1.015) skewX(-1deg);
  box-shadow: 0 14px 30px -14px #64A1C5;
}
.primary-cta, .secondary-cta, .cookie-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.14s, border 0.14s;
}

/* ==========================
   GEOMETRIC DECORATION
   ========================== */
.section {
  position: relative;
  overflow: visible;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -25px; left: 16px;
  width: 65px; height: 18px;
  background: #64A1C5;
  opacity: 0.13;
  border-radius: 8px 30px 16px 36px;
  transform: rotate(-3deg) skewX(-12deg);
  z-index: 0;
  pointer-events: none;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -15px; right: 18px;
  width: 38px; height: 13px;
  background: #F3DDAE;
  opacity: 0.12;
  border-radius: 10px 16px 34px 8px;
  transform: rotate(9deg) skewX(14deg);
  z-index: 0;
  pointer-events: none;
}

/* ===========================
   UTILS (Spacing/Alignment)
   =========================== */
.mb-0 { margin-bottom: 0!important; }
.mb-8 { margin-bottom: 8px!important; }
.mb-20 { margin-bottom: 20px!important; }
.mt-20 { margin-top: 20px!important; }
.gap-20 { gap: 20px!important; }
.mt-40 { margin-top: 40px!important; }

/* =============================
   PRINT FRIENDLY (OPTIONAL)
   ============================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .container { padding: 0; }
  .section, .hero, .features, .about, .legal {
    box-shadow: none; border-radius: 0; background: #fff; color: #222;
  }
}
