/* ---------------------------
   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,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F8FA;
  color: #275760;
  font-family: 'Open Sans', Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
}
input, button, textarea, select {
  font: inherit;
  box-sizing: border-box;
}
:root {
  --color-primary: #275760;
  --color-secondary: #A4CBAE;
  --color-accent: #F7F8FA;
  --color-creative1: #FFBC42;
  --color-creative2: #E84855;
  --color-creative3: #43BCCD;
  --color-creative4: #AC5AFA;
  --transition: .2s cubic-bezier(.45,.22,.27,1.55);
  --radius: 20px;
  --shadow-main: 0 4px 24px 0 rgba(39,87,96,0.06);
}

/* -------------------
   FONTS (Use loaded webfonts or fallback)   
---------------------*/
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 16px;
}
h1, h2, h3, h4 {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.3rem; margin-bottom: 20px; color: var(--color-creative3); }
h2 { font-size: 1.7rem; margin-bottom: 16px; color: var(--color-creative1); }
h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--color-secondary); }
h4 { font-size: 1rem; color: var(--color-primary); }

strong { font-weight: 700; }
em, i { font-style: italic; }

/* Creative Artistic Typography Patterns */
h1, h2, h3 {
  text-shadow: 1px 2px 0px var(--color-creative2),
               0px 2px 10px rgba(172,90,250,0.09);
  letter-spacing: 2px;
}

/* ----------------------
    UNIVERSAL CONTAINER & LAYOUT FLEXBOX
---------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px 0 rgba(67,188,205,0.06), 0 2px 12px rgba(172,90,250,0.05);
}

/* -------------------------------------
   HEADER/NAVIGATION
-------------------------------------*/
header {
  width: 100%;
  background: linear-gradient(90deg,var(--color-creative3), var(--color-secondary), var(--color-accent) 70%);
  box-shadow: 0 2px 10px 0 rgba(39,87,96,0.04);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}
header a img {
  height: 56px;
  width: auto;
  margin-right: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
header nav a {
  font-family: 'Nunito', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--color-primary);
  padding: 8px 14px;
  border-radius: 9px;
  transition: all var(--transition);
  background: transparent;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
  box-shadow: 0 2px 8px 0 rgba(172,90,250,.12); 
}

.cta-btn {
  background: var(--color-creative1);
  color: #234F5B;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 12px 32px;
  border: none;
  border-radius: 48px 16px 32px 16px;
  box-shadow: 0 4px 24px 0 rgba(255,188,66,0.11);
  text-shadow: 0 2px 12px rgba(255,255,255,0.13);
  font-size: 19px;
  margin-left: 22px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), color var(--transition);
  position: relative;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-creative2);
  color: #fff;
  transform: scale(1.048) translateY(-2px) rotate(-1deg);
  box-shadow: 0 6px 32px 0 rgba(232,72,85,0.17);
}

/* --------- HAMBURGER MOBILE MENU -------- */
.mobile-menu-toggle {
  background: var(--color-creative2);
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, box-shadow .2s, color .2s;
  margin-left: 20px;
  z-index: 120;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-creative3);
  color: #fff;
  box-shadow: 0 4px 24px rgba(67,188,205,0.10);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(247,248,250,0.98);
  z-index: 400;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform .37s cubic-bezier(.47,1.64,.41,.8), opacity .05s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--color-creative2);
  color: #fff;
  border: none;
  font-size: 2.3rem;
  border-radius: 19px;
  align-self: flex-end;
  margin: 24px 28px 8px 0;
  cursor: pointer;
  transition: background .18s;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-creative3);
}
.mobile-nav {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 28px;
}
.mobile-nav a {
  padding: 13px 34px;
  border-radius: 12px 48px 18px 18px;
  background: none;
  color: var(--color-primary);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  transition: background .18s, color .12s;
  margin-bottom: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-creative4);
  color: #fff;
}

