/* PIXEL FLICKER — style.css — Vibrant Energetic Theme */

/* ===================================== */
/*        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 { min-height: 100%; }
body { min-height: 100%; background: #F4F9FB; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: color 0.18s; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }

/* ===================================== */
/*           VARIABLES & BRAND           */
/* ===================================== */
:root {
  --pf-primary: #1B2234;
  --pf-secondary: #27B6D1;
  --pf-accent: #F4F9FB;
  --pf-pink: #FC2786;
  --pf-yellow: #F9CA24;
  --pf-green: #17D181;
  --pf-orange: #F97616;
  --pf-blue: #0084FF;
  --pf-light: #FFFFFF;
  --pf-dark: #111320;

  --font-display: 'Orbitron', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;

  --base-radius: 14px;
  --card-radius: 20px;
  --shadow-lg: 0 6px 36px rgba(27,34,52,0.16);
  --shadow-md: 0 2px 12px rgba(27,34,52,0.12);
  --shadow-sm: 0 1px 4px rgba(27,34,52,0.09);

  --transition: 0.22s cubic-bezier(.38,.94,.74,.57);
}

@font-face {
  font-family: 'Orbitron';
  src: local('Orbitron'), url('https://fonts.googleapis.com/css?family=Orbitron:700,900&display=swap');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
  font-display: swap;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--pf-primary);
  background: var(--pf-accent);
  overflow-x: hidden;
}

::selection { background: var(--pf-secondary); color: #fff; }

/* ===================================== */
/*         CONTAINER & LAYOUT            */
/* ===================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* Sections */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pf-accent);
  border-radius: var(--card-radius);
}

/* Card Flexbox Patterns */
.card-container,
.value-props-grid,
.benefits-grid,
.trend-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card,
.value-props-grid > div,
.benefits-grid > div,
.trend-categories-grid > div {
  background: #fff;
  border-radius: var(--card-radius);
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-md);
  padding: 24px 20px;
  flex: 1 1 270px;
  min-width: 250px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover,
.value-props-grid > div:hover,
.benefits-grid > div:hover,
.trend-categories-grid > div:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.035);
}

.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;
  min-height: 110px;
  background: #fff;
  color: var(--pf-primary);
  border-radius: var(--base-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  font-size: 1.12em;
  font-style: italic;
  position: relative;
  overflow: visible;
}
.testimonial-card strong {
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-size: 0.95em;
  color: var(--pf-secondary);
  margin-left: 12px;
}

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

/* =================== */
/*        HEADER       */
/* =================== */
header {
  background: #fff;
  border-bottom: 2px solid var(--pf-secondary);
  box-shadow: 0 4px 24px 0 rgba(39,182,209,0.07);
  position: sticky;
  top: 0; left: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 11px;
  padding-bottom: 11px;
}
header a img {
  height: 48px;
  max-height: 64px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.09em;
  font-weight: 700;
  letter-spacing: 0.024em;
  color: var(--pf-primary);
  position: relative;
  padding: 6px 6px;
}
header nav a:not(.cta-btn):after {
  content: '';
  display: block;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--pf-secondary) 60%, var(--pf-pink));
  border-radius: 2px;
  transition: width 0.23s;
  margin: 0 auto;
}
header nav a:not(.cta-btn):hover:after {
  width: 80%;
}
header nav a.cta-btn {
  margin-left: 10px;
  padding: 10px 36px;
  background: var(--pf-secondary);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: 0.06em;
  font-size: 1.15em;
  box-shadow: 0 2px 12px 0 rgba(39,182,209,0.13);
  border: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  text-shadow: 0 1px 9px rgba(20,201,241,0.08);
}
header nav a.cta-btn:hover {
  background: var(--pf-blue);
  box-shadow: 0 5px 28px 0 rgba(39,182,209,0.18);
  transform: translateY(-2px) scale(1.045);
}
.mobile-menu-toggle {
  display: none;
}

