/* ------------------
   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, main, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F5F7;
  color: #1A2537;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* ----- BRAND VARIABLES ----- */
:root {
  --clr-primary: #1A2537;
  --clr-secondary: #F5F5F7;
  --clr-accent: #11A1D6;
  --clr-yellow: #FFD600;
  --clr-pink: #FF50A2;
  --clr-green: #00D7A3;
  --clr-orange: #FF9500;
  --clr-red: #FC6175;
  --clr-blue: #11A1D6;
  --radius: 18px;
  --shadow: 0 3px 18px 0 rgba(30,45,72,0.07);
  --font-display: 'Montserrat', 'Arial Black', cursive, sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

/* --------------
   LAYOUT WRAPPERS & PATTERNS
------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--clr-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe6;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Ensure all sections and cards have min 20px margin/gap between them */
section, .section {
  margin-bottom: 60px;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}
.card:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 24px;
}

.content-wrapper > * + * {
  margin-top: 12px;
}


/* -----------------
   HEADER & NAVIGATION
------------------ */
header {
  background: var(--clr-primary);
  color: var(--clr-secondary);
  box-shadow: var(--shadow);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
}
.logo {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 16px;
  font-size: 1rem;
  color: var(--clr-secondary);
  position: relative;
  transition: background 0.18s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--clr-accent);
  color: #fff;
}
.main-nav a.cta.primary {
  background: var(--clr-yellow);
  color: var(--clr-primary);
  font-size: 1.08rem;
  border-radius: 22px;
  padding: 10px 24px;
  margin-left: 18px;
  box-shadow: 0 2px 8px 0 rgba(255,214,0,0.09);
  transition: background 0.22s, color 0.16s, transform 0.11s;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: var(--clr-pink);
  color: #fff;
  transform: scale(1.045);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--clr-accent);
  padding: 7px 10px;
  border-radius: 12px;
  z-index: 110;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--clr-yellow);
  color: var(--clr-primary);
}
/* Hamburger for mobile */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,37,55,0.98);
  color: #fff;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.8,-0.31,.49,1.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  margin: 28px 30px 0 0;
  font-size: 2.2rem;
  color: var(--clr-pink);
  border: none;
  border-radius: 14px;
  padding: 7px 12px;
  transition: background 0.19s, color 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--clr-yellow);
  color: var(--clr-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px auto;
  width: 87vw;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 16px 0;
  color: #fff;
  border-radius: 15px;
  background: none;
  text-align: left;
  transition: background 0.2s, color 0.13s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--clr-blue);
  color: var(--clr-yellow);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 13px;
  }
  header .container {
    gap: 10px;
  }
  .main-nav a.cta.primary {
    padding: 9px 16px;
    font-size: 1rem;
    margin-left: 7px;
  }
}

@media (max-width: 868px) {
  .main-nav {
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* -----------------
   HERO SECTION
------------------ */
.hero {
  background: linear-gradient(90deg, var(--clr-yellow) 0%, var(--clr-accent) 75%, var(--clr-pink) 100%);
  color: var(--clr-primary);
  border-radius: 0 0 var(--radius) var(--radius);
  min-height: 320px;
  box-shadow: 0 6px 36px 0 rgba(17,161,214,0.11), var(--shadow);
  display: flex;
  align-items: center;
  padding: 48px 0 40px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
  max-width: 640px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--clr-primary);
  text-shadow: 1px 2px 0 var(--clr-yellow), 2px 3px 16px var(--clr-pink), 0 2px 12px #1a25370f;
}
.hero p {
  font-size: 1.15rem;
  font-family: var(--font-body);
  color: #273450;
  max-width: 530px;
  line-height: 1.6;
}
.hero .cta {
  margin-top: 16px;
}

@media (max-width: 640px) {
  .hero {
    min-height: 180px;
    padding: 30px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* -------------
   FEATURES, STEPS, CARDS, SERVICES
-------------*/
.features, .services, .steps, .benefits, .pricing, .values, .team, .contact-info, .plan-comparisons, .faq, .faq-accordion, .about {
  padding-top: 0;
  padding-bottom: 0;
}
.features ul, .services ul, .steps ol, .benefits ul, .values ul, .team ul, .contact-info ul, .faq-accordion, .plan-comparisons ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.features ul li, .services ul li, .benefits ul li, .values ul li, .team ul li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 18px 20px;
  flex: 1 1 229px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  gap: 10px;
}
.features ul li:hover, .services ul li:hover, .benefits ul li:hover, .values ul li:hover {
  transform: translateY(-6px) scale(1.025) rotate(-1deg);
  box-shadow: 0 8px 32px 0 #11A1D6a8, var(--shadow);
  z-index: 2;
}
.features li strong, .services li strong, .values li, .team li strong {
  font-size: 1.17rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--clr-accent);
}
.features li img, .services li img, .benefits li img, .values li img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 8px #11A1D6a6);
}
.features li p, .services li p {
  font-size: 1rem;
  color: #283250;
  font-family: var(--font-body);
}
.features li .price, .services li .price {
  background: var(--clr-pink);
  color: #fff;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 0.92rem;
  font-weight: 700;
  margin-left: 7px;
}
.steps ol {
  flex-direction: column;
  gap: 19px;
  margin-left: 18px;
}
.steps ol li {
  font-size: 1rem;
  background: var(--clr-yellow);
  color: var(--clr-primary);
  border-radius: var(--radius);
  box-shadow: 0 1px 11px 0 #ffd60055, var(--shadow);
  padding: 13px 18px;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 9px;
}
.steps ol li strong {
  font-family: var(--font-display);
  color: var(--clr-pink);
  font-weight: 800;
}

