/* =============================
   CSS RESET & NORMALIZATION
============================= */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background: #fafbfc; color: #181a23; }
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
a { background: transparent; color: inherit; text-decoration: none; }
img { border: 0; max-width: 100%; display: inline-block; vertical-align: middle; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: none; outline: none; }
button { cursor: pointer; }
strong { font-weight: bold; }

/* =============================
   BRAND TYPOGRAPHY
============================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --color-primary: #1A237E;
  --color-secondary: #42A5F5;
  --color-accent: #FFD740;
  --color-bg: #fafbfc;
  --color-dark: #181a23;
  --color-light: #fff;
  --color-border: #e3e5e9;
  --color-neutral: #f1f3f6;
  --radius-card: 18px;
  --radius-btn: 8px;
  --shadow-1: 0 2px 8px rgba(26,35,126,0.07);
  --shadow-2: 0 4px 18px rgba(26,35,126,0.12);
  --transition: 0.22s cubic-bezier(.48,.13,.43,.87);
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--color-dark);
  background: var(--color-bg);
  line-height: 1.65;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.12; margin-bottom: 16px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: 1.4rem; line-height: 1.24; margin-bottom: 12px; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }
p, li, .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
}
p, ul, ol { margin-bottom: 16px; }
.subheadline {
  color: var(--color-secondary);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: 0.01em;
}

/* =============================
   CONTAINER & FLEX LAYOUTS
============================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.header-flex, .footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
  padding: 24px 28px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  border: 1.5px solid var(--color-border);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features-grid, .course-list, .pricing-table, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid .feature {
  background: var(--color-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1.5px solid var(--color-border);
}
.features-grid .feature:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-2px) scale(1.03);
}
.feature img,
.testimonial-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.course-list, .pricing-table, .blog-list {
  width: 100%;
  gap: 24px;
}
.course-item, .pricing-item, .blog-post {
  background: var(--color-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
  padding: 28px 24px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  border: 1.5px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.course-item:hover, .pricing-item:hover, .blog-post:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-3px) scale(1.025);
}

/* Pseudo-grids for more structured/ geometric layout on desktop */
@media (min-width: 981px) {
  .features-grid, .course-list, .pricing-table, .blog-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .features-grid .feature, .course-item, .pricing-item, .blog-post {
    max-width: 320px;
  }
}

/* =============================
   BUTTONS & LINKS
============================= */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  box-shadow: 0 3.5px 15px rgba(255,215,64,0.13);
  letter-spacing: 0.04em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  border: none;
  margin: 8px 0;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(26, 35, 126, .09);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--color-primary);
  opacity: 0.82;
  transition: color 0.15s, opacity 0.13s;
  padding: 2px 6px;
  border-radius: 5px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
  opacity: 1;
  background: var(--color-neutral);
}

a {
  transition: color 0.13s;
}
a:focus { outline: 2px dashed var(--color-primary); outline-offset: 2px; }

/* Blog Read More link */
.blog-post a {
  align-self: flex-start;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: underline;
  margin-top: 4px;
  font-size: 0.98rem;
  transition: color 0.14s, transform 0.14s;
}
.blog-post a:hover { color: var(--color-primary); transform: translateX(4px); }

/* =============================
   HERO BLOCKS
============================= */
.hero {
  background: var(--color-primary);
  color: #fff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 20px 35px -8px rgba(26,35,126,0.09);
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
  text-align: center;
}
.hero h1,
.hero h2,
.hero h3 {
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 2.5px 12px rgba(26,35,126,0.18);
}
.hero .cta-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* =============================
   TESTIMONIALS
============================= */
.testimonials {
  padding: 0 0 50px 0;
}
.testimonial-card {
  color: #262927;
  background: #fff;
  box-shadow: var(--shadow-1);
  border-left: 8px solid var(--color-secondary);
  border-radius: var(--radius-card);
  font-size: 1.1rem;
  margin-bottom: 20px;
  min-width: 300px;
  max-width: 650px;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-3px) scale(1.022);
}
.testimonial-card strong {
  color: var(--color-primary);
  font-weight: 700;
}
.stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}
.stars img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 1px #ffd740aa);
}

