/* ===========================
   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;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: #F6F6F6;
  color: #21242A;
  font-size: 16px;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  outline: none;
  border: none;
  font-family: inherit;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

/* ===========================
   COLOR VARIABLES (with fallback)
   =========================== */
:root {
  --primary: #21242A;
  --secondary: #CDB57E;
  --accent: #F6F6F6;
  --electricBlue: #07C3F2;
  --electricPink: #F21D8F;
  --electricLime: #B2FF59;
  --electricYellow: #FFE106;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 2px 2px 0px var(--electricBlue);
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px var(--electricPink);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--electricPink);
  text-shadow: 1px 1px 0px var(--electricLime);
}
h4 {
  font-size: 1.1rem;
  color: var(--secondary);
}
p, li {
  font-size: 1rem;
  line-height: 1.7;
}
p {
  margin-bottom: 16px;
}
ul {
  margin-bottom: 16px;
  padding-left: 0;
}
li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}
li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 12px;
  background: linear-gradient(135deg,var(--electricBlue) 60%, var(--electricPink) 100%);
  position: absolute;
  left: 0;
  top: 0.65em;
}
.text-section h1,
.text-section h2 {
  color: var(--primary);
  background: linear-gradient(90deg,var(--electricBlue),var(--electricPink),var(--electricLime),var(--electricYellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  word-break: break-word;
}
.content-wrapper .btn-primary {
  margin-top: 16px;
}
strong {
  font-weight: bold;
  color: var(--primary);
}

/* ===========================
   GENERAL LAYOUT WRAPPERS
   =========================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* ===========================
   SECTIONS & SPACING PATTERNS
   =========================== */
section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(33,36,42,0.06), 0 0px 1.5px 0px var(--electricLime);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
/* Card spacing for any future cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(33,36,42,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
  background: #fffbe6;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(205,181,126,0.13);
  margin-bottom: 20px;
  color: #21242a;
  transition: transform 0.18s cubic-bezier(.32,1.02,.45,.98), box-shadow 0.18s;
}
.testimonial-card p {
  font-size: 1.12rem;
  font-style: italic;
  color: #222;
  flex: 1;
}
.testimonial-meta {
  font-size: 0.95rem;
  color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
}

/* ===========================
   HEADER (Desktop & Mobile)
   =========================== */
header {
  width: 100%;
  min-height: 70px;
  background: #fff;
  box-shadow: 0 3px 20px 0 rgba(33,36,42,0.06);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header > a > img {
  height: 46px;
  margin-right: 14px;
  vertical-align: middle;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: var(--primary);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.03em;
  padding: 10px 4px 8px 4px;
  border-radius: 5px;
  transition: color 0.14s, background 0.14s;
}
header nav a:hover,
header nav a:focus {
  color: var(--electricBlue);
  background: rgba(7,195,242,0.11);
}
header .btn-primary {
  margin-left: 18px;
  font-size: 1.03rem;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.1rem;
  color: var(--electricPink);
  margin-left: 18px;
  border: 2px solid var(--electricPink);
  border-radius: 9px;
  padding: 2px 10px 0 10px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--electricPink);
  color: #fff;
}

/* ===========================
   MOBILE NAVIGATION
   =========================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,36,42,0.97);
  z-index: 3000;
  transform: translateX(-100vw);
  transition: transform 0.39s cubic-bezier(.27,1.02,.52,.96);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 4px 0 32px rgba(7,195,242,0.10);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 24px 22px 16px 0;
  align-self: flex-end;
  border-radius: 10px;
  border: 2px solid var(--electricBlue);
  padding: 3px 14px 0 14px;
  transition: background 0.2s, color 0.2s;
  z-index: 3500;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--electricBlue);
  color: #191c22;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 32px 0 32px;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.37rem;
  font-weight: bold;
  border-radius: 8px;
  padding: 12px 0;
  display: block;
  width: 100%;
  background: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--electricPink);
  color: #fffbe6;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 40px;
  border-radius: 26px;
  border: none;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, box-shadow 0.17s, border-color 0.18s;
  box-shadow: 0 2px 16px 0 rgba(33,36,42,0.11);
  outline: none;
  margin-right: 12px;
  margin-bottom: 12px;
}
.btn-primary {
  background: linear-gradient(90deg,var(--electricBlue) 65%,var(--electricPink) 100%);
  color: #fff;
  border: 2.5px solid var(--electricBlue);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg,var(--electricPink),var(--electricBlue),var(--electricLime));
  color: #191c22;
  border-color: var(--electricLime);
}
.btn-secondary {
  background: linear-gradient(90deg,var(--electricLime) 65%,var(--electricYellow) 100%);
  color: var(--primary);
  border: 2.5px solid var(--electricLime);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: linear-gradient(90deg,var(--electricBlue) 30%,var(--electricPink) 100%);
  color: #fff;
  border-color: var(--electricPink);
}

/* ===========================
   FOOTER
   =========================== */
footer {
  width: 100%;
  background: var(--primary);
  color: var(--accent);
  padding: 40px 0 32px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}
footer nav a {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  padding: 0 6px;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--electricBlue);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.03rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: var(--secondary);
}
.footer-brand img {
  width: 32px; height: 32px;
  vertical-align: middle;
}
footer p {
  font-size: 0.97rem;
  color: #C4C6CB;
}

/* ===========================
   SERVICE & FEATURE LAYOUTS
   =========================== */
.service-grid > div {
  flex: 1 1 235px;
  background: #fff;
  margin: 8px 0;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(7,195,242,0.10);
  padding: 26px 22px;
  min-width: 220px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.16s, box-shadow 0.16s;
  border: 2px solid rgba(7,195,242,0.06);
}
.service-grid > div:hover, .service-grid > div:focus-within {
  transform: translateY(-7px) scale(1.018);
  box-shadow: 0 6px 26px 0 rgba(242,29,143,0.13),0 2px 16px 0 rgba(33,36,42,0.13);
  border: 2px solid var(--electricPink);
  z-index: 3;
}

/* ===========================
   RESPONSIVE DESIGN – MOBILE FIRST
   =========================== */
@media (max-width: 992px) {
  .container {
    max-width: 98vw;
  }
  section {
    padding: 30px 10px;
    border-radius: 18px;
  }
  .service-grid > div {
    max-width: 100vw;
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    padding: 0 10px;
    min-height: 54px;
  }
  header nav {
    display: none;
  }
  .btn-primary {
    font-size: 0.96rem;
    padding: 11px 26px;
    margin-left: 0px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-brand {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .section, section {
    padding: 22px 6px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .content-grid, .card-container, .service-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.59rem; }
  h2 { font-size: 1.16rem; }
}

/* ===========================
   ANIMATIONS & MICROINTERACTIONS
   =========================== */
.btn-primary, .btn-secondary {
  transition: background 0.21s, color 0.17s, box-shadow 0.17s, border-color 0.2s, transform 0.13s;
}
.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-2px) scale(1.025);
}
.testimonial-card:hover {
  transform: scale(1.027) translateY(-5px);
  box-shadow: 0 8px 34px 0 rgba(242,29,143,0.10),0 4px 20px 0 rgba(33,36,42,0.12);
}
a, button, .btn-primary, .btn-secondary {
  transition: background 0.15s, color 0.13s, box-shadow 0.11s, border 0.11s, transform 0.11s;
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe6;
  color: #1d1e26;
  z-index: 4000;
  box-shadow: 0 -4px 24px rgba(7,195,242,0.10);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 22px 14px 18px 30px;
  gap: 14px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  animation: cookiefadein 0.7s cubic-bezier(.37,1.18,.31,.98);
}
@keyframes cookiefadein {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 320px;
  font-size: 1.07rem;
  color: #312a22;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 26px;
  border-radius: 22px;
  border: none;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border-color 0.17s;
}
.cookie-btn.accept {
  background: var(--electricBlue);
  color: #fff;
  border: 2px solid var(--electricBlue);
}
.cookie-btn.accept:hover {
  background: var(--electricLime);
  color: var(--primary);
  border-color: var(--electricLime);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--electricPink);
  border: 2px solid var(--electricPink);
}
.cookie-btn.reject:hover {
  background: var(--electricPink);
  color: #fffbe6;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-btn.settings:hover {
  background: var(--secondary);
  color: #21242A;
}