/* =============== */
/*   HERO SECTIONS */
/* =============== */
.hero {
  width: 100%;
  min-height: calc(65vh - 84px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(94deg, var(--pf-secondary) 0%, var(--pf-pink) 104%);
  color: #fff;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 8px 32px 0 rgba(27,34,52,0.08);
  margin-bottom: 56px;
  padding: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 290px;
  padding: 48px 20px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.4em;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-shadow: 0 3px 24px rgba(20,201,241,0.16);
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.17em;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fffde0;
  text-shadow: 0 1px 8px rgba(20,201,241,0.10);
}
.hero .cta-btn {
  margin-top: 20px;
  background: var(--pf-yellow);
  color: var(--pf-primary);
  font-size: 1.17em;
  border-radius: 60px;
  padding: 12px 38px;
  font-weight: bold;
  box-shadow: 0 4px 18px 0 rgba(249,202,36,0.11);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.hero .cta-btn:hover {
  background: var(--pf-pink);
  color: #fff;
  transform: scale(1.07) translateY(-2px);
}
/* ===================================== */

.features {
  background: #fff;
  border-radius: var(--card-radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 24px rgba(39,182,209,0.07);
}
.features .content-wrapper > h2 {
  font-family: var(--font-display);
  font-weight: bold;
  color: var(--pf-secondary);
  font-size: 2em;
  letter-spacing: 0.026em;
  margin-bottom: 20px;
}
.features ul,
.features .value-props-grid,
.features .benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features ul li {
  background: var(--pf-accent);
  border-radius: var(--base-radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px 18px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  border-left: 5px solid var(--pf-secondary);
  transition: box-shadow var(--transition), transform var(--transition);
}
.features ul li:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.028);
  border-left-color: var(--pf-pink);
}
.features ul li img {
  height: 36px; width: 36px; margin-bottom: 8px;
}
.features ul li h3 {
  font-family: var(--font-display);
  font-size: 1.18em;
  font-weight: bold;
  color: var(--pf-primary);
}
.features ul li p {
  font-size: 1em;
  color: var(--pf-dark);
}

/* SERVICES & PRICING */
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.services ul li {
  background: var(--pf-secondary);
  color: #fff;
  border-radius: var(--base-radius);
  box-shadow: var(--shadow-md);
  padding: 20px 18px;
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  border-bottom: 4px solid var(--pf-pink);
}
.services ul li strong { color: var(--pf-yellow); font-weight: bold; font-size: 1.07em; margin-top: 8px; }
.services ul li:hover {
  background: var(--pf-pink);
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.025);
  border-bottom-color: var(--pf-yellow);
}
.services h2 {
  font-family: var(--font-display);
  font-size: 2em;
  font-weight: bold;
  color: var(--pf-primary);
  letter-spacing: 0.027em;
  margin-bottom: 20px;
}
.services .cta-btn {
  margin-top: 20px;
  padding: 11px 32px;
  background: var(--pf-yellow);
  color: var(--pf-primary);
  font-family: var(--font-display);
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.12em;
  box-shadow: 0 3px 18px 0 rgba(249,202,36,0.11);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.services .cta-btn:hover {
  background: var(--pf-pink);
  color: #fff;
  transform: scale(1.05) translateY(-1px);
}

/* ============= */
/* BLOG HIGHLIGHTS & ARTICLES */
/* ============= */
.blog-highlights {
  background: var(--pf-accent);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
  padding: 30px 20px;
}
.blog-highlights h2 {
  color: var(--pf-primary);
  font-family: var(--font-display);
  font-size: 2em;
  margin-bottom: 12px;
}
.blog-highlights article {
  background: #fff;
  border-radius: var(--base-radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  padding: 18px 16px 18px 22px;
  transition: box-shadow var(--transition), transform var(--transition);
  border-left: 5px solid var(--pf-pink);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog-highlights article:hover {
  box-shadow: var(--shadow-md);
  background: var(--pf-secondary);
  color: #fff;
  border-left-color: var(--pf-yellow);
  transform: scale(1.03);
}
.blog-highlights article h3 {
  font-family: var(--font-display);
  font-size: 1.14em;
  color: inherit;
}
.blog-highlights article p {
  font-size: 1em;
}
.blog-highlights article a {
  color: var(--pf-blue);
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: 0.01em;
  margin-top: 7px;
  transition: color var(--transition);
}
.blog-highlights article:hover a {
  color: #fff000;
}

/* ================ */
/* RATINGS & LISTS  */
/* ================ */
.rating-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0 0 0;
  font-family: var(--font-display);
  font-size: 1.14em;
}
.rating-grid > div {
  background: var(--pf-accent);
  padding: 13px 18px;
  border-radius: var(--base-radius);
  font-weight: 700;
  color: var(--pf-primary);
  margin-right: 12px;
  box-shadow: var(--shadow-sm);
  min-width: 120px;
}

/* ===================================== */
/*        CTAs AND PRIMARY BUTTONS       */
/* ===================================== */
.cta {
  background: linear-gradient(90deg, var(--pf-pink) 0%, var(--pf-yellow) 94%);
  color: var(--pf-primary);
  border-radius: var(--card-radius);
  margin-bottom: 60px;
  box-shadow: 0 5px 36px 0 rgba(252,39,134,0.11);
  padding: 38px 22px;
}
.cta h2 {
  font-size: 2em;
  font-family: var(--font-display);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--pf-primary);
}
.cta p {
  font-size: 1.13em;
  margin-bottom: 16px;
  color: #533504;
}
.cta a.cta-btn {
  padding: 15px 44px;
  background: var(--pf-blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.17em;
  font-weight: 800;
  border-radius: 60px;
  letter-spacing: 0.055em;
  box-shadow: 0 2px 8px 0 rgba(0,132,255,0.10);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.cta a.cta-btn:hover {
  background: var(--pf-pink);
  color: #fff;
  transform: scale(1.06) translateY(-1px);
}

/* =============================== */
/*     TESTIMONIAL CARDS           */
/* =============================== */
.testimonials h2 {
  color: var(--pf-primary);
  font-family: var(--font-display);
  font-weight: bold;
  margin-bottom: 18px;
  font-size: 2em;
}
.testimonials .testimonial-card {
  background: #fff;
  color: var(--pf-primary);
  border-left: 5px solid var(--pf-secondary);
  margin-bottom: 26px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-body);
  font-size: 1.13em;
  transition: box-shadow var(--transition), border-left-color var(--transition), transform var(--transition);
}
.testimonials .testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-left-color: var(--pf-pink);
  transform: scale(1.027);
}

/* ============================== */
/*      SPECIAL GRIDS, LISTS      */
/* ============================== */
.value-props-grid,
.benefits-grid,
.trend-categories-grid {
  padding: 0;
}
.value-props-grid > div,
.benefits-grid > div,
.trend-categories-grid > div {
  padding: 28px 22px;
  min-width: 220px;
}
.value-props-grid > div img,
.benefits-grid > div img,
.trend-categories-grid > div img {
  height: 40px;
  width: 40px;
  margin-bottom: 11px;
}
.value-props-grid > div h3,
.benefits-grid > div h3,
.trend-categories-grid > div h3 {
  font-family: var(--font-display);
  font-size: 1.15em;
  color: var(--pf-secondary);
  font-weight: bold;
  margin-bottom: 6px;
}
.value-props-grid > div p,
.benefits-grid > div p,
.trend-categories-grid > div p,
.trend-categories-grid > div ul {
  font-size: 1em;
}
.trend-categories-grid > div ul li {
  font-size: 1em;
  margin-bottom: 3px;
}
.featured-trends-list,
.benefits-grid ul,
.value-props-grid ul {
  margin-top: 9px;
}

/* ============================== */
/*           TEAM                 */
/* ============================== */
.team ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.team ul li {
  background: var(--pf-blue);
  color: #fff;
  border-radius: var(--base-radius);
  box-shadow: var(--shadow-sm);
  flex: 1 1 220px;
  min-width: 200px;
  padding: 18px 14px;
  margin-bottom: 16px;
  font-size: 1.03em;
  font-family: var(--font-body);
  transition: box-shadow var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}
.team ul li strong {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.16em;
}
.team ul li span {
  display: block;
  margin-top: 6px;
  font-size: 1em;
}
.team ul li:hover {
  background: var(--pf-pink);
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: scale(1.024);
}

/* ============================== */
/*      LEGAL / SIMPLE PAGES      */
/* ============================== */
.legal .container,.legal .content-wrapper {
  padding: 0;
  max-width: 845px;
}
.legal h1, .legal h2 {
  font-family: var(--font-display);
  font-size: 1.5em;
  font-weight: bold;
  color: var(--pf-primary);
}
.legal h1 { margin-bottom: 7px; }
.legal h2 { margin: 13px 0 8px 0; }
.legal .text-section {
  font-size: 1em;
  background: #fff;
  border-radius: var(--base-radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px;
  margin-top: 12px;
}
.legal .text-section h3 {
  color: var(--pf-blue);
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.05em;
  margin-top: 15px;
  margin-bottom: 4px;
}

/* =====================================
   ====================
         FOOTER
   ====================
===================================== */
footer {
  background: var(--pf-primary);
  color: #fff;
  padding: 35px 0 25px 0;
  font-size: 0.98em;
  letter-spacing: 0.01em;
  border-top: 3px solid var(--pf-secondary);
  z-index: 1;
}
footer .container { flex-direction: column; }
footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  justify-content: center;
}
footer .footer-nav a {
  color: var(--pf-yellow);
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1em;
  transition: color var(--transition);
}
footer .footer-nav a:hover { color: var(--pf-pink); }
footer p {
  color: #FFFCEE;
  text-align: center;
  font-size: 1em;
  line-height: 1.6;
}

/* =====================================
   ==   RESPONSIVENESS & FLEX PATTERNS ==
   ===================================== */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .hero .container { padding: 26px 7px; }
  .features ul li,
  .services ul li,
  .value-props-grid > div,
  .benefits-grid > div,
  .trend-categories-grid > div,
  .team ul li {
    min-width: 170px;
    flex-basis: 100%;
    max-width: 100%;
  }
  .rating-grid { flex-direction: column; gap: 12px; }
}
@media (max-width: 768px) {
  header nav { display: none; }
  .mobile-menu-toggle {
    display: inline-block;
    font-size: 1.7em;
    background: var(--pf-secondary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 14px;
    cursor: pointer;
    position: relative;
    z-index: 1102;
    box-shadow: 0 2px 12px 0 rgba(39,182,209,0.08);
    margin-left: 10px;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  }
  .mobile-menu-toggle:hover {
    background: var(--pf-pink);
    color: #fff;
  }
  .mobile-menu {
    position: fixed;
    top: 0; left: 0;
    height: 100%; width: 100vw;
    background: rgba(21,18,39, 0.97);
    z-index: 1101;
    transition: transform var(--transition), opacity var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: auto;
    padding-top: 20px;
    transform: translateX(-100vw);
    opacity: 0;
    pointer-events: none;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-close {
    font-size: 2.5em;
    background: none;
    border: none;
    color: var(--pf-yellow);
    cursor: pointer;
    margin: 0 16px 20px 20px;
    transition: color var(--transition), transform var(--transition);
    align-self: flex-end;
    z-index: 1110;
  }
  .mobile-menu-close:hover { color: var(--pf-pink); transform: scale(1.13); }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 36px;
    gap: 26px;
    margin-top: 14px;
    width: 90vw;
  }
  .mobile-nav a {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.18em;
    font-weight: bold;
    padding: 12px 0;
    border-bottom: 2px solid rgba(39,182,209,0.19);
    width: 100%;
    transition: color var(--transition), background var(--transition), letter-spacing 0.2s;
    border-radius: 4px;
  }
  .mobile-nav a:last-child {
    background: var(--pf-secondary);
    color: #fff;
    border: none;
    border-radius: 22px;
    margin-top: 10px;
    text-align: center;
    font-size: 1.16em;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 12px 0 rgba(39,182,209,0.16);
    padding: 12px 28px;
    align-self: center;
  }
  .mobile-nav a:hover {
    background: var(--pf-pink);
    color: #fffde6;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .features ul, .services ul, .value-props-grid, .benefits-grid, .trend-categories-grid, .team ul {
    flex-direction: column;
    gap: 20px;
  }
  .section, .features, .services, .cta, .blog-highlights, .testimonials, .workshop-overview, .event-reports {
    padding: 30px 7px;
    margin-bottom: 36px;
  }
  .content-wrapper { gap: 13px; }
  .hero { min-height: 340px; border-radius: 0 0 22px 22px; }
  .hero h1 { font-size: 1.6em; }
  .blog-highlights h2, .features h2, .cta h2, .testimonials h2 { font-size: 1.3em; }
  .content-grid { flex-direction: column; gap: 13px; }
}
@media (max-width: 530px) {
  .hero .container { padding: 6px 2px; }
  .hero .content-wrapper { gap: 8px; }
  .features, .services, .cta, .team, .blog-highlights, .testimonials {
    padding: 18px 2px;
    margin-bottom: 24px;
  }
  header .container { padding: 3px 7px; }
  .card, .value-props-grid > div, .benefits-grid > div, .trend-categories-grid > div {
    padding: 14px 8px;
  }
}
@media (max-width: 700px) {
  .text-image-section,
  .content-grid {
    flex-direction: column !important;
    gap: 15px !important;
    align-items: flex-start !important;
  }
}

/* ===================================== */
/* =========   TYPOGRAPHY   ============ */
/* ===================================== */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: bold; color: var(--pf-primary); line-height: 1.17; }
h1 { font-size: 2.4em; margin-bottom: 9px; }
h2 { font-size: 2em; margin-bottom: 7px; }
h3 { font-size: 1.22em; margin-bottom: 6px; }
h4 { font-size: 1.07em; margin-bottom: 4px; }
p, li, ul, ol { font-size: 1em; color: var(--pf-primary); }
strong { font-weight: bold; color: var(--pf-secondary); }

@media (max-width: 768px) {
  h1 { font-size: 1.37em; }
  h2 { font-size: 1.13em; }
  h3 { font-size: 1em; }
}

/* =============================== */
/* BUTTONS, ANIMATION, INTERACTORS */
/* =============================== */
button, .cta-btn, input[type=submit] {
  outline: none;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cta-btn:focus, .cta-btn:active,
button:focus, button:active {
  outline: 3px solid var(--pf-yellow);
  outline-offset: 1px;
  box-shadow: 0 0 0 3px #fcd21d55;
}

/* ========================================= */
/* ========== COOKIE BANNER ================ */
/* ========================================= */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--pf-pink) 0%, var(--pf-secondary) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1em;
  z-index: 1999;
  box-shadow: 0 -6px 28px 0 rgba(39,182,209,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 18px 22px 24px;
  animation: cookieSlideIn .7s cubic-bezier(.77,0,.18,1) 1;
  gap: 24px;
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
#cookie-banner p { color: #fff; max-width: 680px; }
#cookie-banner .cookie-btns {
  display: flex; gap: 14px;
}
#cookie-banner button {
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 700;
  padding: 9px 25px;
  margin-right: 3px;
  border-radius: 60px;
  border: none;
  outline: none;
  box-shadow: 0 1px 6px 0 rgba(39,182,209,0.14);
  margin-bottom: 2px;
  background: #fff;
  color: var(--pf-primary);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
#cookie-banner button.accept-all {
  background: var(--pf-yellow);
  color: var(--pf-dark);
}
#cookie-banner button.accept-all:hover {
  background: var(--pf-green);
  color: #fff;
}
#cookie-banner button.reject-all {
  background: var(--pf-pink);
  color: #fff;
}
#cookie-banner button.reject-all:hover {
  background: #fff;
  color: var(--pf-pink);
  border: 2px solid var(--pf-pink);
}
#cookie-banner button.cookie-settings {
  background: var(--pf-secondary);
  color: #fff;
}
#cookie-banner button.cookie-settings:hover { background: var(--pf-yellow); color: var(--pf-dark); }

