/* ===================== 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #fff;
  color: #263238;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* ================== BRAND VARIABLES (with fallback) ================== */
:root {
  --color-primary: #263238;
  --color-secondary: #B71C1C;
  --color-accent: #F9EFD7;
  --color-electric-1: #ff2d92;
  --color-electric-2: #009ffc;
  --color-electric-3: #fff200;
  --color-electric-4: #00e676;
  --color-electric-5: #ff5722;
  --container-max: 1120px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 6px;
  --shadow-1: 0 2px 12px 0 rgba(38, 50, 56, 0.10);
  --shadow-2: 0 4px 24px 0 rgba(38, 50, 56, 0.18);
  --transition: 0.19s cubic-bezier(.39,.575,.565,1.000);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ============== CONTAINER & GLOBAL LAYOUT ============== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Spacing patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.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: #fff;
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  max-width: 670px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive spacing overrides */
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
  }
  .card {
    padding: 16px 10px;
  }
  .testimonial-card {
    padding: 14px;
  }
}

/* =========== TYPOGRAPHY =========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.12;
  margin-bottom: 28px;
  color: var(--color-electric-1);
  text-shadow: 2px 2px 0 var(--color-electric-3);
}
h2 {
  font-size: 2.0rem;
  margin-bottom: 20px;
  color: var(--color-electric-2);
  text-shadow: 1px 1px 0 var(--color-electric-3);
}
h3 {
  font-size: 1.4rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
  text-shadow: 1px 1px 0 var(--color-electric-4);
}

p, ul, ol, li, .text-section {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--color-primary);
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  font-family: var(--font-display);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.08rem;
}
ul, ol {
  margin-bottom: 18px;
  padding-left: 13px;
}
ul li {
  margin-bottom: 12px;
  list-style: disc inside;
}

/* Links */
a {
  color: var(--color-secondary);
  font-weight: 700;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
a:hover, a:focus {
  color: var(--color-electric-1);
  text-decoration: underline;
}

/* ============== HEADER & NAVIGATION ============== */
header {
  width: 100%;
  background: #fff;
  box-shadow: var(--shadow-1);
  padding: 0 0 4px 0;
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 0;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 28px;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 23px;
  list-style: none;
}
nav ul li {
  display: flex;
  align-items: center;
}
nav ul li a {
  font-family: var(--font-display);
  font-size: 1.09rem;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition);
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--color-electric-2);
  color: #fff;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-electric-1);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 800;
  padding: 11px 30px;
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-2);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-left: 24px;
  margin-top: 0;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-electric-2);
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 6px 24px 0 rgba(38, 50, 56, 0.20);
}

/* ========= LOGO ========= */
nav > a > img {
  height: 44px;
  width: auto;
  margin-right: 21px;
  display: inline-block;
}

@media (max-width: 1024px) {
  nav ul {
    gap: 14px;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 1.05rem;
    margin-left: 11px;
  }
}

/* ============= MOBILE NAVIGATION (BURGER MENU) ============= */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  background: var(--color-electric-2);
  color: #fff;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  z-index: 30;
  border: none;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-1);
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-electric-1);
  color: #fff;
}
@media (max-width: 900px) {
  nav ul, nav .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  nav {
    justify-content: flex-start;
  }
}
/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,50,56,0.96);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.39,.575,.565,1.000);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-electric-1);
  color: #fff;
  border: none;
  font-size: 2.25rem;
  padding: 6px 21px;
  border-radius: 0 0 16px 0;
  margin: 0;
  margin-top: 0.7rem;
  margin-left: auto;
  align-self: flex-end;
  box-shadow: 0 2px 8px rgba(0,0,0,0.11);
  cursor: pointer;
  transition: background var(--transition);
  z-index: 10001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-electric-2);
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  padding: 16px 26px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding: 13px 0;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-electric-1);
  color: var(--color-electric-3);
}

@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
  }
}

/* ========= MAIN ========= */
main {
  width: 100%;
  margin-top: 0;
}
main section {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ========= BUTTONS ========= */
button, .cta-button {
  cursor: pointer;
  outline: none;
}

/* ============== TESTIMONIAL CARDS ============== */
.testimonial-card {
  background: #fff;
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px 22px;
  max-width: 700px;
  line-height: 1.5;
  color: #222;
  font-size: 1.13rem;
}
.testimonial-card p {
  margin-bottom: 0 !important;
  color: #222;
  font-weight: 600;
  font-family: var(--font-body);
  flex: 1;
}
.testimonial-card > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.03rem;
  color: var(--color-secondary);
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-card img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-electric-5);
  padding: 4px;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 1em;
    padding: 14px 11px;
  }
}

