/* ===== CSS RESET & NORMALIZE ===== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, 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 {box-sizing: border-box; scroll-behavior: smooth;}
*, *::before, *::after {box-sizing: inherit;}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {display: block;}
body {line-height: 1.6;}
ol, ul {list-style: none;}
a {text-decoration: none; color: inherit;}
table {border-collapse: collapse; border-spacing: 0;}
img {max-width: 100%; height: auto; display: block;}

/* ===== BRAND TYPOGRAPHY ===== */
:root {
  --primary: #14305D;
  --secondary: #7FC1E4;
  --accent: #FFFDF6;
  --crea-yellow: #FEE84A; /* creative accent for flair */
  --crea-violet: #8658ED;
  --crea-pink: #FC8989;
  --black: #181a1b;
  --white: #fff;
  --card-shadow: 0 6px 32px 0 rgba(20,48,93,0.08), 0 1.5px 8px 0 rgba(127,193,228,0.10);
  --heading-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-font: 'Roboto', Arial, Helvetica, sans-serif;
}
body {
  background: var(--accent);
  color: var(--primary);
  font-family: var(--body-font);
  font-size: 16px;
  min-height: 100vh;
  overscroll-behavior: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--primary);
}
h1 {font-size: 2.6rem; letter-spacing: -1.5px;}
h2 {font-size: 2rem; letter-spacing: -1px;}
h3 {font-size: 1.5rem;}
h4 {font-size: 1.25rem;}
h5 {font-size: 1.1rem;}
h6 {font-size: 1rem;}

p, li, blockquote, td, th {
  font-family: var(--body-font);
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
}
strong {font-weight: 700; color: var(--crea-violet);}
em {color: var(--crea-pink);}

 

h2 {
  margin-top: 44px;
  margin-bottom: 16px;
  font-size: 2rem;
}

h1 {
  margin-top: 0; margin-bottom: 26px;
}

/* ===== CONTAINER & SPACING SYSTEM ===== */
.container {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px 0 32px 0;
  background: rgba(127, 193, 228, 0.04);
  box-shadow: 0 2px 16px 0 rgba(20,48,93,0.04);
  transition: box-shadow .25s;
}
.section:hover {
  box-shadow: 0 12px 32px 0 rgba(127,193,228,0.17), 0 3px 16px 0 rgba(143,88,237,0.06);
}

/* ===== CARD, GRID, FLEX STRUCTURES ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--card-shadow);
  padding: 26px 22px;
  min-width: 260px;
  min-height: 180px;
  transition: box-shadow .18s, transform .15s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 var(--crea-pink), 0 2px 8px 0 rgba(143,88,237,0.08);
  transform: translateY(-4px) scale(1.025);
}

.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;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 24px 0 rgba(127,193,228,0.21);
  position: relative;
  min-width: 270px;
}
.testimonial-card blockquote {
  color: var(--primary);
  font-size: 1.1rem;
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -0.4px;
  margin: 0 0 10px 0;
}
.testimonial-card cite {
  color: var(--crea-violet);
  font-style: normal;
  font-size: .96rem;
  font-family: var(--body-font);
}

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

/* ===== HERO SECTION ===== */
.hero {
  margin-bottom: 60px;
  padding: 48px 0 44px 0;
  background: linear-gradient(90deg, var(--secondary) 54%, var(--crea-yellow) 87%, var(--accent) 100%);
  border-radius: 0 0 56px 0;
}
.hero .container {
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
}
.hero .content-wrapper {
  max-width: 620px;
}
.hero h1 {
  font-size: 2.8rem;
  text-shadow: 0 2px 16px rgba(127,193,228,0.13);
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.23rem;
  margin-bottom: 28px;
  color: var(--primary);
}

/* ===== ARTISTIC ELEMENTS ON ICONS ===== */
ul li img {
  width: 32px; height: 32px; margin-bottom: 0; margin-right: 14px; vertical-align: middle; border-radius: 12px; box-shadow:0 2px 8px 0 rgba(252,137,137,0.11);
  background: var(--crea-yellow);
}
ul li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 17px;
  font-size: 1.04rem;
  line-height: 1.6;
}

/* ----- PRICING TABLES ARTISTIC STYLE ----- */
table {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(143,88,237,0.10);
}
thead, th {
  background: var(--secondary);
  color: #fff;
  font-size: 1.14rem;
  padding: 16px 12px;
  font-family: var(--heading-font);
}
tr {
  background: #fff;
}
td {
  padding: 15px 9px;
  border-bottom: 1px solid var(--accent);
  font-size: 1rem;
}
tr:last-child td {border-bottom: none;}

/* ----- DETAILS AND FAQ (Accordion) ARTISTIC ----- */
details {
  background: var(--accent);
  border-radius: 14px 0 14px 0;
  border: 2px solid var(--secondary);
  box-shadow: 0 1px 4px 0 rgba(143,88,237,0.11);
  margin-bottom: 18px;
  padding: 10px 18px;
  transition: border .21s;
}
details[open] {
  border: 2px solid var(--crea-violet);
  background: #fff;
}
details summary {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  font-size: 1.07rem;
  outline: none;
  padding: 8px 0;
}
details p {
  margin-top: 12px;
}

