/* =============================
   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,
main, 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; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section { display: block; }
body {
  line-height: 1.5;
  background: #F6F6F2;
  color: #27282D;
  font-family: 'Lato', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; outline: none; }
button { cursor: pointer; background: none; border: none; }

/* =========================
   BRAND FONTS & STYLESHEET
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Lato:wght@400;700;900&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: #27282D;
}
h1 { font-size: 2.75rem; margin-bottom: 16px; line-height: 1.11; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 14px; line-height: 1.15; }
h3 { font-size: 1.35rem; margin-bottom: 12px; line-height: 1.18; }
h4 { font-size: 1.2rem; margin-bottom: 10px; }
p, li, .subtitle {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #27282D;
}
.subtitle {
  font-size: 1.15rem;
  color: #C5338B;
  font-weight: bold;
  margin-bottom: 20px;
}
strong, b { font-weight: bold; }

/* ========================
     COLOR PALETTE & VARS
   ======================== */
:root {
  --color-primary: #27282D;
  --color-secondary: #C9B585;
  --color-accent: #F6F6F2;
  --color-electric-yellow: #FFE357;
  --color-electric-pink: #C5338B;
  --color-electric-blue: #3386FF;
  --color-high-energy: #29D9A2;
}

/* ========================
      GENERAL LAYOUT & CONTAINERS
   ======================== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0;
}
.section { 
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(201, 181, 133, 0.09);
}

/* ================
    HEADER / NAV
   ================ */
header {
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(39,40,45,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 49;
}
header .container {
  height: 80px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}
header a img {
  height: 48px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-left: 36px;
}
header nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  color: var(--color-primary);
}
header nav a:hover, header nav a:focus {
  color: var(--color-electric-pink);
  border-color: var(--color-electric-pink);
}
.cta-btn {
  margin-left: auto;
  padding: 12px 28px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.09rem;
  background: linear-gradient(92deg, var(--color-electric-pink), var(--color-electric-yellow));
  color: #27282D;
  border-radius: 32px;
  border: none;
  box-shadow: 0 2px 18px 0 rgba(201, 181, 133, 0.17);
  transition: box-shadow 0.18s, background 0.17s, color 0.17s;
  cursor: pointer;
  outline: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 24px;
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(100deg, var(--color-electric-yellow), var(--color-electric-pink));
  color: #1e2450;
  box-shadow: 0 2px 36px 0 rgba(39,40,45,0.16);
  transform: translateY(-2px) scale(1.038);
}

/* ============
    MOBILE MENU
   ============ */
.mobile-menu-toggle {
  display: none;
  margin-left: 0;
  font-size: 2.1rem;
  border-radius: 10px;
  background: var(--color-electric-pink);
  color: #fff;
  padding: 8px 14px 5px 14px;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(197,51,139,0.14);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-electric-yellow);
  color: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  transform: translateX(100vw);
  transition: transform 0.36s cubic-bezier(.7,.4,.4,1);
  box-shadow: -1px 0 16px 0 rgba(39,40,45,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 34px;
  font-size: 2.1rem;
  color: var(--color-electric-pink);
  background: transparent;
  border: none;
  z-index: 101;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-high-energy);
}
.mobile-nav {
  width: 100vw;
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  background: #fff;
}
.mobile-nav a {
  display: block;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.33rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--color-primary);
  padding: 12px 0;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 0 rgba(197,51,139,0.01);
  min-width: 210px;
  text-align: center;
  transition: background 0.14s, color 0.14s;
  outline: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-electric-yellow);
  color: #27282D;
}

