/* ============================
   CSS RESET & BASE 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F9F6EE;
  color: #274156;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #274156;
  text-decoration: none;
  transition: color .25s;
}
a:focus {
  outline: 2px dashed #B09D69;
  outline-offset: 2px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   BRAND COLOR VARIABLES
   ============================ */
:root {
  --color-primary: #274156;
  --color-secondary: #B09D69;
  --color-accent: #F9F6EE;
  --color-bg: #F9F6EE;
  --color-white: #fff;
  --color-dark: #222c31;
  --color-info: #24a1d8;
  --color-success: #57c87b;
  --color-warning: #ffdb4a;
  --color-error: #e1726c;
}

/* ============================
   TYPOGRAPHY
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: #274156;
}
h1 {
  font-size: 2.5rem;
  color: #B09D69;
  text-shadow: 0 2px 12px #f9f6ee90;
}
h2 {
  font-size: 2rem;
  color: #274156;
}
h3 {
  font-size: 1.4rem;
  color: #B09D69;
}
h4 {
  font-size: 1.15rem;
}
p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #274156;
}
strong {
  font-weight: 700;
  color: #274156;
}
blockquote {
  font-style: italic;
  padding-left: 20px;
  border-left: 4px solid #B09D69;
  background: #fffdeed6;
  margin: 20px 0;
}

/* Playful/Dynamic Fonts & Decorations */
h1, .cta-primary, .cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
}
h1, h2, h3 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  margin: 10px 0 0 0;
  background: var(--color-secondary);
  border-radius: 2px;
  animation: playful-bar .8s cubic-bezier(.17,.67,.83,.67) 0.1s both;
}
@keyframes playful-bar {
  0% {width:0; opacity:0;}
  55% {width:60px; opacity:.6;}
  100% {width:48px; opacity:1;}
}

/* ============================
   HEADER & NAVIGATION
   ============================ */