@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 980px) {
  .cta-btn {
    margin-left: 10px;
    padding: 12px 16px;
    font-size: 17px;
  }
}
@media (max-width: 980px) {
  header .container {
    min-height: 66px;
  }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ----------------------
  CREATIVE DIVIDERS & COLOR ACCENTS
---------------------- */
.section:nth-child(even) {
  background: linear-gradient(85deg,#f7f8fa 80%,var(--color-creative1) 99%);
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-main);
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  section {
    padding: 28px 8px 32px 8px;
    margin-bottom: 36px;
  }
}

/* ----------------------
   HERO (/)
---------------------- */
.content-wrapper h1 {
  font-size: 2.3rem;
  color: var(--color-creative3);
}

.content-wrapper p {
  font-size: 1.125rem;
  color: var(--color-primary);
  max-width: 680px;
  margin-bottom: 10px;
}

.content-wrapper ul, .content-wrapper ol {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.content-wrapper li {
  position: relative;
  padding-left: 26px;
  color: var(--color-creative2);
  font-size: 1rem;
}
.content-wrapper li::before {
  content: '\2605';
  font-size: 1em;
  color: var(--color-creative1);
  position: absolute;
  left: 0;
  top: 2px;
}

/* ----------------------------
   FEATURE GRID & CARDS
----------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 23px;
  padding: 28px 20px;
  box-shadow: 0 4px 18px 0 rgba(44,187,202,0.11);
  min-width: 210px;
  max-width: 270px;
  flex: 1 1 220px;
  position: relative;
  transition: transform .18s, box-shadow .18s;
}
.feature-item img {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 4px 12px var(--color-creative3, #43BCCD));
  margin-bottom: 8px;
  border-radius: 14px;
  background: var(--color-accent);
}
.feature-item h3 {
  margin-bottom: 7px;
}
.feature-item p {
  font-size: 1.01rem;
  color: var(--color-primary);
}
.feature-item:hover, .feature-item:focus {
  transform: translateY(-4px) scale(1.036) rotate(-0.7deg);
  box-shadow: 0 10px 24px 0 rgba(172,90,250,0.17);
  z-index: 2;
}

/* -----------------
  .card-container, .card, .card-content
------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px 0 rgba(172,90,250,0.07);
  transition: box-shadow .19s, transform .18s;
  padding: 22px 24px;
  flex: 1 1 260px;
  min-width: 200px;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 32px 0 rgba(232,72,85,0.12);
  transform: scale(1.02) translateY(-2px) rotate(1deg);
  z-index: 1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* -----------------
   Service List Cards (services.html)
------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
}
.service-item {
  background: #fff;
  border-radius: 20px 48px 28px 18px;
  box-shadow: 0 4px 20px 0 rgba(39,87,96,.09);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  gap: 12px;
  position: relative;
  transition: transform .17s, box-shadow .19s;
}
.service-item img {
  width: 52px; height: 52px;
  margin-bottom: 7px;
  border-radius: 11px;
  background: var(--color-accent);
  box-shadow: 0 3px 8px rgba(39,87,96,0.06);
}
.service-item h2 {
  color: var(--color-creative4);
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.service-item p {
  color: var(--color-primary);
  font-size: 1.01rem;
}
.service-item strong {
  color: var(--color-creative2);
  font-weight: 700;
  font-size: 1.08em;
  margin-left: 4px;
}
.service-item:hover, .service-item:focus {
  transform: translateY(-3px) scale(1.03) rotate(-0.5deg);
  box-shadow: 0 10px 30px rgba(232,72,85,0.14);
  z-index: 2;
}

/* ---------------
   FAQ Sections
----------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 24px 18px 28px 18px;
  box-shadow: 0 2px 14px 0 rgba(172,90,250,0.07);
  padding: 24px 18px 16px 24px;
  transition: box-shadow .15s, transform .14s;
}
.faq-item h2 {
  color: var(--color-creative4);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.faq-item p { color: var(--color-primary); }
.faq-item:hover {
  box-shadow: 0 4px 18px 0 rgba(67,188,205,0.10);
  transform: scale(1.018) translateY(-1px) rotate(-0.5deg);
}

/* -----------
   TESTIMONIAL CARDS
-------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fefefe;
  border-radius: 20px 30px 30px 20px;
  box-shadow: 0 2px 14px 0 rgba(39,87,96,0.09);
  margin-bottom: 20px;
  border: 2px solid var(--color-secondary);
  font-size: 1.04rem;
  color: #1d2b33;
  max-width: 670px;
  position: relative;
  transition: border-color .14s, background .18s, box-shadow .17s;
}
.testimonial-card strong { color: var(--color-creative3); }
.testimonial-card:hover {
  background: #fffdf8;
  box-shadow: 0 8px 30px rgba(255,188,66,0.13);
  border-color: var(--color-creative1);
}
.testimonial-card p {
  color: #122125;
  font-style: italic;
  margin-right: 18px;
}
.testimonial-card span {
  color: var(--color-creative2);
  font-size: .998rem;
}

/* -------
   TABLE PRICES
--------- */
table {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px 0 rgba(39,87,96,0.06);
}
th, td {
  padding: 13px 16px;
  font-size: 1rem;
  color: var(--color-primary);
  border-bottom: 1px solid #ececec;
}
thead th {
  background: var(--color-creative3);
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
}
tbody tr:last-child td { border-bottom: none; }

/* -----------
   CONTACT DETAILS
------------ */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
  font-size: 1.08em;
}
.contact-details a {
  color: var(--color-creative4);
  text-decoration: underline dotted;
  transition: color .16s;
  word-break: break-all;
}
.contact-details a:hover {
  color: var(--color-creative2);
  text-decoration: underline;
}

/* -----------
   FOOTER
----------- */
footer {
  width: 100%;
  background: linear-gradient(87deg, var(--color-creative1) 4%, var(--color-secondary) 77%, var(--color-accent) 95%);
  color: var(--color-primary);
  box-shadow: 0 -2px 18px rgba(172,90,250,0.04);
  padding-top: 24px;
  padding-bottom: 24px;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 36px;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  width: 48px;
  height: auto;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact span {
  font-size: 1em;
  color: #22404b;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0;
}
.footer-contact img {
  width: 18px; height: 18px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin: 6px 0;
}
.footer-social a img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(172,90,250,0.08);
  transition: filter .17s;
  background: #fff;
  padding: 2px;
}
.footer-social a:hover img {
  filter: brightness(1.28) drop-shadow(0 2px 6px var(--color-creative2));
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: .99em;
}
.footer-menu a {
  color: #234F5B;
  text-decoration: none;
  padding: 6px 9px;
  border-radius: 7px;
  transition: background .13s,color .15s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  background: var(--color-creative4);
  color: #fff;
}
.footer-credits {
  margin-top: 12px;
}
.footer-credits small {
  color: #275760;
  font-size: 0.99em;
  font-family: 'Open Sans', sans-serif;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-logo img { margin-bottom: 0; }
}

/* -----------------
   Responsive Cards: Grid to Col
----------------- */
@media (max-width: 860px) {
  .feature-grid, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 22px!important;
    align-items: stretch;
  }
  .service-item, .feature-item, .card {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 680px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper { gap: 18px; }
}

/* -------------------
   Responsive Text-Image Flex
------------------- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --------------
   BUTTONS & INTERACTIVES
--------------- */
button, .cta-btn {
  cursor: pointer;
}
button:disabled { opacity: 0.48; cursor: not-allowed; }

/* Micro-interactions */
.cta-btn:active {
  transform: scale(.98);
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-creative4);
  outline-offset: 2px;
}

