/*! RESET & BASELINE 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F4F4;
  color: #1E3A56;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1E3A56;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #E0A135;
  outline-offset: 2px;
}
ul, ol {
  margin: 0 0 16px 24px;
  padding: 0;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background .2s, color .2s;
}
*:focus {
  outline: 2px dashed #E0A135;
}

/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');

/* COLOR VARIABLES FOR FALLBACKS */
:root {
  --color-primary: #1E3A56;
  --color-secondary: #F4F4F4;
  --color-accent: #E0A135;
  --color-bright-pink: #FC78B7;
  --color-playful-green: #51D89A;
  --color-playful-blue: #70B7FE;
  --color-playful-purple: #B068F6;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--color-primary);
  text-shadow: 2px 2px 0 #E0A13519;
  line-height: 1.1;
  
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 18px;
  color: var(--color-primary);
  
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--color-primary);
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #37475A;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* CONTAINERS & LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  margin-bottom: 30px;
  background: #fff;
  border-radius: 24px;
  padding: 40px 20px;
  box-shadow: 0 5px 24px #1e3a5620;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px #70B7FE22;
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 6px 24px #70B7FE36;
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px #E0A13514;
  min-width: 290px;
  max-width: 400px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card p {
  color: #1E3A56;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: var(--color-accent);
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px #FC78B744;
  transform: scale(1.025) rotate(1deg);
}

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

/* ================ HEADER & NAVIGATION ================ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 24px #E0A13512;
  z-index: 40;
  position: sticky;
  top: 0;
}
.logo-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 10px;
  color: var(--color-primary);
  background: transparent;
  transition: background .2s, color .2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #FC78B7 0%, #B068F6 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 30px;
  border-radius: 18px;
  box-shadow: 0 4px 18px #FC78B726, 0 2px 4px #E0A13511;
  margin-left: 16px;
  letter-spacing: 0.01em;
  border: none;
  transition: background .25s, color .18s, transform .2s, box-shadow .2s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #51D89A 10%, #70B7FE 90%);
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 24px #B068F688, 0 2px 8px #70B7FE22;
}

/* ================ MOBILE NAV ================ */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  padding: 4px 20px;
  border-radius: 12px;
  border: none;
  transition: background .16s, color .20s;
  z-index: 1001;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FC78B7;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(115deg, #fff 80%, #51D89A18 100%);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.59,-0.27,.49,1.24);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 16px 28px;
  box-shadow: 4px 0 60px #1E3A5618;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  color: var(--color-primary);
  background: none;
  border: none;
  margin-bottom: 24px;
  padding: 8px 18px 8px 8px;
  border-radius: 50%;
  transition: background .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E0A13522;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--color-primary);
  padding: 16px 0;
  border-radius: 12px;
  transition: background .18s, color .16s;
  background: transparent;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FC78B715;
  color: #B068F6;
}

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

/* ================ SECTION PATTERNS ================ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.feature {
  flex: 1 1 160px;
  min-width: 200px;
  background: #F4F4F4;
  border-radius: 16px;
  box-shadow: 0 2px 8px #E0A13509, 0 1px 2px #70B7FE22;
  padding: 24px 16px 16px 16px;
  text-align: center;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .14s;
  position: relative;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}
.feature:hover {
  box-shadow: 0 6px 20px #51D89A22;
  transform: translateY(-4px) scale(1.04) rotate(-1.5deg);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.service-list li {
  list-style: disc inside;
  background: #51D89A11;
  border-radius: 8px;
  padding: 9px 14px;
  color: #1E3A56;
  transition: background .15s;
}
.service-list li:hover {
  background: #70B7FE21;
}
.learn-more-link {
  color: #B068F6;
  font-weight: 700;
  text-decoration: underline;
  font-size: 1.08rem;
  transition: color .15s;
}
.learn-more-link:hover {
  color: #E0A135;
}

.process-timeline, .approach-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.process-timeline li, .approach-list li {
  position: relative;
  padding-left: 32px;
  color: #1E3A56;
}
.process-timeline li:before, .approach-list li:before {
  content: '';
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg,#FC78B7,#B068F6 70%,#E0A135);
  border-radius: 50%;
  position: absolute;
  left:0; top: 1px;
}

.customer-support, .quality-assurance, .consultation-phrase, .contact-us-snippet, .next-steps-explanation, .thank-you-message {
  background: #70B7FE11;
  border-radius: 13px;
  padding: 18px 16px;
  font-size: 1.01rem;
  margin-bottom: 18px;
  color: #1E3A56;
}

/* ================== BLOG/PROMOS ================== */
.blog-topics-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
.blog-topics-overview li {
  background: #B068F615;
  border-radius: 10px;
  padding: 10px 19px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #1E3A56;
  font-size: 1.01rem;
  transition: background .18s;
}
.blog-topics-overview li:hover {
  background: #70B7FE21;
}