/* ----- CTA BUTTONS & LINKS ----- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.13rem;
  background: var(--crea-violet);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(143,88,237,0.17);
  transition: background .2s, color .2s, box-shadow .2s, transform .18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--crea-yellow);
  color: var(--primary);
  box-shadow: 0 6px 32px 0 rgba(252,137,137,0.17), 0 1.5px 8px 0 rgba(127,193,228,0.10);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
nav a:hover, nav a:focus {
  color: var(--crea-pink);
  text-decoration: underline;
}

/* ===== NAVIGATION (DESKTOP & MOBILE) ===== */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  padding: 15px 0 16px 0;
  box-shadow: 0 2px 16px 0 rgba(20,48,93,0.03);
  position: relative;
  z-index: 20;
}
.main-nav img {
  height: 40px;
  width: auto;
  margin-right: 12px;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.nav-links a {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.06rem;
  padding: 6px 12px;
  border-radius: 24px;
  transition: color .16s, background .14s;
  color: var(--primary);
}
.nav-links a.active, .nav-links a:active {
  background: var(--secondary);
  color: #fff;
}

/* ===== MOBILE BURGER MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: var(--crea-violet);
  color: #fff;
  border: none;
  border-radius: 100%;
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  cursor: pointer;
  box-shadow: 0 1px 5px 0 rgba(252,137,137,0.13);
  position: absolute;
  right: 22px; top: 16px;
  z-index: 32;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--crea-yellow);
  color: var(--primary);
}

.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(120deg, var(--crea-yellow) 0%, var(--secondary) 74%, #fff 100%);
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 52px;
  padding-left: 0;
  transform: translateX(-100vw);
  opacity: 0;
  visibility: hidden;
  transition: transform .30s cubic-bezier(0.95,0.09,0.45,1.15), opacity .23s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  position: absolute;
  right: 24px; top: 20px;
  z-index: 1002;
  cursor: pointer;
  width: 48px; height: 48px;
  border-radius: 100%;
  transition: background .18s;
}
.mobile-menu-close:hover {
  background: var(--crea-pink);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 36px 38px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--primary);
  padding: 10px 5px;
  border-radius: 24px 0 24px 0;
  background: rgba(255,255,255,0.19);
  transition: background .17s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--crea-violet);
  color: #fff;
}

@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}

@media (max-width: 1024px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0 10px 0;
  }
  .nav-links { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 900px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0 10px 0;
  }
  .nav-links {flex-wrap: wrap; gap: 7px;}
}

@media (max-width: 768px) {
  .main-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links {
    display: none;
  }
  .cta-btn {margin-left: 0;}
  .mobile-menu-toggle {display: flex;}
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 26px 6px;
    border-radius: 16px 0 16px 0;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .hero {padding: 28px 0 26px 0; border-radius: 0 0 33px 0;}
  .hero h1 {font-size: 1.7rem;}
  .hero p {font-size: 1.08rem;}
  .card, .testimonial-card {
    padding: 17px 9px;
    border-radius: 14px;
    min-width: unset;
    min-height: 120px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .feature-item {gap: 10px;}
}

/* ===== FOOTER STYLES ===== */
footer {
  margin-top: 50px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--crea-yellow) 100%);
  color: var(--primary);
  border-radius: 32px 0 0 0;
  box-shadow: 0 -1px 10px 0 rgba(143,88,237,0.07);
  padding: 38px 14px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-menu a {
  color: var(--primary);
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 14px;
  transition: background .15s, color .12s;
}
.footer-menu a:hover {
  background: #fff;
  color: var(--crea-violet);
  text-decoration: underline;
}
.footer-contact {
  text-align: center;
  font-size: 1rem;
  color: var(--primary);
  font-family: var(--body-font);
  margin-bottom: 0;
}
.footer-contact a {color: var(--crea-violet); transition: color .15s;}
.footer-contact a:hover {color: var(--crea-yellow);}
.footer-logo {
  width: 70px;
  margin: 0 auto 18px auto;
}
.footer-logo img {
  width: 100%;
  min-width: 60px;
}
.footer-copy {
  font-size: 0.97rem;
  color: #333;
  text-align: center;
  padding-bottom: 3px;
  opacity: .75;
}

@media (max-width: 700px) {
  footer {border-radius: 0;}
  .footer-menu {gap: 10px;}
  .footer-logo {margin-bottom: 12px;}
}