/* ============== CARD & FEATURE DESIGN ============== */
.card {
  background: var(--color-accent);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  padding: 24px 22px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus {
  box-shadow: 0 8px 48px 0 rgba(183,28,28,.14);
  transform: translateY(-4px) scale(1.015);
}

.feature-item strong,
.card strong,
ul li strong {
  color: var(--color-electric-5);
  font-family: var(--font-display);
}

/* ============== LIST ICONS ============== */
ul li > img {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 17px;
  vertical-align: middle;
}

/* ============== FOOTER ============== */
footer {
  background: var(--color-primary);
  padding: 0;
  color: #fff;
}
footer section {
  padding: 42px 0 25px 0;
  margin-bottom: 0;
  background: transparent;
  box-shadow: none;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
footer nav ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer nav ul li a {
  color: var(--color-electric-4);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1em;
  transition: color var(--transition);
}
footer nav ul li a:hover {
  color: var(--color-electric-3);
}
footer .text-section {
  color: #fff;
  font-size: 1em;
  gap: 10px;
}
footer .text-section img {
  width: 19px;
  height: 19px;
  margin-right: 7px;
  vertical-align: middle;
}
footer .text-section a {
  color: var(--color-electric-2);
}
footer .text-section a:hover {
  color: var(--color-accent);
}
@media (max-width: 900px) {
  footer .container, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px !important;
  }
  footer section {
    padding: 25px 0 20px 0;
  }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .container, .content-wrapper {
    padding-left: 8px;
    padding-right: 8px;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper {
    padding-left: 2px;
    padding-right: 2px;
    gap: 0;
  }
  .section {
    margin-bottom: 25px;
    padding: 12px 2px;
  }
  h1 { font-size: 2.0rem; margin-bottom: 14px; }
  h2 { font-size: 1.3rem; margin-bottom: 11px; }
  h3 { font-size: 1.05rem; }
}

/* ============== COOKIE CONSENT BANNER ============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #212121;
  color: #fff;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 34px;
  box-shadow: 0 -2px 20px 2px rgba(38,50,56,.11);
  font-size: 1rem;
  gap: 28px;
  animation: cookieBannerIn .6s cubic-bezier(.39,.575,.565,1.000);
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(80px); } to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-message {
  flex: 1 1 auto;
  color: #fff;
  font-size: 1.09rem;
  font-family: var(--font-body);
  margin-right: 20px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  padding: 9px 22px;
  margin: 0 0 0 0;
  font-size: 1.01rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-1);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.cookie-banner .accept {
  background: var(--color-electric-4);
  color: #212121;
}
.cookie-banner .accept:hover {
  background: var(--color-electric-2);
  color: #fff;
}
.cookie-banner .reject {
  background: var(--color-electric-1);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: #212121;
  color: var(--color-electric-1);
  border: 1.5px solid var(--color-electric-1);
}
.cookie-banner .settings {
  background: var(--color-electric-3);
  color: #263238;
}
.cookie-banner .settings:hover {
  background: var(--color-electric-1);
  color: #fff;
}
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px;
    gap: 12px;
  }
}

/* ===== Cookie Modal ===== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38,50,56,0.75);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn .4s cubic-bezier(.39,.575,.565,1.000);
}
@keyframes cookieModalIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 34px 30px 27px 30px;
  min-width: 290px;
  max-width: 96vw;
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-title {
  font-size: 1.23rem;
  font-family: var(--font-display);
  margin-bottom: 6px;
  font-weight: 700;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 13px;
  right: 13px;
  font-size: 1.44rem;
  background: var(--color-electric-1);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 33px; height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-modal .close-cookie-modal:hover {
  background: var(--color-electric-2);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
}
.cookie-category-label {
  font-weight: 700;
  font-family: var(--font-display);
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 26px;
  background: #ebebeb;
  border-radius: 15px;
  transition: background .22s cubic-bezier(.39,.575,.565,1.000);
  position: relative;
  outline: none;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--color-electric-2);
}
.cookie-toggle:disabled {
  background: var(--color-electric-4);
  cursor: not-allowed;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 3px;
  top: 3.5px;
  transition: left 0.22s cubic-bezier(.39,.575,.565,1.000);
  box-shadow: var(--shadow-1);
}
.cookie-toggle:checked::before {
  left: 22px;
}
.cookie-toggle:disabled::before {
  background: #e0e0e0;
}
.cookie-modal-footer {
  margin-top: 14px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-footer button {
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  background: var(--color-electric-4);
  color: #263238;
  box-shadow: var(--shadow-1);
  transition: background var(--transition), color var(--transition);
}
.cookie-modal-footer .reject {
  background: var(--color-electric-1);
  color: #fff;
}
.cookie-modal-footer button:hover {
  background: var(--color-electric-2);
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-modal {
    padding: 17px 6vw 13px 6vw;
    min-width: 0;
    font-size: 1em;
  }
  .cookie-modal-footer {
    gap: 7px;
  }
}

/* ========= MICRO-INTERACTIONS ========= */
.cta-button,
button,
a {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card,
.card-container > *,
.testimonial-card,
.cta-button {
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px 0 var(--color-electric-1);
  transform: scale(1.01);
}

input[type="text"],
input[type="email"],
textarea {
  border: 2px solid #e0e0e0;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 1.08rem;
  color: var(--color-primary);
  margin-bottom: 18px;
  background: #fff;
  transition: border-color var(--transition);
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--color-electric-2);
}

/* ============ ELECTRIC DECORATIVE MOTION (OPTIONAL) ============ */
.card::after, .section::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--color-electric-3);
  opacity: 0.21;
  border-radius: 50%;
  top: -17px; right: -17px;
  z-index: 0;
  pointer-events: none;
  display: none;
}
.card:hover::after, .section:hover::after {
  display: block;
}
@media (min-width: 901px) {
  .card::after, .section::after {
    display: block;
  }
}

/* ============ MISC UTILITIES ============ */
.mt-0 { margin-top: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.text-center { text-align: center !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }

/* ====== PRINT BRAND PERSONALITY VIA COLOR SPLASH ====== */
.section {
  border: 2.5px solid var(--color-electric-2);
  background: linear-gradient(85deg, #fff 85%, rgba(249,239,215,0.48) 100%);
  box-shadow: 0 4px 32px 0 rgba(0,159,252,0.08);
}
@media (max-width:600px) {
  .section { border-width: 1.5px; }
}

/* ============ CUSTOM SCROLLBAR FOR MODERN VIBES ============ */
::-webkit-scrollbar { width: 11px; background: #fafafa; }
::-webkit-scrollbar-thumb { background: var(--color-electric-2); border-radius: 9px; }

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