header {
  background: var(--color-white);
  box-shadow: 0 2px 10px #e6e6e6cc;
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
header img {
  max-height: 50px;
  border-radius: 8px;
  background: none;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  padding: 7px 14px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  background: none;
  transition: background .22s, color .22s, box-shadow .22s;
}
.main-nav a:not(.cta-primary):hover, .main-nav a.active {
  background: var(--color-accent);
  color: var(--color-secondary);
  box-shadow: 0 3px 10px #efecd5cc;
}
.cta-primary {
  background: linear-gradient(90deg, #FFD86A, #B09D69);
  color: #274156 !important;
  border-radius: 28px;
  padding: 10px 28px;
  box-shadow: 0 2px 8px #e9dca933;
  font-size: 1.2rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  letter-spacing: .02em;
  margin-left: 8px;
  position: relative;
  transition: transform .22s, box-shadow .22s, background .18s;
  outline: none;
}
.cta-primary:hover, .cta-primary:active, .cta-primary:focus {
  background: linear-gradient(90deg, #B09D69, #FFD86A 60%);
  color: #1c2934;
  box-shadow: 0 6px 24px #c99e3d15, 0 2px 10px #b09d6980;
  transform: scale(1.045) rotate(-2deg);
}
.cta-secondary {
  background: #e6eef8;
  color: #274156;
  border-radius: 20px;
  padding: 8px 24px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 1px 5px #d1dadb54;
  transition: background .18s, border .21s, transform .19s;
  display: inline-block;
  margin-top: 12px;
}
.cta-secondary:hover {
  background: #b09d6922;
  border-color: #FFD86A;
  transform: scale(1.03) rotate(0.66deg);
  color: #274156;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--color-secondary);
  border-radius: 8px;
  padding: 2px 10px;
  display: none;
  margin-left: 8px;
  transition: background .18s, color .21s;
  z-index: 1001;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #274156;
  background: #ffefaf94;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #FFFAF1ee;
  box-shadow: 6px 0 35px #27415640;
  transform: translateX(-100%);
  transition: transform .5s cubic-bezier(.57,.14,.2,1.01);
  z-index: 2002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 28px 16px 12px 18px;
  background: #B09D69;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 20px;
  padding: 4px 12px;
  cursor: pointer;
  align-self: flex-end;
  z-index: 2100;
  transition: background .26s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD86A;
  color: #274156;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 20px 36px 54px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #274156;
  background: none;
  border-radius: 18px;
  padding: 12px 20px;
  margin: 0;
  width: 100%;
  display: block;
  font-weight: 700;
  transition: background .21s, color .18s;
}
.mobile-nav a:hover,.mobile-nav a:focus {
  background: #FFD86A;
  color: #1c2934;
}

/* Hide main nav, show burger on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
}
@media (max-width: 768px) {
  header .container {
    gap: 8px;
    padding-top: 8px; padding-bottom: 8px;
  }
}

/* ============================
   MAIN STRUCTURE & SECTIONS
   ============================ */
main {
  background: var(--color-bg);
  min-height: 65vh;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  background: linear-gradient(115deg, #FFD86A 0%, #fffbe8 49%, #b09d6933 100%);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding-top: 46px;
  padding-bottom: 46px;
  margin-bottom: 48px;
  animation: hero-bounce-in 1.1s cubic-bezier(.23,1.01,.32,1);
  min-height: 380px;
}
@keyframes hero-bounce-in {
  0% {transform: scale(.9) translateY(-64px); opacity: 0;}
  70% {transform: scale(1.03) translateY(8px); opacity: .85;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #274156 30%, #B09D69 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.35rem;
  color: #274156;
  opacity: .82;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* ============================
   LISTS, UL/OL
   ============================ */
ul, ol {
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  line-height: 1.6;
  font-size: 1.07rem;
  color: #274156;
  list-style-type: disc;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}
ul li img {
  width: 24px; height: 24px; margin-right: 8px;
  transition: transform .23s cubic-bezier(.83,.39,.21,1.13);
}
ul li:hover img {
  transform: rotate(-7deg) scale(1.15);
}

/* ============================
   CARD LAYOUTS & CONTAINERS
   ============================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 22px #b09d693b;
  margin-bottom: 20px;
  position: relative;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .22s, transform .18s;
  min-width: 220px;
  min-height: 120px;
}
.card:hover {
  box-shadow: 0 8px 36px #ffd86a56, 0 3px 18px #b09d693a;
  transform: translateY(-6px) scale(1.035) rotate(-1deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.card-content p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.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;
  background: #fffbeed5;
  border-radius: 18px;
  box-shadow: 0 3px 16px #27415619;
  margin-bottom: 20px;
  flex-direction: column;
  transition: box-shadow .18s, background .18s;
  min-width: 250px;
  max-width: 600px;
  position: relative;
  border: 2px solid #FFD86A44;
}
.testimonial-card:hover {
  background: #fffbeadf;
  box-shadow: 0 6px 28px #ffd86a33, 0 2px 8px #b09d6930;
}
.testimonial-card strong {
  color: #B09D69;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  margin-top: 10px;
}
.testimonial-card p {
  color: #222c31;
  font-size: 1.12rem;
}
/* For video testimonial section */
.video-testimonial-quote {
  background: #fff;
  border-radius: 16px;
  padding: 20px 26px 18px 26px;
  margin-bottom: 22px;
  box-shadow: 0 2px 14px #27415611;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-testimonial-quote blockquote {
  border-left: 6px solid #FFD86A;
  background: #fffbef;
  color: #274156;
  padding: 4px 0 4px 20px;
  margin: 0 0 8px 0;
}
.video-testimonial-quote span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}
.trust-badges img {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 10px #ffd86a34;
  padding: 6px; height: 40px;
  transition: box-shadow .19s;
}
.trust-badges img:hover {
  box-shadow: 0 3px 24px #ffd86a70;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fffbeed3;
  border-radius: 16px;
  box-shadow: 0 2px 10px #b09d691a;
  padding: 18px 22px 18px 28px;
  transition: box-shadow .16s, background .17s;
}
.faq-item:hover {
  background: #fffbeae1;
  box-shadow: 0 1px 18px #ffd86a36;
}
.faq-item h3 {
  margin-bottom: 6px;
  color: #274156;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
}
.faq-item p {
  margin-bottom: 0;
}

/* ============================
   TABLE (Tariffe)
   ============================ */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 22px;
  border-radius: 12px;
  box-shadow: 0 2px 10px #ffd86a22;
  overflow: hidden;
  font-size: 1rem;
}
thead {
  background: #B09D69;
  color: #fff;
}
thead th {
  padding: 16px 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}
tbody td {
  padding: 14px 8px;
  border-bottom: 1px solid #f3e4be;
  color: #274156;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:hover td {
  background: #FFF7D5;
  color: #B09D69;
  transition: background .22s, color .18s;
}

/* ============================
   QUALITY ADORNMENTS
   ============================ */
.quality-guarantee, .ethics-statement {
  background: #2741560d;
  border-radius: 16px;
  padding: 14px 22px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.quality-guarantee img {
  width: 32px;
  height: 32px;
}
.quality-guarantee strong {
  color: #24a1d8;
  font-size: 1.12rem;
}
.ethics-statement {
  background: #f3e4be2d;
  color: #274156;
}

/* ============================
   CONTACTS & MAP
   ============================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.08rem;
}
.contact-info p {
  margin-bottom: 4px;
  color: #274156;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff9ed;
  padding: 12px 22px;
  border-radius: 16px;
  margin-top: 16px;
  font-weight: 600;
  color: #b09d69;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ============================
   CTA SECTION
   ============================ */
.cta {
  background: #FFD86A;
  border-radius: 40px;
  margin-bottom: 60px;
  padding: 40px 0 36px 0;
  animation: cta-pop-in .89s cubic-bezier(.42,.13,.51,1.1);
}
@keyframes cta-pop-in {
  0% {opacity:0; transform: scale(.97) translateY(40px);}
  100% {opacity:1; transform: none;}
}
.cta .content-wrapper {
  align-items: center;
  gap: 20px;
  text-align: center;
}
.cta .cta-primary {
  background: linear-gradient(90deg, #FFD86A, #B09D69);
  margin: 0 auto 10px auto;
  font-size: 1.15rem;
}
.cta p {
  color: #274156;
  opacity: .74;
  font-size: 1.07rem;
  margin-top: 5px;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: #274156;
  color: #fff;
  padding: 32px 0 14px 0;
  width: 100%;
  font-size: 1rem;
  margin-top: 48px;
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #B09D69;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.95;
  transition: color .22s;
}
.footer-nav a:hover {
  color: #FFD86A;
  text-decoration: underline;
}
footer .contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: .98rem;
}
footer .contact-details img {
  width: 18px; margin-right: 5px; vertical-align: middle;
}
footer span {
  font-size: .98rem;
  margin-top: 9px;
  color: #fff;
  opacity: .75;
  display: block;
}

/* ============================
   COOKIE CONSENT BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 4000;
  background: #FFF8DA;
  box-shadow: 0 -8px 32px #B09D6955;
  padding: 22px 8px 18px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  animation: banner-in .68s cubic-bezier(.6,.46,.3,1.08);
}
@keyframes banner-in {
  0% { opacity: 0; transform: translateY(80px) scale(.98);} 
  100% { opacity: 1; transform: none;}
}
.cookie-banner__text {
  color: #274156;
  font-size: 1rem;
  max-width: 440px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  padding: 9px 24px;
  border-radius: 22px;
  outline: none;
  font-size: 1rem;
  margin-right: 7px;
  transition: background .19s, color .19s, box-shadow .19s, border .16s;
  box-shadow: 0 2px 7px #b09d6914;
}
.cookie-btn.accept {
  background: #FFD86A;
  color: #274156;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff3b0;
  color: #B09D69;
}
.cookie-btn.reject {
  background: #FFECE9;
  color: #E1726C;
  border: 2px solid #e1726c80;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F1C3AC;
  color: #fff;
  border-color: #e1726c;
}
.cookie-btn.settings {
  background: #fffbe4;
  color: #24a1d8;
  border: 2px solid #24a1d880;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #E3F7FA;
  color: #057fab;
  border-color: #24a1d8;
}

/* Cookie preferenze modal */
.cookie-modal {
  position: fixed;
  left: 50%; 
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 48px #27415644;
  z-index: 4500;
  min-width: 320px;
  max-width: 95vw;
  padding: 38px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: modalin .37s cubic-bezier(.42,.13,.51,1.1);
}
@keyframes modalin {
  0% {opacity:0; transform: translate(-50%, 30%) scale(.91);}
  100% {opacity:1; transform: translate(-50%,-50%) scale(1);}
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: #B09D69;
  margin-bottom: 6px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 700;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  accent-color: #FFD86A;
  width: 20px; height: 20px;
  margin-right: 2px;
}
.cookie-category .cookie-essential {
  color: #24a1d8;
  font-weight: 700;
  margin-left: 2px;
}
.cookie-modal__actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 28px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 22px;
  background: #B09D69;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 1.45rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  transition: background .27s, color .21s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFD86A;
  color: #274156;
}

/* Cookie overlay */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: #b09d6992;
  z-index: 4400;
  animation: overlayin .27s cubic-bezier(.67,.14,.62,1.06);
}
@keyframes overlayin {
  0% {opacity:0;}
  100% {opacity:.92;}
}

/* ============================
   RESPONSIVE LAYOUTS
   ============================ */
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .footer-nav, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .section, .cta {
    margin-bottom: 38px;
    padding: 28px 6px;
    border-radius: 24px;
  }
  .hero {
    padding-top: 22px;
    padding-bottom: 30px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    min-height: 220px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .card-container, .content-grid, .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .video-testimonial-quote, .faq-item {
    padding: 14px 10px 14px 15px;
    max-width: 100%;
  }
  .testimonials {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section, .feature-item {
    flex-direction: column;
    gap: 12px;
  }
  .cta .content-wrapper {
    gap: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 20px;
    padding: 18px 4px 16px 4px;
  }
  .cookie-banner__text {
    font-size: 0.95rem;
    max-width: 100vw;
  }
  .cookie-modal {
    min-width: unset;
    width: 97vw;
    padding: 24px 8px 22px 8px;
    border-radius: 13px;
  }
}
@media (max-width: 500px) {
  h1 {font-size: 1.3rem;}
  h2 {font-size: 1.0rem;}
  .section, .cta {padding: 16px 2px;}
  .footer-nav {gap: 10px;}
  .contact-info p, footer .contact-details {font-size: 0.95rem;}
  .card {padding: 13px 6px; min-width: 0;}
}

/* ============================
   PLAYFUL DYNAMIC ANIMATIONS
   ============================ */
.cta-primary, .cta-secondary, .cookie-btn {
  animation: playful-cta-pop .51s cubic-bezier(.04,.8,.66,1); 
  position: relative;
}
@keyframes playful-cta-pop {
  0% {transform: scale(.93) rotate(-8deg); opacity:.5;}
  100% {transform: scale(1) rotate(0); opacity:1;}
}
.card::before, .testimonial-card::before {
  content: '';
  position: absolute;
  left: -9px; top: -9px;
  width: 25px;
  height: 25px;
  background: #FFD86A;
  border-radius: 50%;
  z-index: 0;
  opacity: .17;
  pointer-events: none;
  animation: playful-dot-fade .9s .32s both;
}
@keyframes playful-dot-fade {
  0% {opacity:0; transform:scale(.3);}
  100% {opacity:.17; transform:scale(1);}
}
.testimonial-card::before {
  left: unset;
  top: unset;
  right: -9px; bottom: -9px;
  background: #B09D69;
  opacity: .16;
  animation-delay: .7s;
}
.card:hover::before, .testimonial-card:hover::before {
  transform: scale(1.2) rotate(-11deg);
  transition: transform .39s ease;
  opacity: .23;
}

/* ============================
   ELEMENT/SECTION SPACING
   ============================ */
.section {margin-bottom: 60px; padding: 40px 20px;}
.card-container {display: flex; flex-wrap: wrap; gap: 24px;}
.card {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;}
.testimonial-card {display: flex; align-items: center; gap: 20px; padding: 20px;}
.feature-item {display: flex; flex-direction: column; align-items: flex-start; gap: 15px;}

/* ============================
   OVERRIDE: NO GRID/COLUMNS
   ============================ */
/* No grid, columns, break-inside, absolute for content */

/* ============================
   UTILITY CLASSES
   ============================ */
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
.w-100 { width:100% !important;}

/* ============================
   NON-VISUAL ACCESSIBILITY
   ============================ */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================
   END OF CSS
   ============================ */
