/* --- 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFF8F1;
  color: #274A2B;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
body, p, ul, ol, li, label, input, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
h1 { font-size: 2.6rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.3rem; line-height: 1.25; margin-bottom: 14px; }
p, li { font-size: 1rem; margin-bottom: 10px; }

@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.5rem; }
  p, li { font-size: 1.1rem; }
}

/* --- COLORS --- */
:root {
  --primary: #274A2B;
  --secondary: #4984A6;
  --accent: #F9D896;
  --white: #FFFFFF;
  --light-bg: #FFF8F1;
  --error: #E85D75;
  --shadow: rgba(73,132,166,0.1);
  --focus: #E6C972;
  --testimonials-bg: #FAFAFA;
}

/* --- SPACING & LAYOUT (Flexbox Only) --- */
.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: 1160px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--light-bg);
  border-radius: 24px; /* for playful feel */
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  background: var(--white);
  padding: 24px 20px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(73,132,166,0.18);
  transform: translateY(-6px) scale(1.02) rotate(-1deg);
}
.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) {
  .text-image-section { flex-direction: column; }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--testimonials-bg);
  box-shadow: 0 2px 12px rgba(39,74,43,0.06);
  border-radius: 18px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 360px;
  flex: 1 1 260px;
}
.testimonial-meta {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.96rem;
  margin-top: 8px;
}
.testimonial-meta span {
  color: #FFC700;
  font-size: 1.1em;
  letter-spacing: 2px;
  font-family: 'Oswald';
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(39,74,43,0.06);
  padding: 24px 18px;
  flex: 1 1 190px;
  transition: box-shadow 0.2s, transform 0.1s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(249,216,150,0.13);
  transform: translateY(-4px) scale(1.028);
}
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.category-teasers, .category-menu, .guides-grid, .post-grid, .product-cards, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width:600px) {
  .category-teasers, .category-menu, .guides-grid, .post-grid, .product-cards, .team-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid, .testimonial-list {
    flex-direction: column;
  }
}

/************************
NAVIGATION + HEADER
*************************/
header {
  background: var(--primary);
  color: var(--white);
  width: 100%;
  padding: 0 0 0 0;
  position: relative;
  box-shadow: 0 2px 6px rgba(39,74,43,0.06);
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 70px;
}
header a img {
  height: 46px;
  margin-right: 10px;
  transition: transform 0.22s cubic-bezier(.9,-0.25,.51,1.34);
}
header a img:hover {
  transform: rotate(-7deg) scale(1.07);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-left: 12px;
}
.main-nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 6px 16px;
  border-radius: 16px;
  transition: background 0.15s, color 0.2s;
  display: inline-block;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  left: 2px;
}
.cta-primary {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Oswald',sans-serif;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 28px;
  font-size: 1.15rem;
  margin-left: auto;
  margin-right: 9px;
  border:none;
  box-shadow: 0 2px 5px rgba(249,216,150,0.16);
  transition: background 0.15s, color 0.2s, box-shadow 0.18s, transform 0.13s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--secondary);
  color: var(--accent);
  box-shadow: 0 6px 24px #4984A655;
  transform: translateY(-3px) rotate(-2deg) scale(1.033);
}
.cta-secondary {
  background: var(--secondary);
  color: var(--white);
  font-family: 'Oswald',sans-serif;
  border-radius: 24px;
  padding: 9px 22px;
  font-weight: 600;
  margin-top: 2px;
  display: inline-block;
  transition: background 0.18s, color 0.16s, transform 0.11s;
}
.cta-secondary:hover {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.045);
}
/main-nav, .cta-primary, .cta-secondary {
  font-family: 'Oswald', Arial, sans-serif;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.15s, transform 0.13s;
  z-index: 30;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--accent);
  transform: scale(1.13) rotate(-12deg);
}
@media (min-width: 950px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.main-nav {
  display: flex;
}
@media (max-width: 949px) {
  .main-nav { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: var(--white);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.51,.71,.29,.91);
  display: flex;
  flex-direction: column;
  opacity: 0.98;
  box-shadow: 0 8px 24px rgba(39,74,43,0.14);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 2rem;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  box-shadow: 0 2px 10px #F9D89644;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.14s, transform 0.11s;
  cursor: pointer;
  z-index: 1100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--error);
  color: var(--white);
  transform: scale(1.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 110px 32px 32px 32px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 16px;
  transition: background 0.15s, color 0.2s;
  width: 100%;
  display: block;
  margin-bottom: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  left: 2px;
}

/*********************************
 HERO, SECTIONS, CARDS, GRIDS
*********************************/
.hero {
  background: linear-gradient(120deg, var(--accent) 65%, var(--secondary) 100%);
  color: var(--primary);
  margin-bottom: 44px;
  border-radius: 0 0 46px 46px;
  box-shadow: 0 6px 36px #F9D89618;
  animation: hero-wave 1.7s 0.1s cubic-bezier(.76,.05,.87,.73) both;
}
@keyframes hero-wave {
  from { opacity: 0; transform: translateY(-32px) scaleY(1.06); }
  to { opacity: 1; transform: none; }
}
.hero .container, .hero .content-wrapper { align-items: center; justify-content: center; text-align: center; }
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  text-shadow: 0 4px 12px rgba(255,255,255,0.19);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.hero p { color: var(--primary); margin-bottom: 18px; }

.features {
  background: var(--accent);
  border-radius: 36px;
}

.feature-item img {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--secondary);
  padding: 7px;
  margin-bottom: 2px;
  box-shadow: 0 1px 3px #274A2B24;
  animation: bop 2s infinite alternate;
}
@keyframes bop { 0% { transform: translateY(0); } 100% { transform: translateY(-5px) scaleX(.97); } }
.feature-item:hover img { animation: bop 0.4s 1; }