@media (max-width: 996px) {
  header nav { display: none; }
  .cta-btn { margin-right: 0; }
  .mobile-menu-toggle { display: inline-block; margin-left: auto; }
}
@media (min-width: 997px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ==========================
    HERO & KEY SECTION STYLE
   ========================== */
.hero-section {
  background: linear-gradient(90deg, var(--color-accent) 60%, var(--color-electric-yellow) 100%);
  padding: 60px 0 50px 0;
  margin-bottom: 60px;
  border-bottom: 3px solid var(--color-electric-pink);
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 650px;
}
.hero-section h1 {
  color: var(--color-electric-pink);
  font-size: 2.3rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 0 #fff, 0 3px 12px #f0f0f0;
}
.hero-section .cta-btn {
  margin-top: 18px;
}

/* ===================
    FEATURES & CARDS
   =================== */
.features-grid, .features-list, .investment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.features-grid .feature, .features-list .feature, .investment-options .option {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(39,40,45,0.07);
  padding: 32px 24px 20px 24px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border-left: 7px solid var(--color-electric-pink);
  transition: box-shadow 0.15s, transform 0.11s, border-color 0.13s;
}
.features-grid .feature:hover,
.features-list .feature:hover,
.investment-options .option:hover {
  box-shadow: 0 8px 36px 0 rgba(39,40,45,0.17);
  transform: translateY(-7px) scale(1.027);
  border-left: 7px solid var(--color-electric-yellow);
}
.features-grid .feature img,
.features-list .feature img,
.investment-options .option img {
  width: 44px; height: 44px;
  margin-bottom: 10px;
}
.features-grid .feature h3, .features-list .feature h3, .investment-options .option h3 {
  color: var(--color-electric-blue);
  font-weight: 900;
  font-size: 1.16rem;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.features-grid .feature p, .features-list .feature p, .investment-options .option p {
  font-size: 1rem;
  color: #27282D;
}

/* ===================
    TEAM MEMBER GRID
   =================== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.team-member {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 13px 0 rgba(39,40,45,0.07);
  padding: 28px 22px 18px 22px;
  min-width: 200px;
  max-width: 310px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border-top: 5px solid var(--color-electric-blue);
  transition: box-shadow 0.15s, transform 0.11s, border-color 0.13s;
}
.team-member:hover {
  box-shadow: 0 10px 28px 0 rgba(39,40,45,0.12);
  transform: translateY(-5px) scale(1.03);
  border-top: 5px solid var(--color-high-energy);
}

/* ===================
     STATS BLOCKS
   =================== */
.stats-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.stat {
  background: linear-gradient(92deg, var(--color-electric-blue) 85%, var(--color-high-energy) 100%);
  color: #fff;
  border-radius: 12px;
  min-width: 220px;
  max-width: 315px;
  flex: 1 1 180px;
  padding: 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1px 12px 0 rgba(39,40,45,0.13);
  transform: translateY(0px);
  transition: box-shadow 0.13s, transform 0.11s;
}
.stat:hover {
  box-shadow: 0 6px 30px 0 rgba(39,40,45,0.21);
  transform: translateY(-7px) scale(1.025);
}
.stat h3 {
  color: #FFF;
  font-size: 1.72rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  margin-bottom: 9px;
}
.stat p {
  color: #f8f8f8;
}

/* ==================
    CTA SECTION
   ================== */
.cta-section, .newsletter-section, .thank-you-section {
  background: linear-gradient(94deg, var(--color-electric-pink) 100px, var(--color-electric-yellow) 100%);
  border-radius: 24px;
  box-shadow: 0 7px 40px 0 rgba(197,51,139,0.08);
  margin-bottom: 60px;
  padding: 44px 20px 44px 20px;
}
.cta-section h2, .newsletter-section h2, .thank-you-section h1 {
  color: #fff;
  text-shadow: 0 3px 12px rgba(39,40,45,0.13);
}
.cta-section p, .newsletter-section p, .thank-you-section p {
  color: #FFF;
}
.cta-section .cta-btn, .newsletter-section .cta-btn, .thank-you-section .cta-btn {
  background: #fff;
  color: var(--color-electric-pink);
  font-weight: 900;
  margin-top: 18px;
  box-shadow: 0 2px 18px 0 rgba(197,51,139,0.11);
  border: 2px solid #fff;
}
.cta-section .cta-btn:hover, .newsletter-section .cta-btn:hover, .thank-you-section .cta-btn:hover {
  color: var(--color-high-energy);
  background: var(--color-electric-yellow);
  border: 2px solid var(--color-high-energy);
}

/* ==================
    TESTIMONIALS
   ================== */
.testimonials, .testimonials-section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(39,40,45,0.07);
}
.testimonials .content-wrapper, .testimonials-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: #FAFAFA;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(39,40,45,0.07);
  font-style: italic;
  border-left: 6px solid var(--color-electric-pink);
  transition: box-shadow 0.15s, border-color 0.17s, transform 0.08s;
  color: #23232a;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left: 6px solid var(--color-electric-blue);
  box-shadow: 0 8px 28px 0 rgba(197,51,139,0.11);
  transform: translateY(-3px);
}
.testimonial-details {
  font-style: normal;
  font-weight: 700;
  color: var(--color-electric-pink);
  margin-left: auto;
  font-size: 0.97rem;
  text-align: right;
  min-width: 120px;
}
.testimonial-card p, .testimonial-card .testimonial-details {
  color: #23232a;
}