.post-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.post-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px #1E3A5612;
  padding: 24px 14px;
  flex: 1 1 230px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .13s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-card h3 {
  color: #B068F6;
  font-size: 1.18rem;
}
.post-card a {
  color: #70B7FE;
  font-weight: 700;
  text-decoration: underline;
  margin-top: 6px;
  align-self: flex-end;
}
.post-card:hover {
  box-shadow: 0 8px 32px #FC78B722;
  transform: translateY(-4px) scale(1.03);
}
.load-more-button {
  display: inline-block;
  background: #E0A135;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 11px;
  padding: 12px 24px;
  font-size: 1rem;
  margin-top: 20px;
  letter-spacing: .05em;
  box-shadow: 0 2px 8px #E0A13533;
  transition: background .21s, transform .18s;
  cursor: pointer;
}
.load-more-button:hover {
  background: #FC78B7;
  color: #fff;
  transform: scale(1.04) rotate(-1deg);
}

/* ================ PROJECTS CARDS ================ */
.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project-summary-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #51D89A22;
  padding: 26px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 230px;
  transition: box-shadow .2s, transform .13s;
}
.project-summary-card h3 {
  color: #FC78B7;
  margin-bottom: 10px;
}
.project-summary-card:hover {
  box-shadow: 0 8px 32px #70B7FE2c;
  transform: scale(1.02) rotate(1.2deg);
}

/* ================ TESTIMONIALS/REVIEWS ================ */
.testimonial-slider, .reference-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.review-summary, .review-highlights {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  background: #FC78B713;
  border-radius: 12px;
  padding: 11px 18px;
  color: #1E3A56;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 1px 6px #B068F615;
}
.review-summary img, .review-highlights img {
  width: 26px;
  height: 26px;
}

/* ================ BUTTONS & MICRO-INTERACTIONS ================ */
button,
input[type='submit'],
input[type='button'] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 14px;
  border: none;
  background: #1E3A56;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px #1E3A563d;
  transition: background .22s, color .18s, transform .15s;
}
button:hover, button:focus, input[type='submit']:hover {
  background: #FC78B7;
  color: #fff;
  transform: scale(1.03) rotate(-1deg);
}

/* ================ TRUST BADGES ================ */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 16px;
}
.trust-badges img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 1px 5px #51D89A22);
}
.trust-badges span {
  font-size: 1.01rem;
  color: #1E3A56;
  font-weight: 600;
}

