/* CSS 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,
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3F9F4;
  color: #23332F;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
*:focus {
  outline: 2px dashed #25613B;
  outline-offset: 2px;
}

/* BRAND COLORS */
:root {
  --primary: #25613B;
  --secondary: #6DB287;
  --accent: #F3F9F4;
  --danger: #E14657;
  --warning: #FDB758;
  --info: #6AC8E4;
  --gray: #BFD0C1;
  --white: #fff;
  --black: #222;
  --brand-yellow: #F9B800;
  --brand-blue: #59A9E3;
  --brand-pink: #F984C7;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--secondary);
  font-weight: 700;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li {
  font-size: 1rem;
  color: #23332F;
}

strong {
  color: var(--primary);
  font-weight: 700;
}

/* TYPOGRAPHY SCALE FOR RESPONSIVENESS */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.05rem; }
}

/* SPACING & FLEXBOX LAYOUTS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 32px;
  box-shadow: 0 6px 24px 0 rgba(38, 97, 59, 0.05);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* FLEXBOX CONTAINERS AS REQUIRED */
.card-container,
.card-grid,
.feature-grid,
.category-grid,
.blog-post-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(38, 97, 59, 0.10);
  min-width: 220px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 6px 30px 0 rgba(108, 178, 135, 0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(38, 97, 59, 0.12);
  padding: 26px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-item:hover {
  box-shadow: 0 10px 34px 0 rgba(59, 169, 227, 0.14);
  transform: translateY(-8px) rotate(-1deg) scale(1.03);
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(59, 169, 227, 0.10);
}

@media (max-width: 900px) {
  .feature-grid,
  .card-container,
  .category-grid,
  .blog-post-grid,
  .content-grid {
    gap: 16px;
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .feature-grid,
  .category-grid,
  .blog-post-grid,
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(110deg, #F9B800 15%, #F3F9F4 85%);
  border-radius: 0 0 36px 36px;
  padding-top: 50px;
  margin-bottom: 60px;
  box-shadow: 0 10px 28px 0 rgba(106, 200, 228, .14);
  animation: popSlide 1.1s cubic-bezier(.6,-0.24,.26,1.33) 1;
}
@keyframes popSlide {
  0% { opacity: 0; transform: translateY(-40px) scale(.97); }
  70% { opacity: .6; }
  100% { opacity: 1; transform: none; }
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--primary);
  text-shadow: 1px 4px 8px rgba(255,185,0,0.07);
  margin-bottom: 18px;
  text-align: left;
}
.hero p {
  max-width: 500px;
  font-size: 1.2rem;
  margin-bottom: 28px;
}
.hero .cta {
  margin-top: 16px;
}

@media (max-width:768px) {
  .hero {
    padding-top: 24px;
    margin-bottom: 36px;
    border-radius: 0 0 24px 24px;
  }
  .container { padding-left: 8px; padding-right: 8px; }
}

/* HEADER & NAVIGATION STYLES */
header {
  width: 100%;
  background: var(--white);
  padding: 10px 0 10px 0;
  box-shadow: 0 2px 18px 0 rgba(38,97,59,0.05);
  z-index: 20;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  margin-left: 18px;
}
header .main-nav {
  display: flex;
  gap: 14px;
  margin-left: 36px;
  flex: 1;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  transition: background 0.14s, color 0.14s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-pink);
  color: var(--white);
}

.cta.primary {
  background: var(--brand-pink);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 34px;
  font-size: 1.05rem;
  border-radius: 30px;
  transition: background 0.18s, transform 0.17s;
  margin-left: 38px;
  box-shadow: 0 2px 10px 0 rgba(233, 70, 87, 0.08);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-yellow);
  color: var(--primary);
  transform: scale(1.06) rotate(-2deg);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-pink);
  color: var(--white);
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
  z-index: 40;
  transition: background 0.16s, color 0.18s, transform 0.17s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: var(--brand-yellow);
  color: var(--primary);
}
@media (max-width: 1024px) {
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 54px 24px 36px 24px;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.6,-0.04,.37,1.23);
  box-shadow: 0 8px 32px rgba(38,97,59,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 16px;
  background: var(--brand-yellow);
  color: var(--primary);
  border: none;
  border-radius: 14px;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.13s, color 0.14s, transform 0.14s;
}
.mobile-menu-close:hover {
  background: var(--brand-pink);
  color: var(--white);
  transform: rotate(-18deg) scale(1.04);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  padding: 10px 0;
  border-radius: 18px;
  transition: background 0.12s, color 0.1s, transform 0.12s;
  width: 100%;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-pink);
  color: var(--white);
}

