/* ===== Septiri Off | Playful Dynamic CSS ===== */
/* === CSS RESET & NORMALIZER === */
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-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: #F1F1F1;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2B2E4A;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* === BRAND COLOR & VARIABLES + PLAYFUL PALETTE === */
:root {
  --primary: #2B2E4A; /* Deep navy-violet */
  --secondary: #E84545; /* Vivid red/pink */
  --accent: #F1F1F1; /* Soft light gray */
  --yellow: #FFE066;
  --aqua: #1BC9C9;
  --orange: #FDA858;
  --purple: #9B59B6;
  --green: #6FCF97;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
}
h1 { font-size: 2.4rem; margin-bottom: 20px; line-height: 1.2; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 18px; line-height: 1.2; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
p, li { font-size: 1rem; line-height: 1.7; margin-bottom: 8px; }
strong { color: var(--secondary); font-weight: bold; }
em { color: var(--purple); font-style: italic; }

/* === CONTAINER & SPACING === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 24px 0 rgba(232,77,149,0.06);
  transition: box-shadow 0.3s;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
    border-radius: 18px;
  }
  .container {
    padding: 0 4px;
  }
}

.content-wrapper, .content-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 1025px) {
  .content-wrapper, .content-grid {
    gap: 32px;
  }
}

.text-section { font-size: 1.13em; font-family: var(--font-body); }
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* === FLEXBOX PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(43,46,74,0.10);
  background: #fff;
  position: relative;
  transition: transform 0.18s cubic-bezier(.3,1.5,.5,1), box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-7px) scale(1.025) rotate(-2deg) skewX(1deg);
  box-shadow: 0 8px 40px 0 rgba(232,77,149,0.16);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER, NAVIGATION & MENUS === */
header {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 0;
  box-shadow: 0 3px 30px -16px rgba(43,46,74,.06);
  z-index: 20;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px 16px;
  gap: 10px;
}
header img {
  height: 50px;
  width: auto;
  margin-right: 14px;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 10px;
}
nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 12px 4px 8px 4px;
  border-radius: 8px;
  transition: background 0.17s, color 0.18s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: #fff;
  outline: none;
}

/* Hamburger Button (mobile) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--secondary);
  cursor: pointer;
  margin-left: 10px;
  z-index: 150;
  line-height: 1;
  padding: 8px;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--yellow);
  background: var(--yellow);
}
@media (max-width: 980px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(130deg, var(--secondary) 65%, var(--yellow) 100%);
  transform: translateX(-110vw);
  transition: transform 0.5s cubic-bezier(.89,-0.01,0,1) 0s;
  box-shadow: 7px 0 20px 0 rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 20px 0 26px;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  margin-bottom: 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: filter 0.2s, background 0.2s;
  padding: 6px 13px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  filter: brightness(140%);
  background: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 15px 10px 15px 0;
  font-size: 1.22rem;
  border-radius: 10px;
  background: none;
  transition: background 0.18s, color 0.14s;
  position: relative;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,255,255,0.12);
  color: var(--primary);
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}


/* === CTAs, BUTTONS & LINKS === */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.11rem;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 24px;
  border: none;
  outline: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232,69,69,0.06);
  margin-top: 8px;
  margin-bottom: 6px;
  transition: background 0.24s, color 0.2s, box-shadow 0.19s, transform 0.17s;
  position: relative;
}
.cta.primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 5px 20px rgba(232,69,69,0.13);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--yellow);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03) skewX(2deg);
}
.cta.secondary {
  background: var(--yellow);
  color: var(--primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--aqua);
  color: #fff;
  transform: translateY(-1px) scale(1.02) skewX(-1deg);
}
@media (max-width:460px){ .cta {padding:10px 14px;font-size:1rem;} }



/* === CARDS & TESTIMONIALS === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 20px 0 rgba(43,46,74,0.11);
  margin-bottom: 20px;
  border-left: 12px solid var(--secondary);
  font-style: italic;
  color: #2B2E4A;
  max-width: 640px;
  min-width: 240px;
  position: relative;
  z-index: 3;
  transition: box-shadow 0.22s, transform 0.14s;
}
.testimonial-card span {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--primary);
  font-weight: 800;
  margin-left: 12px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 38px 0 rgba(232,77,149,0.19);
  border-left-color: var(--yellow);
  transform: translateX(8px) scale(1.02) skewY(-1deg);
}
@media (max-width: 768px) {
  .testimonial-card { flex-direction: column; gap: 8px; padding: 15px 11px; min-width: 0; }
}


/* === FOOTER === */
footer {
  background: var(--primary);
  color: #fff;
  width: 100%;
  padding: 36px 0 20px 0;
  font-size: 1rem;
}
footer .container {
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #fff;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  margin-right: 8px;
  transition: border 0.12s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--yellow);
  border-bottom: 2px solid var(--yellow);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.98rem;
}
.footer-contact a {
  color: var(--yellow);
}
@media (max-width: 700px){
  .footer-contact, .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* === FORMS AND LISTS === */
ul, ol { padding-left: 21px; }
li {
  margin-bottom: 12px;
  font-size: 1.04rem;
  list-style: disc inside;
}
ul li strong {
  color: var(--secondary);
  font-weight: 700;
}

/* === DECORATIVE ANIMATIONS === */
@keyframes sparkle {
  0%,100% { filter: brightness(1); transform: scale(1); }
  30% { filter: brightness(1.1); transform: scale(1.04) rotate(-3deg); }
  80% { filter: brightness(0.97); transform: scale(0.98) rotate(2deg);}
}
.cta, .card, .testimonial-card, .mobile-menu-open {
  animation: sparkle 1.43s cubic-bezier(.11,.79,.14,.99) 0.2s 1;
}

/* === FANCY/FUN FONTS FOR PLAYFUL MOOD === */
h1, h2, .cta, .mobile-nav a, nav a, .footer-nav a {
  font-family: 'Montserrat', var(--font-display);
  letter-spacing: 1px;
}

/* --- DYNAMIC, PLAYFUL COLOR BORDERS, BADGES, DECOS --- */
.card::before, .testimonial-card::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: -16px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 7px var(--aqua), 0 0 25px 3px var(--yellow);
  opacity: 0.19;
  z-index: 0;
  animation: sparkle 2.5s infinite linear;
  pointer-events: none;
}
.card::after, .testimonial-card::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -11px;
  right: -13px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 6px var(--secondary), 0 0 13px 1px var(--secondary);
  opacity: 0.15;
  z-index: 0;
  animation: sparkle 2.11s infinite linear reverse;
  pointer-events: none;
}