@media (max-width: 1024px) {
  .features ul li, .services ul li, .benefits ul li, .values ul li, .team ul li {
    min-width: 180px;
    font-size: 0.96rem;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 768px) {
  .content-wrapper, .card-container, .content-grid, .features ul, .services ul, .benefits ul, .values ul, .team ul {
    flex-direction: column!important;
    gap: 19px;
  }
  .features ul li, .services ul li, .benefits ul li, .values ul li, .team ul li {
    min-width: unset;
    width: 100%;
    padding: 18px 12px;
  }
  .steps ol {
    margin-left: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* --------------
   CTA SECTION
---------------*/
.cta {
  display: inline-block;
  border-radius: 21px;
  padding: 12px 36px;
  background-color: var(--clr-pink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.17rem;
  font-weight: 700;
  box-shadow: 0 3px 19px #ff50a233, var(--shadow);
  transition: background 0.18s, color 0.14s, transform 0.14s, box-shadow 0.25s;
  margin-top: 8px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
}
.cta.primary {
  background: var(--clr-yellow);
  color: var(--clr-primary);
  box-shadow: 0 2px 12px #ffd60039, var(--shadow);
}
.cta:hover, .cta:focus {
  background: var(--clr-green);
  color: var(--clr-primary);
  transform: scale(1.045) rotate(-1deg);
  box-shadow: 0 6px 18px #00d7a239, var(--shadow);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--clr-accent);
  color: #fff;
  transform: scale(1.07) rotate(1deg);
}

/* --------------
   TESTIMONIALS
--------------*/
.testimonials .testimonial-card {
  background: #fffbe6;
  color: #1A2537;
  border-left: 6px solid var(--clr-yellow);
  box-shadow: 0 3px 25px #ffedc744, var(--shadow);
  margin-bottom: 22px;
  font-family: var(--font-body);
}
.testimonial-card strong {
  font-family: var(--font-display);
  color: var(--clr-pink);
  font-weight: 800;
  font-size: 1.12rem;
}
.testimonial-card .stars {
  letter-spacing: 2px;
  color: var(--clr-yellow);
  font-size: 1.18rem;
  font-family: var(--font-display);
}
.testimonial-card span {
  text-align: right;
  width: 100%;
  color: var(--clr-blue);
  font-weight: 600;
}

/* --------------
   FAQ ACCORDION
--------------*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #e6fafe;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.15s, transform 0.11s;
}
.faq-item:hover {
  box-shadow: 0 4px 18px #11a1d658, var(--shadow);
  transform: scale(1.013) rotate(-1deg);
}
.faq-item h3 {
  font-family: var(--font-display);
  color: var(--clr-accent);
  font-size: 1.21rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.faq-item p {
  font-size: 1rem;
  color: #223050;
}

/* ---------------
   PRICING TABLE
---------------*/
.pricing table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.pricing th, .pricing td {
  padding: 15px 10px;
  text-align: left;
}
.pricing th {
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 800;
}
.pricing tbody tr:nth-child(odd) {
  background: #edfaff;
}
.pricing tbody tr:nth-child(even) {
  background: #fff;
}
.pricing td {
  color: var(--clr-primary);
}
.plan-comparisons h3 {
  font-family: var(--font-display);
  color: var(--clr-pink);
  font-size: 1.18rem;
}
.plan-comparisons ul {
  flex-direction: column;
  gap: 8px;
}
.plan-comparisons li::before {
  content: '• ';
  color: var(--clr-accent);
}

/* -------------
   ABOUT / TEAM / VALUES
---------------*/
.about blockquote {
  font-size: 1.11rem;
  font-style: italic;
  color: var(--clr-blue);
  border-left: 4px solid var(--clr-pink);
  padding-left: 14px;
  margin-top: 10px;
}
.team ul, .values ul {
  gap: 24px;
}
.team li strong {
  color: var(--clr-green);
}
.team li span {
  display: block;
  color: #1a2537cc;
  margin-top: 2px;
}
.values li {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-accent);
  align-items: center;
  display: flex;
  gap: 9px;
}
.values li img {
  width: 32px;
  height: 32px;
  margin-top: -2px;
}

/* --------------
   CONFIRMATION SECTION
----------------*/
.confirmation {
  display: flex;
  min-height: 250px;
  align-items: center;
  background: linear-gradient(90deg, #edfaff 0%, #fffde7 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 60px 30px 40px 30px;
}
.confirmation h1 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--clr-pink);
  margin-bottom: 14px;
}
.confirmation p {
  font-size: 1.12rem;
  color: #283250;
}

/* --------------
   CONTACT INFO
---------------*/
.contact-info ul {
  gap: 8px;
  flex-direction: column;
  font-size: 1rem;
  color: var(--clr-primary);
}
.contact-info a {
  color: var(--clr-pink);
  font-weight: 700;
}

/* -------------
   FOOTER
-------------*/
footer {
  background: var(--clr-primary);
  color: #ececec;
  padding: 38px 0 18px 0;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -3px 20px #1A253722;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 26px;
}
footer .logo {
  display: flex;
  align-items: center;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0 12px;
}
.footer-nav a {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  opacity: 0.9;
  padding: 7px 16px;
  border-radius: 13px;
  transition: background 0.16s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--clr-pink);
  color: #fffbe6;
}
footer small {
  display: block;
  color: #fffbe6;
  font-size: 0.98rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
    margin-left: 0;
  }
}