/* ================ CONTACT DETAILS ================ */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #51D89A11;
  border-radius: 8px;
  padding: 10px 17px;
  font-size: 1.02rem;
}
.google-map-embed {
  background: #B068F615;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

/* ================ FOOTER ================ */
footer {
  width: 100%;
  padding: 40px 0 18px 0;
  background: #1E3A56;
  color: #fff;
  position: relative;
  margin-top: 40px;
  box-shadow: 0 -2px 18px #B068F625, 0 -1px 2px #E0A13524;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #E0A135;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 2px 7px;
  border-radius: 7px;
  transition: background .16s, color .12s;
}
.footer-nav a:hover{
  background: #FC78B7;
  color: #fff;
}
.brand-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.brand-signature span:first-child {
  font-weight: 900;
  font-size: 1.21rem;
  color: #E0A135;
  font-family: 'Montserrat', Arial, sans-serif;
}
.brand-signature span:nth-child(2) {
  font-size: .98rem;
  color: #fff;
  margin-bottom: 7px;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform .2s, filter .2s;
  filter: grayscale(40%);
  cursor: pointer;
  border-radius: 7px;
}
.social-icons img:hover {
  filter: none;
  transform: rotate(-10deg) scale(1.11);
  box-shadow: 0 2px 8px #70B7FE22;
}

/* ================ COOKIE CONSENT BANNER ================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: 100vw;
  background: #fff;
  color: #1E3A56;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 18px 16px 18px;
  box-shadow: 0 -2px 24px #1E3A5610, 0 -1px 4px #E0A13510;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieBannerAnim .5s cubic-bezier(.72,-0.01,.38,1.14);
}
@keyframes cookieBannerAnim {
  from { transform: translateY(130%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.02rem;
  color: #1E3A56;
  margin-bottom: 4px;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cookie-btn {
  min-width: 102px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 9px 20px;
  background: #1E3A56;
  color: #fff;
  border: none;
  transition: background .15s, color .18s, transform .11s;
  margin-right: 2px;
}
.cookie-btn.accept {
  background: linear-gradient(90deg, #51D89A 60%, #E0A135 100%);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #E0A135;
}
.cookie-btn.reject {
  background: #FC78B7;
}
.cookie-btn.reject:hover {
  background: #B068F6;
}
.cookie-btn.settings {
  background: #70B7FE;
  color: #fff;
}
.cookie-btn.settings:hover {
  background: #B068F6;
}

/* --- Cookie Preferences Modal --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  z-index: 2001;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 48px #B068F615, 0 1px 8px #E0A13522;
  padding: 32px 26px;
  min-width: 330px;
  width: 96vw;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  animation: cookieModalIn .6s cubic-bezier(.56,-0.1,.41,1.34);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translate(-50%, -46%) scale(.89); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  background: #B068F610;
  padding: 7px 12px;
  border-radius: 7px;
}
.cookie-category .toggle {
  min-width: 32px;
  height: 22px;
  background: #E0A13544;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background .14s;
}
.cookie-category .toggle[aria-checked='true'] {
  background: #70B7FE;
}
.cookie-category .toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .20s;
  box-shadow: 0 1px 3px #B068F615;
}
.cookie-category .toggle[aria-checked="true"]:before {
  left: 14px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie-modal-buttons .cookie-btn {
  min-width: 80px;
}
.cookie-modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: transparent;
  color: var(--color-primary);
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  padding: 4px 9px 3px 4px;
  border-radius: 50%;
  transition: background .13s;
}
.cookie-modal-close:hover {
  background: #51D89A14;
}

/* ================ RESPONSIVE ================ */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper, .footer-nav{
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
@media (max-width: 900px) {
  .logo-nav-container {
    padding: 9px 7px;
  }
  .footer-nav,
  .brand-signature {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    padding: 17px 8px;
    border-radius: 14px;
    gap: 14px;
  }
  h1, .h1 { font-size: 1.65rem; }
  h2, .h2 { font-size: 1.23rem; }
  .feature-grid, .card-container, .content-grid, .post-cards-grid, .project-grid, .testimonial-slider, .reference-list {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .contact-details {
    flex-direction: column;
    gap: 12px;
  }
  .mobile-menu {
    padding: 36px 8px 12px 14px;
  }
}
@media (max-width: 500px) {
  .footer-nav {
    flex-direction: column;
    gap: 9px;
  }
}

/* ================ PLAYFUL ANIMATIONS & DYNAMIC ACCENTS ================ */
.cta-btn {
  position: relative;
  overflow: hidden;
}
.cta-btn:after {
  content: '';
  position: absolute;
  left: -60%;
  top: 0;
  width: 140%;
  height: 100%;
  background: linear-gradient(110deg, rgba(255,255,255,0.06) 14%,rgba(255,255,255,0.3) 22%,rgba(255,255,255,0.06) 32%);
  z-index: 1;
  transform: skewX(-16deg);
  transition: left .7s cubic-bezier(.52,.52,.18,.88);
}
.cta-btn:hover:after {
  left: 60%;
}

.feature:before {
  content: '';
  display: block;
  position: absolute;
  top: -20px; left: 18px;
  width: 28px; height: 15px;
  background: linear-gradient(90deg, #FC78B7 0%, #51D89A 100%);
  opacity: .15;
  border-radius: 24px 9px 35px 25px / 15px 19px 4px 35px;
  z-index: 0;
  pointer-events: none;
}
.feature:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -16px; right: 16px;
  width: 18px; height: 18px;
  background: #B068F6;
  opacity: .12;
  border-radius: 50%;
}

.testimonial-card:before {
  content: '';
  position: absolute;
  top: -10px; right: -10px;
  width: 48px; height: 20px;
  background: linear-gradient(-110deg, #70B7FE 0%, #FC78B7 100%);
  opacity: .10;
  border-radius: 40px 8px 38px 30px / 24px 8px 24px 30px;
  z-index: 0;
  pointer-events: none;
}

.project-summary-card:before {
  content: '';
  position: absolute;
  top: -12px; right: 12px;
  width: 23px; height: 12px;
  background: #51D89A;
  opacity: .11;
  border-radius: 19px 6px 23px 7px / 8px 12px 19px 7px;
  z-index: 0;
  pointer-events: none;
}

.post-card:after {
  content: '';
  position: absolute;
  bottom: -8px; left: 24px;
  width: 13px; height: 13px;
  background: #E0A13522;
  border-radius: 6px 13px 13px 4px / 13px 13px 13px 4px;
  z-index: 0;
}

/* Utility */
.text-section, .privacy-text-section, .terms-text-section, .gdpr-text-section, .cookies-text-section {
  margin-bottom: 10px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

/* =========== END =========== */