/*
  COOKIE MODAL :fix
*/
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 4100;
  background: rgba(33,36,42,0.87);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fffbe6;
  border-radius: 18px;
  max-width: 97vw;
  width: 390px;
  padding: 42px 26px 32px 26px;
  box-shadow: 0 8px 48px 0 rgba(7,195,242,0.24);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  animation: cookiepopup 0.39s cubic-bezier(.65,1.68,.19,0.93);
}
@keyframes cookiepopup {
  from { transform: scale(0.92) translateY(45px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 6px;
  color: var(--electricPink);
  font-size: 1.16rem;
  font-family: 'Playfair Display', serif;
}
.cookie-modal label {
  display: flex; align-items: center; gap: 8px;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #21242A;
  font-weight: 600;
}
.cookie-toggle {
  appearance: none;
  width: 34px; height: 18px;
  border-radius: 16px;
  background: #E3E3E3;
  position: relative;
  margin-right: 4px;
  outline: none;
  box-shadow: 0 0 2.2px rgba(0,0,0,0.045);
  transition: background 0.22s;
}
.cookie-toggle:checked {
  background: var(--electricBlue);
}
.cookie-toggle:after {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 13px; height: 13px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s, background 0.2s;
}
.cookie-toggle:checked:after {
  left: 18px;
  background: var(--electricPink);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 6px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  width: 100%;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.6rem;
  color: var(--electricPink);
  background: none;
  border: none;
  padding: 0 3px;
  border-radius: 4px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--electricPink);
  color: #fff;
}
@media (max-width: 480px) {
  .cookie-modal {
    width: 98vw;
    padding: 19px 5vw 19px 5vw;
  }
  .cookie-banner {
    padding: 9px 4vw 9px 4vw;
    border-radius: 9px 9px 0 0;
  }
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-bold { font-weight: 800; }

/* ===========================
   FORMS (Contact/E-Mail links)
   =========================== */
a[href^="mailto"] {
  color: var(--electricPink);
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.18s;
}
a[href^="mailto"]:hover {
  color: var(--electricBlue);
}

/* ===========================
   OVERRIDES FOR HTML STRUCTURE
   =========================== */
.content-wrapper.service-grid {
  gap: 28px;
}

/* ===========================
   ELEVATED SHADOW UTILITY
   =========================== */
.shadow-elevated {
  box-shadow: 0 14px 38px rgba(7,195,242,0.08), 0 2px 10px rgba(242,29,143,0.04);
}

/* ===========================
   CUSTOM SELECTION (brand personality)
   =========================== */
::selection {
  background: var(--electricPink);
  color: #fff;
}

/* ===========================
   SCROLLBAR STYLING
   =========================== */
::-webkit-scrollbar {
  width: 12px;
  background: #e6eefe;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg,var(--electricBlue),var(--electricPink));
  border-radius: 6px;
}

/* =============================
   PRINT OPTIMIZATION
   ============================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  section { box-shadow: none !important; }
  body { background: #fff !important; }
}