.products-listing .product-cards, .guides-grid, .blog-posts .post-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.product-card, .guide-card, .post-card, .team-member {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 20px 16px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.19s;
  margin-bottom: 20px;
  position: relative;
}
.product-card:hover, .guide-card:hover, .post-card:hover, .team-member:hover {
  box-shadow: 0 8px 26px #4984A633;
  transform: translateY(-3px) scale(1.025) rotate(1.5deg);
}
.category-menu a {
  background: var(--secondary);
  color: var(--white);
  padding: 9px 17px;
  border-radius: 21px;
  font-family: 'Oswald';
  font-size: 1.07rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 11px;
  transition: background 0.18s, color 0.17s, transform 0.13s;
  margin-bottom: 7px;
}
.category-menu a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.055);
}
.category-menu img { width: 32px; height: 32px; }
.guides-grid .guide-card a,
.product-card a,
.post-card a,
.team-member a {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.03rem;
  transition: color 0.15s;
}
.guides-grid .guide-card a:hover,
.product-card a:hover,
.post-card a:hover,
.team-member a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Blog tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.post-tags span {
  background: var(--accent);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 3px;
}

/* Guides/Category filters */
.category-filters, .product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
  margin-top: 2px;
}
.category-filters button, .product-filters select, .product-filters label {
  font-family: 'Roboto';
  font-size: 1.03rem;
  border-radius: 18px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  cursor: pointer;
  padding: 7px 18px;
  font-weight: 500;
  transition: background 0.13s, color 0.13s, transform 0.09s;
}
.category-filters button:hover, .product-filters select:focus {
  background: var(--secondary);
  color: var(--accent);
  transform: scale(1.07);
}
.product-filters label {
  margin-right: 5px;
  gap: 4px;
  display: flex;
  align-items: center;
}
.product-filters select {
  border-radius: 11px;
  padding: 5px 14px;
  border: none;
  font-size: 1rem;
  color: var(--primary);
  background: #F9D896;
  margin-left: 7px;
}

/*************************
 TEXT & CONTENT
**************************/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.text-section h3 {
  margin-top: 10px;
  margin-bottom: 7px;
  color: var(--secondary);
  font-size: 1.19rem;
}