/* Success / numbers blocks */
.success-numbers ul,
.success-stories ul,
.learning-outcomes ul,
.method-list ul,
.course-highlights ul,
.feature-comparison ul,
.popular-tags ul,
.opening-hours ul,
.next-steps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 0;
}
.success-numbers li strong,
.success-stories li strong {
  color: var(--color-secondary);
}

/* =============================
   FOOTER
============================= */
footer {
  background: var(--color-primary);
  color: #fff;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -4px 14px rgba(26,35,126,0.07);
  margin-top: 70px;
  padding: 38px 0 28px 0;
  font-size: 1rem;
}
.footer-flex {
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.footer-flex a img {
  height: 50px;
  width: auto;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
  color: #eaf0fd;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  vertical-align: sub;
  filter: brightness(0) invert(1);
}

/* =============================
   RESPONSIVE DESIGN
============================= */
@media (max-width: 980px) {
  .header-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .features-grid, .course-list, .pricing-table, .blog-list {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid .feature, .course-item, .pricing-item, .blog-post {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 42px 0;
    border-radius: 0 0 26px 26px;
  }
  .section {
    padding: 32px 6px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card-container, .features-grid, .course-list, .pricing-table, .blog-list {
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
    min-width: 0;
  }
}
@media (max-width: 520px) {
  .footer-contact {
    font-size: 0.93rem;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.05rem; }
}

/* =============================
   MOBILE BURGER MENU
============================= */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 24px;
  right: 22px;
  z-index: 1003;
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 10px;
  border: none;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--transition), background var(--transition);
  box-shadow: 0 2px 18px rgba(66,165,245,0.13);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
  outline: 2px solid var(--color-accent);
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  height: 100vh;
  width: 97vw;
  max-width: 410px;
  background: #fff;
  box-shadow: -6px 0px 38px 0 rgba(26,35,126,.13);
  transform: translateX(102vw);
  transition: transform 0.32s cubic-bezier(.83,.02,.23,.99);
  flex-direction: column;
  padding: 32px 22px 32px 32px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 2.1rem;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 8px;
  border: none;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1005;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--color-secondary);
  color: #fff;
  outline: 2px solid var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 64px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-primary);
  border-bottom: 2.5px solid transparent;
  padding: 10px 0 6px;
  border-radius: 4px;
  transition: color 0.12s, border-bottom 0.12s, background 0.11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: var(--color-neutral);
  border-bottom: 2.5px solid var(--color-secondary);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
============================= */
.cookie-banner {
  position: fixed;
  z-index: 2000;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  color: var(--color-dark);
  border-top: 3.5px solid var(--color-primary);
  box-shadow: 0 -4px 18px 0 rgba(66,165,245,0.14);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px 20px 26px;
  font-size: 1.02rem;
  transition: transform 0.33s cubic-bezier(.51,-0.09,.21,1.04), opacity 0.18s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 24px;
  margin-left: 4px;
  font-weight: 600;
  transition: background 0.14s, color 0.13s, transform 0.13s;
}
.cookie-btn.accept {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: #f34332;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  opacity: 1;
  transform: translateY(-2px) scale(1.03);
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-secondary);
  color: #fff;
}
/* Responsive for cookie banner */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 12px 16px 12px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
  }
}

/* =============================
   COOKIE MODAL POPUP
============================= */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(26,35,126,0.18);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 38px 0 rgba(66,165,245,0.16);
  min-width: 300px;
  max-width: 94vw;
  width: 440px;
  padding: 36px 28px 25px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  appearance: none;
  width: 48px;
  height: 24px;
  background: var(--color-neutral);
  border: 1.5px solid var(--color-secondary);
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(66,165,245,.09);
  transition: transform 0.18s;
}
.cookie-toggle:checked:before {
  transform: translateX(23px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 22px;
  right: 18px;
  background: var(--color-accent);
  color: var(--color-primary);
  width: 31px;
  height: 31px;
  border: none;
  border-radius: 100%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s, color 0.13s;
  z-index: 10;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-secondary);
  color: #fff;
}
@media (max-width: 480px) {
  .cookie-modal {
    width: 99vw;
    min-width: 0;
    padding: 18px 5vw 22px 5vw;
  }
}