/* ===== COOKIE BANNER & COOKIE MODAL ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  width: 100vw;
  background: rgba(255, 253, 246, 0.97);
  box-shadow: 0 -2px 24px 0 rgba(143,88,237,0.10);
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-family: var(--body-font);
  font-size: 1.04rem;
  border-radius: 28px 28px 0 0;
  opacity: 1;
  animation: cookie-slideup .45s cubic-bezier(.08,.82,.49,1.01);
}
@keyframes cookie-slideup {
  from {transform: translateY(100px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  color: var(--primary);
  margin-bottom: 0;
  text-align: center;
}
.cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  font-family: var(--heading-font);
  font-size: 1.07rem;
  border: none;
  padding: 11px 28px;
  border-radius: 20px;
  cursor: pointer;
  margin-bottom: 0;
  transition: background .16s, color .15s;
  box-shadow: 0 1px 7px rgba(143,88,237,0.10);
}
.cookie-btn.accept {
  background: var(--crea-violet);
  color: #fff;
}
.cookie-btn.accept:hover {background: var(--crea-pink); color: #fff;}
.cookie-btn.reject {
  background: var(--crea-yellow);
  color: var(--primary);
}
.cookie-btn.reject:hover {background: var(--crea-pink); color: #fff;}
.cookie-btn.settings {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.settings:hover {background: #fff; color: var(--crea-violet);}

/* COOKIE MODAL (PREFERENCES) */
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2200;
  min-width: 340px;
  max-width: 96vw;
  padding: 36px 30px 28px 30px;
  background: var(--white);
  border-radius: 26px 0 26px 0;
  box-shadow: 0 10px 48px 0 rgba(143,88,237,0.18);
  font-family: var(--body-font);
}
.cookie-modal.open {
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: modalPop .35s cubic-bezier(.37,0,.26,1.32);
}
@keyframes modalPop {
  from {opacity: 0; transform: translate(-50%, -40%);}
  to {opacity: 1; transform: translate(-50%, -50%);}
}
.cookie-modal h3 {
  font-size: 1.30rem;
  font-family: var(--heading-font);
  color: var(--crea-violet);
  margin-bottom: 9px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-cat label {
  font-family: var(--heading-font);
  color: var(--primary);
  font-weight: 500;
}
.cookie-cat input[type="checkbox"] {
  width: 21px; height: 21px;
  accent-color: var(--crea-violet);
  margin-right: 2px;
}
/* Always enabled (Essential) */
.cookie-cat.essential label {
  font-weight: bold;
  color: var(--crea-violet);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal .close-btn {
  background: none;
  color: var(--primary);
  font-size: 1.12rem;
  border: none;
  cursor: pointer;
  padding: 6px 15px;
  border-radius: 13px;
}
.cookie-modal .close-btn:hover {
  background: var(--crea-yellow);
  color: var(--primary);
}
@media (max-width: 580px) {
  .cookie-modal {min-width: 220px; padding: 20px 8px 16px 8px;}
}

/* ===== MISC & DECORATIONS ===== */
.text-section { display: flex; flex-direction: column; gap: 14px; }
.section:last-child {margin-bottom: 0;}

/* Artistic horizontal lines */
hr {
  border: 0;
  border-bottom: 2.5px solid var(--crea-violet);
  border-radius: 6px;
  margin: 24px 0 18px 0;
  opacity: .3;
}

blockquote {
  font-style: italic;
  color: var(--crea-pink);
  background: var(--accent);
  border-left: 5px solid var(--secondary);
  padding: 15px 18px;
  border-radius: 9px;
  margin: 0 0 12px 0;
  font-size: 1.08rem;
}

::-webkit-scrollbar {
  width: 10px; background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary); border-radius: 10px;
}

/* ===== ACCESSIBILITY ===== */
:focus {
  outline: 2.5px dashed var(--crea-violet);
  outline-offset: 2px;
}

@media (max-width: 589px){
  h1 {font-size: 1.1rem;}
  h2 {font-size: 1.0rem;}
}

/* ===== THANK-YOU PAGE .thank-you ===== */
.thank-you {
  min-height: 40vh;
  background: linear-gradient(100deg, var(--secondary) 25%, var(--accent) 80%);
  border-radius: 28px 0 28px 0;
  box-shadow: 0 6px 24px 0 rgba(143,88,237,0.11);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you .container {
  justify-content: center;
  align-items: center;
  padding: 38px 10px;
}

.thank-you .content-wrapper {
  text-align: center;
  max-width: 530px;
  margin: 0 auto;
  align-items: center;
}

.thank-you a.cta-btn {
  margin-top: 26px;
}

/* ===== MISC RESPONSIVE ADJUSTMENTS FOR ARTISTIC LOOK ===== */
@media (max-width: 510px){
  .section, .hero {border-radius: 12px 0 12px 0;}
  h1, h2 {font-size: 1.13rem;}
  .cookie-modal {padding: 11px 2px 11px 2px;}
}

/* ===== ENHANCED CARD/TESTIMONIAL SPACING FOR MOBILE ===== */
@media (max-width: 480px) {
  .card-container, .content-grid, .feature-list, .testimonial-card {gap: 10px;}
  .testimonial-card, .card {margin-bottom: 14px; padding: 10px 4px; font-size: 0.98rem;}
}

/* ===== PRINT ===== */
@media print {
  header, footer, .cookie-banner, .mobile-menu {display: none !important;}
  main {padding-top: 0 !important;}
}

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