/* ==================
    BLOG, FAQ, LISTS
   ================== */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-preview {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 13px 0 rgba(39,40,45,0.09);
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 300px;
  padding: 24px 18px 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-preview h2 {
  font-size: 1.12rem;
  color: var(--color-electric-blue);
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 3px 17px 0 rgba(201,181,133,0.065);
  margin-bottom: 14px;
  padding: 18px 16px;
  cursor: pointer;
  border-left: 5px solid var(--color-secondary);
  transition: border-color 0.2s, box-shadow 0.12s, transform 0.1s;
}
.faq-item.open, .faq-item:focus-within {
  border-left: 5px solid var(--color-electric-blue);
  box-shadow: 0 7px 26px 0 rgba(39,40,45,0.07);
  transform: translateY(-2px) scale(1.018);
}
.faq-item h3 {
  font-size: 1rem;
  color: var(--color-electric-pink);
}
.faq-answer {
  margin-top: 8px;
  color: #23232a;
  display: block;
  font-size: 1rem;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1rem;
  background: #F8F5FF;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(39,40,45,0.04);
  padding: 14px 14px;
  margin-bottom: 7px;
}
.steps-list img {
  width: 34px;
  margin-right: 10px;
}

/* ==========================
   CONTACT & ADDRESS DETAILS
   ========================== */
.contact-section .container, .map-section .container {
  padding: 0 10px;
}
.contact-details, .address-details {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 13px 0 rgba(39,40,45,0.09);
  padding: 24px 18px;
  margin-top: 24px;
}
.contact-details ul {
  list-style: none;
  margin-bottom: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--color-electric-blue);
}
.contact-details img {
  width: 24px;
  height: 24px;
}
.address-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* ========================
    FOOTER
   ======================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 38px 0 18px 0;
  border-top: 4px solid var(--color-secondary);
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-brand {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-brand img {
  height: 40px;
  margin-bottom: 10px;
}
.footer-links {
  flex: 1 1 170px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  font-size: 1rem;
  color: var(--color-secondary);
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.14s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--color-electric-yellow);
}
.footer-social {
  flex: 1 1 100px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.footer-social a img {
  width: 30px; height: 30px;
  filter: grayscale(0%) contrast(1.18) brightness(1.1);
  transition: filter 0.14s, transform 0.14s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: grayscale(0%) contrast(2.8) brightness(1.8);
  transform: scale(1.1) rotate(-6deg);
}

/* ===============
    LEGAL SECTION
   =============== */
.legal-section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(39,40,45,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal-section h1, .legal-section h2 { color: var(--color-electric-pink); }
.legal-section h2 { margin-top: 1.4em; }
.legal-section ul { margin: 16px 0 20px 24px; list-style: disc; }
.legal-section li { margin-bottom: 8px; }
.legal-section .text-section p { margin-bottom: 13px; }

/* =====================
   MANDATORY FLEX SPACING
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px 0 rgba(39,40,45,0.09);
  padding: 24px 18px 20px 18px;
}
.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;
}

/* ===============
   RESPONSIVE DESIGN
   =============== */
@media (max-width: 1099px) {
  .container { max-width: 97vw; }
  .features-grid, .features-list, .investment-options, .team-grid, .content-grid, .stats-blocks {
    gap: 18px;
  }
}
@media (max-width: 991px) {
  .container { max-width: 99vw; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .hero-section { padding: 38px 0 23px 0; }
  .card, .blog-preview, .stat, .team-member { min-width: 180px; max-width: 100vw; }
  .features-grid .feature, .features-list .feature, .investment-options .option, .team-member, .stat {
    min-width: 180px; max-width: 90vw;
  }
  footer .container { flex-direction: column; align-items: flex-start; gap: 24px; }
}
@media (max-width: 768px) {
  .hero-section .content-wrapper,
  .cta-section .content-wrapper,
  .newsletter-section .content-wrapper,
  main .container, .content-wrapper, .section {
    padding: 0 4px !important;
  }
  .features-grid,
  .features-list,
  .investment-options,
  .team-grid,
  .content-grid,
  .stats-blocks {
    flex-direction: column;
    gap: 16px;
  }
  .cta-section,
  .newsletter-section,
  .thank-you-section {
    padding: 30px 7px;
    border-radius: 14px;
  }
  .legal-section { padding: 28px 6px; border-radius: 11px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 10px; }
  .mobile-nav { gap: 20px; }
  .footer-brand img { height: 32px; }
  .footer-links { gap: 7px; }
}
@media (max-width: 560px) {
  h1 { font-size: 1.25rem; }
  header .container { height: auto; gap: 11px; }
  .cta-btn { font-size: 0.98rem; padding: 9px 18px; }
  .footer-brand, .footer-links, .footer-social { align-items: flex-start; }
}

/* ==============
    MICRO-ANIMATIONS
   ============= */
a, .cta-btn, .mobile-menu-toggle, .mobile-menu-close, .faq-item, .feature, .stat, .blog-preview, .testimonial-card, .team-member {
  transition: all 0.18s cubic-bezier(0.68,-0.55,0.27,1.55);
}

/* ==============
    COOKIE BANNER
   ============= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: linear-gradient(92deg, var(--color-electric-pink), var(--color-electric-yellow));
  color: var(--color-primary);
  box-shadow: 0 -4px 24px 0 rgba(39,40,45,0.15);
  padding: 24px 16px 16px 16px;
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  font-size: 1.07rem;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s, transform 0.22s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-consent-banner-text {
  flex: 1 1 auto;
  font-family: 'Lato', Arial, sans-serif;
}
.cookie-consent-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 18px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 0;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
  box-shadow: 0 1px 5px 0 rgba(39,40,45,0.09);
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--color-high-energy);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-electric-blue);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-electric-pink);
  border: 2px solid var(--color-electric-pink);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-electric-yellow);
  color: var(--color-primary);
  border-color: var(--color-high-energy);
}
.cookie-btn.settings {
  background: var(--color-electric-pink);
  color: #fff;
  border: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    font-size: 0.95rem;
    padding: 20px 7px 12px 7px;
  }
  .cookie-consent-banner-actions {
    gap: 8px;
  }
}

/* =========================
   COOKIE MODAL (PREFERENCES)
   ========================= */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2001;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(39,40,45,0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s; 
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 7px 37px 0 rgba(197,51,139,0.14);
  padding: 32px 26px 22px 26px;
  width: 95vw;
  max-width: 440px;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2020;
  animation: popupScaleIn 0.33s cubic-bezier(.68,-0.55,.27,1.55) 1;
}
@keyframes popupScaleIn {
  from { transform: scale(0.65) translateY(70px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-electric-pink);
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 900;
  text-align: left;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal-category label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-modal .toggle-switch,
.cookie-modal .toggle-switch input[type="checkbox"] {
  position: relative;
  width: 44px;
  height: 26px;
  margin: 0;
  border-radius: 99px;
  background: #eee;
  vertical-align: middle;
  display: inline-block;
}
.cookie-modal .toggle-switch input[type="checkbox"] {
  opacity: 0;
  cursor: pointer;
}
.cookie-modal .toggle-slider {
  position: absolute;
  top: 50%; left: 3px;
  width: 36px; height: 20px;
  background: #eee;
  border-radius: 15px;
  transform: translateY(-50%);
  transition: background 0.19s;
}
.cookie-modal .toggle-switch input[type="checkbox"]:checked + .toggle-slider {
  background: var(--color-high-energy);
}
.cookie-modal .toggle-slider::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 7px 0 rgba(39,40,45,0.09);
  transition: transform 0.19s;
  z-index: 2;
}
.cookie-modal .toggle-switch input[type="checkbox"]:checked + .toggle-slider::before {
  transform: translateX(16px);
  background: #FFF;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 9px;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie-modal-actions .cookie-btn {
  min-width: 120px;
}
.cookie-modal .modal-close-btn {
  position: absolute;
  top: 15px; right: 22px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-electric-pink);
  cursor: pointer;
  z-index: 2;
  transition: color 0.13s;
}
.cookie-modal .modal-close-btn:hover { color: var(--color-high-energy); }

@media (max-width: 540px) {
  .cookie-modal { padding: 14px 3vw 16px 3vw; border-radius: 12px; }
  .cookie-modal .modal-close-btn { right: 8px; top: 8px; }
}

/* =============================
   HELPER & UTILITY CLASSES
   ============================= */
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex-center { display: flex; align-items: center; justify-content: center; }

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