/* -----------------
   Animations
------------------ */
@keyframes fadeInBottom {
  from { opacity:0; transform:translateY(30px) }
  to   { opacity:1; transform:translateY(0) }
}
@keyframes slideInLeft {
  from { transform:translateX(-120vw); }
  to   { transform:translateX(0); }
}
@keyframes slideOutLeft {
  from { transform:translateX(0); }
  to   { transform:translateX(-120vw); }
}

/* ---------------------------
  COOKIE CONSENT BANNER
---------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: linear-gradient(87deg, var(--color-creative1) 2%, var(--color-secondary) 96%);
  color: #184248;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 32px rgba(172,90,250,0.09);
  padding: 22px 18px;
  gap: 22px;
  width: 100vw;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.04em;
  animation: fadeInBottom .6s;
}
.cookie-banner__text {
  max-width: 640px;
  flex: 2 1 380px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  border: none;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  border-radius: 32px 12px 21px 8px;
  box-shadow: 0 1px 6px 0 rgba(232,72,85,0.11);
  padding: 9px 26px;
  margin: 0 2px;
  transition: background .18s, color .13s, transform .13s;
}
.cookie-accept {
  background: var(--color-creative2);
  color: #fff;
}
.cookie-accept:hover,
.cookie-accept:focus {
  background: var(--color-creative3);
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}
.cookie-reject {
  background: #fff;
  color: var(--color-creative2);
  border: 1.5px solid var(--color-creative2);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--color-creative2);
  color: #fff;
}
.cookie-settings {
  background: var(--color-secondary);
  color: #2d3e44;
  border: none;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--color-creative4);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    font-size: 1em;
    padding: 13px 10px 17px 10px;
  }
  .cookie-banner__actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }
}

/* -----------------------------
COOKIE CONSENT MODAL OVERLAY
------------------------------ */
.cookie-modal {
  position: fixed;
  z-index: 12000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(33,44,60,0.29);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBottom .23s;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 32px 21px 38px 16px;
  max-width: 500px;
  min-width: 300px;
  box-shadow: 0 6px 35px rgba(67,188,205,.13);
  padding: 34px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInBottom .5s;
  position: relative;
}
.cookie-modal__header {
  font-size: 1.32rem;
  font-family: 'Nunito';
  font-weight: 700;
  color: var(--color-creative4);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  color: var(--color-primary);
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--color-creative2);
}
.cookie-category .always-on {
  color: var(--color-creative3);
  font-size: 0.97em;
  margin-left: 8px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  top: 11px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--color-creative2);
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: var(--color-creative3);
}