/* ----------------------
   TYPOGRAPHY
------------------------*/
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--clr-primary);
  line-height: 1.24;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  font-weight: 900;
}
h1 {
  font-size: 2.2rem;
  text-shadow: 1px 2px 0 #FF50A2a8, 0 2px 10px #F5F5F7a8;
}
h2 {
  font-size: 1.62rem;
  color: var(--clr-accent);
}
h3 {
  font-size: 1.19rem;
}
h4 {
  font-size: 1.06rem;
  font-weight: 800;
}
@media (max-width: 640px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  p, li, span {
    font-size: 0.98rem;
  }
}

p, li, span {
  font-family: var(--font-body);
  font-size: 1rem;
}
strong {
  font-family: var(--font-display);
  font-weight: 800;
}
b {
  font-weight: 800;
  font-family: var(--font-body);
}

/* --------------
   ANIMATIONS & MICROINTERACTIONS
--------------*/
.card, .features ul li, .services ul li, .testimonial-card, .faq-item {
  transition: box-shadow 0.17s cubic-bezier(.63,-0.14,.67,1.31), transform 0.18s cubic-bezier(.73,-0.15,.49,1.41);
}
.card:hover, .features ul li:hover, .services ul li:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0 8px 28px #11A1D626, 0 3px 10px #ffd60022;
  transform: scale(1.025) rotate(-1deg);
  z-index: 2;
}

.cta:active, .main-nav a:active, .footer-nav a:active, .mobile-nav a:active {
  transform: scale(0.98);
  filter: brightness(0.95);
}

/* Fun shape decoration on hover (playful_dynamic): */
.features ul li:after, .services ul li:after {
  content: '';
  display: block;
  position: absolute;
  width: 38px; height: 38px;
  top: -18px; right: -15px;
  background: var(--clr-yellow);
  opacity: 0.14;
  border-radius: 45% 55% 70% 30%/50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
  transition: background 0.25s, opacity 0.22s;
  /* random squiggly fun shape */
}
.features ul li:hover:after, .services ul li:hover:after {
  background: var(--clr-pink);
  opacity: 0.22;
}

/* -------------
   RESPONSIVE DESIGN
---------------*/
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 640px) {
  .container {
    max-width: 100vw;
    padding-inline: 7px;
  }
  .section {
    padding: 20px 7px;
  }
}

/* Give all list items and section elements a min margin-bottom (mobile hierarchy breathing room) */
li, section {
  margin-bottom: 16px;
}
section:last-child, .faq-item:last-child {
  margin-bottom: 0;
}