/* =============================
   SPECIAL: STYLE PLACEHOLDERS/TEASER/ETC
============================= */
.about-image-placeholder, .map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 128px;
  background: repeating-linear-gradient(45deg, var(--color-neutral), var(--color-neutral) 12px, #e9edfa 12px, #e9edfa 24px);
  border-radius: var(--radius-card);
  margin-bottom: 18px;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.map-placeholder {
  min-height: 80px;
  height: 85px;
  background: repeating-linear-gradient(-45deg, var(--color-neutral), var(--color-neutral) 11px, #e9edfa 11px, #e9edfa 22px);
}
.early-bird-teaser {
  background: var(--color-accent);
  padding: 10px 20px;
  border-radius: 12px;
  color: var(--color-primary);
  font-weight: 700;
  display: inline-block;
  box-shadow: var(--shadow-1);
  margin-top: 20px;
  letter-spacing: 0.02em;
}
.confirmation-message {
  background: var(--color-neutral);
  padding: 14px 18px;
  border-left: 4px solid var(--color-secondary);
  border-radius: 0 12px 12px 0;
}
.next-steps ul {
  flex-direction: column;
  gap: 7px;
}
.popular-tags ul li {
  background: var(--color-neutral);
  color: var(--color-primary);
  border-radius: 7px;
  padding: 4px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* =============================
   FORMATTING LISTS AND TEXT-SECTIONS
============================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section ul, .text-section ol {
  padding-left: 20px;
  margin-bottom: 14px;
  gap: 6px;
}
.text-section li {
  list-style: disc inside;
  margin-bottom: 5px;
}

/* =============================
   CONTACT DETAILS
============================= */
.contact-details {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.company-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.05rem;
  min-width: 180px;
  max-width: 250px;
}
.company-details img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  filter: grayscale(0.5);
  vertical-align: sub;
}

@media (max-width: 720px) {
  .contact-details {
    flex-direction: column;
    gap: 13px;
  }
  .map-placeholder {
    min-width: 100%;
    width: 100%;
    min-height: 56px;
    height: 56px;
  }
}

.opening-hours ul li {
  list-style: circle inside;
  color: var(--color-primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  margin-bottom: 1px;
}

/* =============================
   ACCESSIBILITY & VISUAL FOCUS
============================= */
a:focus, button:focus, input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1.5px;
}

/* =============================
   MICRO-INTERACTIONS
============================= */
h1, h2, h3, .cta-primary, .main-nav a, .mobile-nav a, .footer-nav a, .features-grid .feature, .card, .pricing-item, .blog-post, .testimonial-card, .cookie-btn, .cookie-modal {
  transition: box-shadow 0.15s, color 0.15s, background 0.18s, transform 0.16s;
}
.testimonial-card:hover,
.pricing-item:hover,
.features-grid .feature:hover,
.blog-post:hover {
  transform: translateY(-3.5px) scale(1.022);
  box-shadow: var(--shadow-2);
}

/* =============================
   GEOMETRIC DECORATIVE SHAPES
============================= */
.hero:after {
  content: '';
  display: block;
  position: absolute;
  width: 110px;
  height: 110px;
  background: var(--color-accent);
  clip-path: polygon(70% 0%,100% 40%,100% 100%,0 100%,0% 30%);
  right: -22px;
  top: 0;
  opacity: 0.09;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero:after { width: 65px; height: 65px; right: -8px; }
}

/* =============================
   PRINT STYLES (optional)
============================= */
@media print {
  header, footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