/* Hide cookie modal by default */
.cookie-modal { display: none; }
.cookie-modal.open { display: flex; }

/* ----------- MOBILE RESPONSIVENESS ----------- */
@media (max-width: 600px) {
  .footer-contact, .footer-social, .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 500px) {
  .footer-menu { flex-direction: column; }
  .footer-social { gap: 12px; }
  .footer-contact, .footer-credits, .footer-logo {
    margin-bottom: 8px;
  }
}

/* ----- UTILITY CLASSES --------- */
.text-center { text-align: center; }
[hidden] { display: none!important; }

/* -------------
  Custom Artistic Touches
------------------- */
.feature-item::after, .service-item::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -15px; right: -15px;
  width: 32px; height: 32px;
  background: var(--color-creative4);
  opacity: 0.13;
  border-radius: 45% 55% 30% 70%;
  z-index: 0;
  pointer-events: none;
  filter: blur(2.5px);
}
.card::after {
  content: '';
  display: block;
  position: absolute;
  top: -10px; left: -12px;
  width: 28px; height: 28px;
  background: var(--color-creative1);
  opacity: .11;
  border-radius: 60% 30% 65% 45%;
  pointer-events: none;
}

/* -------------
   SCROLLBAR ARTISTIC
-------------*/
::-webkit-scrollbar {
  width: 13px; height:13px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, var(--color-secondary), var(--color-creative4));
  border-radius: 16px;
}
::-webkit-scrollbar-track {
  background: #f8fafb;
}

/* -------------
   FORM ELEMENTS
------------- */
input, textarea {
  padding: 9px 13px;
  border-radius: 14px;
  border: 1.4px solid var(--color-secondary);
  background: #f7fcfc;
  font-size: 1.06em;
  margin-bottom: 12px;
  color: var(--color-primary);
  box-shadow: 0 1px 5px 0 rgba(67,188,205,0.07);
  transition: border .13s;
}
input:focus, textarea:focus {
  border-color: var(--color-creative4);
  outline: none;
}

/* ----------------------------------
    FOCUS INDICATION FOR ACCESSIBILITY
----------------------------------- */
:focus-visible {
  outline: 2.5px solid var(--color-creative4);
  outline-offset: 1.5px;
  transition: none;
}

/* Hide visually for screen readers */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px; width: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  position: absolute;
}