.core-values-list {
  margin-bottom: 20px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.core-values-list li {
  position: relative;
  padding-left: 22px;
  font-size: 1.07rem;
}
.core-values-list li:before {
  content: '★';
  color: var(--accent);
  font-size: 1.07em;
  position: absolute;
  left: 0;
  top: 0;
}

.sustainability-highlight {
  background: #F5FDF6;
  border-left: 6px solid var(--secondary);
  padding: 17px 20px;
  border-radius: 13px;
  box-shadow: 0 0px 10px #4984A612;
}

/* Map/Location styling */
.map-location {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 18px;
  background: var(--accent);
  color: var(--primary);
  padding: 16px 20px;
  border-radius: 19px;
}
.map-location img {
  width: 38px; height: 38px;
  background: var(--secondary);
  border-radius: 10px;
  padding: 4px;
  margin-right: 5px;
  box-shadow: 0 1px 4px #4984A633;
}

.contact-info-details ul, .next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info-details ul li, .next-steps ul li {
  font-size: 1.01rem;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 7px;
}
.contact-info-details ul li img {
  width: 22px; height: 22px;
  margin-right: 6px;
}

/************************
 FOOTER
*************************/
footer {
  background: var(--primary);
  color: var(--white);
  padding: 38px 0 0 0;
  border-radius: 42px 42px 0 0;
  box-shadow: 0 -3px 29px #274A2B10;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.06rem;
}
.footer-nav a {
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 13px;
  transition: background 0.13s, color 0.14s;
}
.footer-nav a:hover { background: var(--accent); color: var(--primary); }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 7px;
  font-size: 1rem;
}
.footer-contact img {
  width: 48px; height: 48px;
  margin-right: 8px;
}
.footer-address { font-size: 1rem; line-height: 1.7; }
.footer-legal {
  font-size: 0.94rem;
  opacity: 0.7;
  margin-top: 10px;
  display: flex; flex-direction: column; gap: 7px;
}
.footer-legal a { color: var(--accent); font-weight: 500; }

@media (max-width: 549px) {
  footer .container {
    flex-direction: column;
    gap: 19px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 7px;
    font-size: 0.96rem;
  }
}

/*****************************
 THANK YOU PAGE
*****************************/
.thank-you {
  background: var(--accent);
  border-radius: 0 0 30px 30px;
  padding: 45px 20px 50px 20px;
  margin-top: 30px;
  margin-bottom: 65px;
  text-align: center;
}
.thank-you-message {
  color: var(--primary);
  font-size: 1.22rem;
  margin: 17px 0 19px 0;
}
.next-steps ul li {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 6px;
}

/****************************
 COOKIE CONSENT BANNER
*****************************/
#cookie-consent-banner, .cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--secondary);
  color: var(--white);
  width: 100vw;
  padding: 22px 18px 18px 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2000;
  box-shadow: 0 -2px 18px #274A2B22;
  border-radius: 23px 23px 0 0;
  font-size: 1.08rem;
  animation: slide-cookies 0.68s cubic-bezier(.71,.05,.36,1.06);
}
@keyframes slide-cookies {
  from { transform: translateY(100px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner button,
#cookie-consent-banner button {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Oswald', Arial, sans-serif;
  border: none;
  padding: 8px 23px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 17px;
  margin-left: 7px;
  margin-top: 4px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, transform 0.13s;
}
.cookie-banner button:hover, #cookie-consent-banner button:hover {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.09) rotate(-2deg);
}
.cookie-banner .cookie-settings,
#cookie-consent-banner .cookie-settings {
  background: var(--primary);
  color: var(--accent);
}
.cookie-banner .cookie-settings:hover {
  background: var(--error);
  color: var(--white);
}
.cookie-banner {
  flex-wrap: wrap;
}
@media (max-width: 650px) {
  #cookie-consent-banner, .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.99rem;
    padding: 15px 10px 15px 13px;
  }
}

/* Cookie modal settings */
#cookie-modal,
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,74,43,.72);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: cookie-bg-fadein 0.4s;
}
@keyframes cookie-bg-fadein { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal.hidden, #cookie-modal.hidden { display: none; }
.cookie-modal-content, #cookie-modal .modal-content {
  background: #FFF8F1;
  color: var(--primary);
  border-radius: 23px;
  padding: 36px 25px 28px 25px;
  width: 95vw;
  max-width: 400px;
  box-shadow: 0 4px 30px #F9D89672;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: slide-modal 0.42s cubic-bezier(.44,.79,.37,1.11);
}
@keyframes slide-modal {
  from {transform: translateY(80px) scale(.93); opacity:0;}
  to   {transform:none; opacity:1;}
}
.cookie-modal-content h3, #cookie-modal .modal-content h3 {
  font-size: 1.24rem;
  margin-bottom: 9px;
  font-family: 'Oswald', Arial, sans-serif;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-modal-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #eee;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-toggle:checked { background: var(--secondary); }