/* COOKIE MODAL */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(27,34,52, 0.88);
  z-index: 2001;
  justify-content: center;
  align-items: center;
  animation: fadeModalIn 0.36s cubic-bezier(.77,0,.18,1) 1;
}
#cookie-modal-overlay.active { display: flex; }
@keyframes fadeModalIn { from { opacity: 0; } to { opacity: 1; } }
#cookie-modal {
  background: #fff;
  color: var(--pf-primary);
  border-radius: 18px;
  box-shadow: 0 6px 40px 0 rgba(39,182,209,0.16);
  padding: 34px 30px 24px 30px;
  min-width: 330px;
  max-width: 96vw;
}
#cookie-modal h3 {
  font-family: var(--font-display);
  margin-bottom: 9px;
  color: var(--pf-primary);
}
#cookie-modal label {
  display: flex; align-items: center;
  font-size: 1.07em;
  font-weight: 500;
  margin-bottom: 14px;
}
#cookie-modal input[type=checkbox] {
  accent-color: var(--pf-secondary);
  width: 22px; height: 22px;
  margin-right: 13px;
}
#cookie-modal .modal-btns {
  display: flex; flex-direction: row; gap: 12px; margin-top: 13px;
}
#cookie-modal .modal-btns button {
  font-family: var(--font-display);
  font-size: 1em;
  border-radius: 60px;
  background: var(--pf-yellow);
  color: var(--pf-dark);
  border: none;
  padding: 9px 24px;
  font-weight: 700;
}
#cookie-modal .modal-btns button:hover {
  background: var(--pf-pink);
  color: #fff;
}
@media (max-width: 620px) {
  #cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 15px 4px;
  }
  #cookie-banner .cookie-btns {
    gap: 10px;
  }
  #cookie-modal {
    min-width: 180px; max-width: 96vw; padding: 22px 10px 17px 12px;
  }
}

/* ============== */
/*  Animations    */
/* ============== */
a, button, .cta-btn, .card, .services ul li {
  transition: all 0.23s cubic-bezier(.38,.94,.74,.57);
}

/* =============== */
/*  UTILS, OTHERS  */
/* =============== */
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mt-4 { margin-top: 26px; }
.mb-4 { margin-bottom: 26px; }

/* ================ */
/*  OVERRIDES ETC.  */
/* ================ */
h1,h2,h3,h4,h5,h6 {
  margin-top: 0;
  margin-bottom: 0.6em;
}
p {
  margin-bottom: 1.15em;
}
ul,ol {
  padding-left: 1.3em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.4em;
}

/* END OF STYLE */