/* -------------
   COOKIE BANNER
---------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fffbe6;
  color: #1A2537;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 19px 24px 19px 20px;
  z-index: 4000;
  box-shadow: 0 -2px 26px #11A1D644, 0 -1px 8px #ffd60013;
  font-family: var(--font-body);
  font-size: 1.01rem;
  animation: cookie-banner-in 0.42s cubic-bezier(.73,-0.31,.49,1.51);
}
@keyframes cookie-banner-in {
  0% { transform: translateY(120%); opacity: 0; }
  70% { transform: translateY(-32px) scaleX(1.04); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 2 1 360px;
  min-width: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 20px;
  border: none;
  border-radius: 17px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 11px #ffd60022;
  margin-left: 0;
  transition: background 0.14s, color 0.16s, transform 0.14s;
}
.cookie-banner .accept {
  background: var(--clr-green);
  color: var(--clr-primary);
}
.cookie-banner .accept:hover {
  background: var(--clr-yellow);
  color: var(--clr-primary);
  transform: scale(1.07);
}
.cookie-banner .reject {
  background: var(--clr-red);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: var(--clr-blue);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--clr-blue);
  color: #fff;
}
.cookie-banner .settings:hover {
  background: var(--clr-accent);
  color: var(--clr-yellow);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 11px 8px 17px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 6px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(26,37,55,0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4100;
  animation: cookie-modal-in 0.46s cubic-bezier(.73,-0.41,.59,1.01);
}
@keyframes cookie-modal-in {
  0% { opacity: 0; transform: scale(0.86); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal .modal-content {
  background: #fff;
  color: var(--clr-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 2px 69px #ffd60066;
  padding: 36px 29px 33px 34px;
  min-width: 350px;
  max-width: 97vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-family: var(--font-body);
  font-size: 1.04rem;
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 9px;
  color: var(--clr-accent);
}
.cookie-modal .close {
  position: absolute;
  top: 10px;
  right: 13px;
  background: none;
  font-size: 2rem;
  color: var(--clr-red);
  border-radius: 15px;
  border: none;
  padding: 2px 4px 0 8px;
}
.cookie-modal .categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #f5fafd;
  border-radius: 10px;
  padding: 8px 14px;
}
.cookie-modal .category label {
  font-weight: bold;
  font-family: var(--font-body);
}
.cookie-modal .category input[type='checkbox'] {
  accent-color: var(--clr-blue);
  width: 20px;
  height: 20px;
}
.cookie-modal .category.essential label {
  color: var(--clr-green);
}
.cookie-modal .category.essential input[type='checkbox'] { display:none; }
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .modal-actions button {
  font-family: var(--font-display);
  font-size: 1rem;
  border: none;
  border-radius: 13px;
  padding: 9px 21px;
  transition: background 0.17s, color 0.17s;
  background: var(--clr-yellow);
  color: var(--clr-primary);
}
.cookie-modal .modal-actions button:hover {
  background: var(--clr-green);
  color: var(--clr-primary);
}

@media (max-width: 500px) {
  .cookie-modal .modal-content {
    min-width: 94vw;
    padding: 15px 4vw 15px 4vw;
    font-size: 0.98rem;
  }
}

/* -------------
   PLAYFUL TYPO ANIMATION
--------------*/
.hero h1, h1, h2, .cta {
  animation: playful-bounce 1.16s cubic-bezier(.57,.21,.45,1.46) 24ms;
}
@keyframes playful-bounce {
  0% { transform: scale(0.97) rotate(-2deg); opacity: 0; }
  25% { transform: scale(1.05) rotate(2deg); opacity: 1; }
  80% { transform: scale(0.98) rotate(-1deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* -------------
   HIGHLIGHTED LIST ITEMS (for differentiating accents)
--------------*/
.features ul li:nth-child(4n+2) {
  border-left: 7px solid var(--clr-blue);
  background: #e6fafe;
}
.features ul li:nth-child(3n+1) {
  border-left: 7px solid var(--clr-pink);
  background: #fff7f0;
}
.features ul li:nth-child(2n) {
  border-left: 7px solid var(--clr-yellow);
  background: #fffbe6;
}

/* --------------
   MISC UTILITIES
---------------*/
.hide {
  display: none!important;
}

/* --------------
   SCROLLBAR THEME
---------------*/
::-webkit-scrollbar { width: 10px; background: #f5fafd; }
::-webkit-scrollbar-thumb { background: #11A1D6bb; border-radius: 12px; }

/* -------------
   PRINT FRIENDLY RESET
------------- */
@media print {
  header, nav, footer, .cookie-banner, .mobile-menu {display:none!important;}
  .section, section {box-shadow:none!important; background: #fff!important; color: #000!important;}
}

/* ------------
   PREVENT OVERLAPPING & ENSURE SPACING
-------------- */
* { box-sizing: border-box; }
section, .section {
  margin-bottom: 60px;
  padding-top: 0;
  padding-bottom: 0;
}

.card, .testimonial-card, .faq-item, .content-wrapper>* {
  margin-bottom: 20px;
}
.card:last-child, .testimonial-card:last-child, .faq-item:last-child {
  margin-bottom: 0;
}

/* -------------
   END
---------------*/