.cookie-modal-toggle:disabled {
  background: #e3e3e3;
  cursor: not-allowed;
  border: 1px dashed #b0b0b0;
}
.cookie-modal-toggle:before {
  content: '';
  display: block;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(39,74,43,0.10);
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.18s;
}
.cookie-modal-toggle:checked:before  { left: 18px; }
.cookie-modal-toggle:disabled:before { background: #eee; }
.cookie-modal-btn-row {
  display: flex;
  gap: 13px;
  margin-top: 22px;
}
.cookie-modal-btn-row button {
  padding: 7px 23px;
  font-family: 'Oswald', Arial, sans-serif;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 1rem;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, transform 0.11s;
}
.cookie-modal-btn-row button:hover {
  background: var(--secondary);
  color: var(--accent);
  transform: scale(1.06) rotate(-1deg);
}
.cookie-modal-content .modal-close {
  position: absolute;
  top: 17px; right: 23px;
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
}

/********************************
 PLAYFUL MICRO-ANIMATIONS
*********************************/
.card, .product-card, .guide-card, .post-card, .team-member {
  transition: box-shadow 0.2s, transform 0.17s, background 0.23s;
}
.card:hover .card, .product-card:hover, .guide-card:hover, .post-card:hover, .team-member:hover {
  animation: micro-bounce 0.31s cubic-bezier(0.47,1.64,0.41,0.8);
}
@keyframes micro-bounce {
  0% { transform: scale(1) rotate(0); }
  55% { transform: scale(1.04) rotate(-0.5deg); }
  100% { transform: scale(1.019) rotate(0.65deg); }
}

.cta-primary, .cta-secondary {
  animation: popin 0.7s 0.05s cubic-bezier(.53,1.67,.6,.97);
}
@keyframes popin {
  from { opacity: 0; transform: scale(0.85) translateY(32px); }
  to   { opacity:1; transform: none; }
}

/****************************************
 RESPONSIVE LAYOUTS & FLEX DIRECTIONS
*****************************************/
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 768px) {
  .container { padding: 0 7px; }
  .section { padding: 23px 7px; margin-bottom: 37px; }
  .content-wrapper { gap: 18px; }
}
@media (max-width:600px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.07rem; }
  .feature-grid, .testimonial-list, .content-grid { flex-direction: column; gap: 14px; }
  .card-container { flex-direction: column; gap: 14px; }
  .features, .team-grid { flex-direction: column; gap: 14px; }
}

/****************************************
 ACCORDIONS (if needed in future)
*****************************************/
.accordion, .accordion-toggle { /* Just a style base for future expansion */ }

/*****************
 UTILS
******************/
.hide { display: none !important; }
.flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.w-100 { width: 100%; }
.rounded { border-radius: 16px; }
.shadow { box-shadow: 0 2px 10px #4984A622; }

/***************
 FORMS
****************/
input, select, textarea {
  border-radius: 8px;
  border: 1px solid #C2C2C2;
  padding: 9px 14px;
  font-size: 1rem;
  margin-top: 4px;
  margin-bottom: 12px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--secondary);
  outline: 2px solid var(--focus);
}
label { font-weight: 500; }

/**********************
 ACCESSIBILITY: OUTLINE
***********************/
a:focus, button:focus, input:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  z-index: 2;
}

/***********************
 SELECT DROPDOWN ARROW
***********************/
select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1L8 8L15 1' stroke='%234984A6' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 12px;
}

/*****************
 Z-INDEX LAYERS
******************/
header, .mobile-menu, .cookie-banner, #cookie-consent-banner, .cookie-modal, #cookie-modal { z-index: 1000; }
footer { z-index: 20; }

/***********************
 PLAYFUL DYNAMIC DETAILS
***********************/
h1, h2, h3 {
  text-shadow: 1px 2px 0 #F9D89648, 0 1px 14px #4984A625;
}
.card, .product-card, .feature-item {
  border: 2.5px dashed #FAFAEA;
}
.card:hover, .product-card:hover, .guide-card:hover, .post-card:hover, .feature-item:hover, .team-member:hover {
  border-color: var(--accent);
  background: #F9FFD9;
}
button, .cta-primary, .cta-secondary {
  font-family: 'Oswald', Arial, sans-serif;
}

/******************
 COLOR ACCESSIBILITY
*******************/
.testimonials, .testimonial-card {
  background: var(--testimonials-bg);
  color: var(--primary);
}

/**********************
 MISC
***********************/
::-webkit-scrollbar { width: 7px; background: #f6f6f6; }
::-webkit-scrollbar-thumb { background: #CDE5F3; border-radius: 9px; }


/* END STYLE.CSS */