@media (max-width: 650px) {
  .mobile-menu {
    padding-left: 8px; padding-right: 8px;
  }
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  width: 100%;
  margin-top: 60px;
  padding: 30px 0 16px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 24px rgba(38,97,59,0.04);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--brand-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.14s;
}
.footer-nav a:hover {
  color: var(--brand-pink);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}
.footer-contact p {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width:800px) {
  .footer-content {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 0 10px;
  }
}

/* USP / LIST STYLES / MISC */
.usp-list, .usps-list, .highlight-list, .values-list ul, .team-intro ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}
.usp-list li, .usps-list li, .values-list li, .team-intro li {
  background: var(--brand-blue);
  color: #fff;
  padding: 8px 20px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 8px;
  box-shadow: 0 1px 6px 0 rgba(38,97,59,0.08);
  animation: jumpy 0.6s cubic-bezier(.36,1.04,.68,.97) alternate infinite;
}
@keyframes jumpy {
  0%   { transform: translateY(0) scale(1); }
  8%   { transform: translateY(-3px) scale(1.03); }
  25%  { transform: translateY(1px) scale(0.99);}
  100% { transform: translateY(0) scale(1); }
}

.topic-filters {
  display: flex;
  gap: 13px;
  margin-bottom: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.filter {
  background: var(--brand-yellow);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 5px 12px;
  border-radius: 12px;
  font-weight: 700;
  transition: background 0.14s, color 0.13s;
  cursor: pointer;
}
.filter:hover {
  background: var(--brand-pink);
  color: #fff;
}

/* CARD & BLOG POST STYLES */
.blog-post-grid {
  gap: 24px;
  margin-bottom: 24px;
}
.blog-post {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px 0 rgba(249,184,0,.07);
  padding: 26px 22px 22px 22px;
  min-width: 210px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, transform 0.13s;
  position: relative;
}
.blog-post:hover {
  box-shadow: 0 9px 32px 0 rgba(249,184,0,0.18);
  transform: rotate(1.5deg) scale(1.03);
}
.blog-post h3 {
  font-size: 1.18rem;
  color: var(--brand-pink);
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-post a {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: underline;
  margin-top: 8px;
}
.blog-post a:hover {
  color: var(--brand-yellow);
}

/* CTA SECTION */
.cta {
  background: var(--brand-yellow);
  color: var(--primary);
  border: none;
  padding: 15px 38px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 8px rgba(249, 184, 0, 0.12);
  cursor: pointer;
  margin-top: 14px;
  transition: background 0.17s, color 0.13s, transform 0.15s;
  outline: none;
}
.cta:hover, .cta:focus {
  background: var(--brand-pink);
  color: #fff;
  transform: scale(1.04) rotate(-1deg);
}

.cta-section {
  background: var(--brand-blue);
  color: #fff;
  text-align: center;
  padding: 40px 0;
  border-radius: 28px;
  margin-bottom: 40px;
}

/* TESTIMONIAL STYLES */
.testimonials {
  background: #fffde8;
  border-radius: 35px;
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 18px rgba(249,184,0,0.09);
  min-width: 240px;
  flex: 1 1 320px;
  margin-bottom: 20px;
}
.testimonial-rating {
  display: flex;
  flex-direction: row;
  gap: 3px;
  align-items: center;
  margin-bottom: 4px;
}
.testimonial-rating img {
  width: 24px;
  height: 24px;
}
.testimonial-user {
  font-weight: 600;
  color: var(--brand-blue);
  font-size: 0.97rem;
  margin-top: 6px;
  border-top: 1px dashed var(--gray);
  padding-top: 7px;
  letter-spacing: 0.02em;
}

/* CATEGORY ITEMS FOR RECIPES */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.category-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 12px 0 rgba(59, 169, 227, 0.13);
  padding: 24px;
  min-width: 220px;
  margin-bottom: 20px;
  align-items: center;
  transition: box-shadow 0.12s, transform 0.13s;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.category-item:hover {
  box-shadow: 0 8px 32px 0 rgba(255,152,199,0.16);
  transform: translateY(-4px) rotate(1deg) scale(1.04);
}


/* SECTION/MISCELLANEOUS PATTERNS */
.milestones ul,
.recipe-highlights ul,
.nutrition-info-labels ul,
.infographics ul,
.quick-guides ul,
.featured-articles-list ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 12px;
}

.values-list h3, .team-intro h3 {
  margin-top: 18px;
  color: var(--brand-blue);
  font-weight: 700;
}
.milestones h3, .recipe-highlights h3, .nutrition-info-labels h3, .infographics h3, .quick-guides h3, .featured-articles-list h3 {
  color: var(--brand-yellow);
  font-weight: 800;
  font-size: 1.13rem;
  margin-bottom: 7px;
}

/* CONTACT SECTION */
.contact {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 15px 0 rgba(59,169,227,0.09);
  margin-bottom: 60px;
}
.address-info, .phone-email-info, .opening-hours, .contact-note {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-email-info a {
  color: var(--brand-blue);
  text-decoration: underline;
  transition: color 0.13s;
}
.phone-email-info a:hover {
  color: var(--brand-yellow);
}

/* LEGAL SECTIONS */
.legal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 12px rgba(38,97,59,0.08);
  margin-bottom: 40px;
  padding: 36px 20px;
}
.legal h1, .legal h2 {
  color: var(--primary);
}
.legal a {
  color: var(--brand-blue);
  text-decoration: underline;
}
.legal a:hover {
  color: var(--brand-pink);
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  .footer-content,
  .feature-grid,
  .category-grid,
  .blog-post-grid,
  .testimonial-slider,
  .usp-list, .usps-list {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 12px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
  }
  .footer-content {
    align-items: flex-start;
    gap: 16px;
    padding: 0 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  .section, .legal {
    border-radius: 16px;
    padding: 8px 0;
  }
  .hero {
    padding-top: 16px;
    border-radius: 0 0 12px 12px;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .feature-item, .category-item, .blog-post, .testimonial-card {
  transition: box-shadow 0.13s, transform 0.13s, background 0.17s;
}
.card:hover, .feature-item:hover, .category-item:hover, .blog-post:hover {
  filter: brightness(1.05);
}

/* BUTTON STYLES - GENERAL */
button {
  appearance: none;
  border: none;
  border-radius: 18px;
  padding: 12px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: var(--brand-yellow);
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 1px 7px 0 rgba(249,184,0,0.09);
  transition: background 0.14s, color 0.13s, transform 0.13s;
}
button:active, button:hover {
  background: var(--brand-pink);
  color: #fff;
  transform: scale(1.01) rotate(-1deg);
}


/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe1;
  color: var(--primary);
  box-shadow: 0 -3px 24px rgba(249,184,0,0.10);
  z-index: 9999;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  animation: bannerIn 0.6s cubic-bezier(.67,-0.15,.28,1.17);
}
@keyframes bannerIn {
  0% { transform: translateY(160px); opacity: 0.5; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner button {
  margin: 0 7px;
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  background: var(--brand-yellow);
  color: var(--primary);
  transition: background 0.13s, color 0.13s, transform 0.13s;
  cursor: pointer;
}
.cookie-banner button.accept {
  background: var(--brand-blue);
  color: #fff;
}
.cookie-banner button.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-banner button.settings {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-banner button:hover {
  transform: scale(1.05);
}

/***** COOKIE MODAL *****/
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,34,34,0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11000;
  animation: modalIn 0.18s cubic-bezier(.36,1.04,.68,.97);
}
@keyframes modalIn {
  0% { opacity: 0; transform: scale(.93); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(59,169,227,0.16);
  padding: 28px 20px 22px 24px;
  min-width: 320px;
  max-width: 96vw;
  max-height: 88vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
  font-weight: 800;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
.cookie-category label {
  flex: 1;
  font-size: 1.02rem;
  color: var(--primary);
}
.cookie-category input[type=checkbox] {
  width: 24px;
  height: 24px;
  accent-color: var(--brand-blue);
  margin-right: 5px;
}
.cookie-category.essential label {
  color: var(--secondary);
  font-weight: 700;
}
.cookie-preferences-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 18px;
  background: var(--danger);
  color: #fff;
  border: none;
  border-radius: 15px;
  width: 40px;
  height: 40px;
  font-size: 1.45rem;
  cursor: pointer;
}
.cookie-modal-close:hover {
  background: var(--brand-pink);
}

@media (max-width: 630px) {
  .cookie-modal-content {
    min-width: 95vw;
    padding: 16px 4px 10px 10px;
  }
}

/* ACCESSIBILITY UTILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* MISC ANIMATIONS */
@keyframes buttonBounce {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.06) rotate(-2deg); }
  50%  { transform: scale(0.98) rotate(1deg); }
  75%  { transform: scale(1.04); }
  100% { transform: scale(1) rotate(0); }
}
.cta, button {
  animation: buttonBounce 3.5s infinite cubic-bezier(.5,1.8,.4,-0.7);
  animation-delay: 1.2s;
}

/* VISUAL FLAIR - SHAPES & DECORATION */
.hero::before {
  content: '';
  position: absolute;
  top: -35px; left: 6vw;
  width: 110px; height: 110px;
  background: var(--brand-pink);
  opacity: .14;
  border-radius: 50%;
  z-index: 0;
  filter: blur(2px);
  pointer-events: none;
  animation: bgShapeFloat 4s infinite linear;
}
@keyframes bgShapeFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(14px); }
  100% { transform: translateY(0); }
}

/* Disable grid, columns, break-inside – for compliance */
/* Intentionally omitted – only flexbox used! */