/* === RESPONSIVENESS === */
@media (max-width: 1024px){
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
}
@media (max-width: 600px){
  h1,h2 { font-size: 1.30rem; }
  .card, .testimonial-card, .section { border-radius: 13px; padding: 13px 6px; }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 32px rgba(43,46,74,0.12);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 99999;
  padding: 24px 10vw 20px 10vw;
  gap: 30px;
  animation: cookieDrop 0.7s cubic-bezier(.21,1.1,.53,1) 0s 1;
}
@keyframes cookieDrop {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1.03rem;
  flex: 1 1 200px;
  margin: 0 13px 0 0;
}
.cookie-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 11px 19px;
  border-radius: 20px;
  border: none;
  margin: 0;
  background: var(--yellow);
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 3px;
  box-shadow: 0 3px 9px rgba(232,69,69,0.06);
  transition: background 0.19s, color 0.19s, transform 0.13s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--aqua);
  color: #fff;
  outline: 2px solid var(--secondary);
  transform: scale(1.04);
}
.cookie-btn.reject {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--primary);
  color: var(--yellow);
}
.cookie-btn.settings {
  background: var(--aqua);
  color: #fff;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: var(--yellow);
  color: var(--primary);
}
@media (max-width: 750px){
  .cookie-banner { padding-left:6vw; padding-right:6vw; gap: 10px; flex-direction:column; align-items:flex-start; }
}
@media (max-width: 580px){ .cookie-banner { padding:8px 2vw 8px 2vw; } }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 100000;
  background: rgba(43,46,74,0.42);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeinBg 0.24s linear;
}
@keyframes fadeinBg { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  border-radius: 24px 24px 0 0;
  width: 96vw;
  max-width: 400px;
  min-height: 240px;
  margin-bottom: 0px;
  box-shadow: 0 2px 40px rgba(43,46,74,0.25);
  padding: 27px 19px 18px 21px;
  animation: slideModalUp 0.34s cubic-bezier(.26,1.24,.65,1) 0s 1;
  display: flex;
  flex-direction: column;
  gap: 17px;
  z-index: 110000;
}
@keyframes slideModalUp { from { transform: translateY(80px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-modal h2 {
  color: var(--secondary);
  margin-bottom: 9px;
  font-size: 1.13rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-weight: 600;
  flex: 1;
  color: var(--primary);
  user-select: none;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
}
.cookie-category .cookie-essential {
  color: #aaa;
  font-size: 0.93rem;
  opacity: 0.85;
  margin-left: 7px;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 5px;
}
.cookie-modal .cookie-btn {
  min-width: 70px;
}
.cookie-modal-close {
  background: none;
  color: var(--primary);
  border: none;
  font-size: 1.55rem;
  position: absolute;
  top: 13px;
  right: 14px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 50%;
  transition: background 0.16s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: var(--yellow);
  color: var(--secondary);
}

/* === MISC PLAYFUL DYNAMIC TOUCHES === */
::-webkit-scrollbar { width: 12px; background: var(--accent); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, var(--yellow), var(--aqua));
  border-radius: 12px;
  border: 3px solid #fff;
}
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* Subtle Micro-Interactions */
h1, h2, .cta {
  transition: color 0.27s, text-shadow 0.17s;
}
h1:hover, h2:hover {
  color: var(--secondary);
  text-shadow: 0 1px 24px var(--yellow), 0 1px 24px var(--aqua);
}

/* === ACCESSIBILITY & CONTRAST === */
.testimonial-card,
.testimonial-card p,
.testimonial-card span {
  background: #fff !important;
  color: #222 !important;
}

/* === EXTRA: MODAL BACKDROP === */
.modal-overlay {
  position: fixed;
  top:0; left:0;
  width:100vw; height:100vh;
  background: rgba(43,46,74,0.23);
  z-index: 998;
}
/* === END === */