/* RESET & NORMALIZE */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; background: #F6F7F9; color: #232D3F; line-height: 1.6; font-family: 'Open Sans', Arial, sans-serif; font-size: 16px; }
img, video { max-width: 100%; display: block; height: auto; }
a { color: #232D3F; text-decoration: none; transition: color 0.2s, box-shadow 0.2s; }
li { list-style: none; }
button { font: inherit; border: none; outline: none; background: none; cursor: pointer; }

/* BRAND COLORS */
:root {
  --primary: #232D3F;
  --secondary: #F2C12E;
  --accent: #F6F7F9;
  --electric-blue: #24AFFF;
  --vivid-purple: #A259F7;
  --hot-pink: #FF357C;
  --energy-orange: #FF6B2D;
  --coral-red: #FF2C55;
  --headline: #232D3F;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--headline);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 700; }
h4 { font-size: 1.15rem; }
p, ul, li, blockquote { font-family: 'Open Sans', Arial, sans-serif; font-size: 1rem; }
strong { font-weight: 700; }

.subhead {
  color: var(--vivid-purple);
  font-size: 1.15rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* CONTAINER & SPACING */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(36,175,255,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(162,89,247,0.17);
  transform: translateY(-4px) scale(1.02);
}
.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;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(162,89,247,0.10), 0 0px 0px #FFF;
  margin-bottom: 20px;
  min-width: 0;
  position: relative;
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  font-weight: 500;
  color: #232D3F;
  line-height: 1.5;
}
.testimonial-card strong {
  color: var(--hot-pink);
  font-weight: 700;
  display: block;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 14px;
  padding: 28px 18px;
  min-width: 220px;
  box-shadow: 0 2px 10px rgba(36,175,255,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(242,193,46,0.13);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
  margin-bottom: 14px;
  height: 44px;
}
.feature-grid h3 {
  font-size: 1.18rem;
  color: var(--electric-blue);
  margin-bottom: 10px;
}
.feature-grid p {
  color: #333;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f6f7f9;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1.05rem;
  color: #232D3F;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(162, 89, 247, .07);
}
.feature-list img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-list li {
  font-size: 1.08rem;
  background: #fff;
  padding: 14px 20px;
  color: #232D3F;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255,53,124,0.05);
}

/* HEADER/NAVIGATION */
header {
  background: var(--primary);
  padding: 0;
  box-shadow: 0 2px 18px rgba(36,175,255,0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  padding: 8px 14px;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
nav a:hover {
  color: var(--secondary);
  background: rgba(24,175,255,0.08);
}
nav a.cta-primary {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 26px;
  box-shadow: 0 2px 18px rgba(242,193,46,0.10);
  margin-left: 14px;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
nav a.cta-primary:hover {
  background: var(--electric-blue);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 4px 24px rgba(36,175,255,0.13);
}
/* Mobile hamburger menu btn */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 18px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 1051;
  transition: box-shadow 0.15s, background 0.15s;
  margin-left: 14px;
}
.mobile-menu-toggle:hover {
  box-shadow: 0 4px 18px rgba(255,53,124,0.08);
  background: var(--hot-pink);
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,45,63,0.96);
  z-index: 1200;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.86,.01,.26,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: var(--coral-red);
  color: #fff;
  font-size: 2.3rem;
  border-radius: 16px;
  margin: 22px 22px 0 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1202;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 47px 40px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  padding: 12px 0 12px 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 10px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
  display: block;
}
.mobile-nav a:hover {
  background: rgba(162,89,247,0.13);
  color: var(--secondary);
  padding-left: 18px;
}

/* Hide desktop nav on mobile, and show burger */
@media (max-width: 990px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN SECTIONS SPACING */
main {
  background: var(--accent);
  padding-top: 34px;
  padding-bottom: 34px;
  min-height: 60vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* BUTTONS / CTAS */
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--electric-blue) 0%, var(--secondary) 80%);
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(36,175,255,0.13);
  padding: 12px 32px;
  font-size: 1.13rem;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.5px;
  transition: background 0.17s, color 0.17s, transform 0.16s, box-shadow 0.17s;
  margin-top: 16px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--hot-pink);
  color: #fff;
  transform: scale(1.065);
  box-shadow: 0 8px 32px rgba(255,53,124,0.23);
}

.text-section {
  background: #fff;
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 2px 10px rgba(36,175,255,0.07);
  margin-bottom: 20px;
}
.text-section a {
  color: var(--electric-blue);
  text-decoration: underline;
  transition: color 0.17s;
}
.text-section a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.values-section {
  margin-top: 22px;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #FFF;
  border-radius: 13px;
  padding: 22px 28px;
  box-shadow: 0 2px 14px rgba(255,53,124,0.06);
  margin-bottom: 20px;
  font-size: 1.08rem;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 13px;
}
.contact-details img {
  width: 30px;
  height: 30px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 30px 0 18px 0;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  padding: 6px 12px;
  border-radius: 7px;
  transition: color 0.18s, background 0.18s;
}
.footer-nav a:hover {
  color: var(--secondary);
  background: rgba(162,89,247,0.05);
}
footer .text-section {
  color: #fff;
  background: none;
  text-align: center;
  padding: 0;
  box-shadow: none;
  margin: 0;
  font-size: 0.97rem;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff200;
  color: #232D3F;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 32px rgba(255,53,124,0.19);
  padding: 22px 26px;
  min-width: 320px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  z-index: 3000;
  animation: slideInUp 0.6s cubic-bezier(.71,1.2,.56,1) 1;
}
@keyframes slideInUp { from { transform: translateX(-50%) translateY(120px); opacity: 0; } to { transform: translateX(-50%) translateY(0); opacity: 1; } }
.cookie-banner h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.16rem;
}
.cookie-banner p { font-size: 0.97rem; }
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}
.cookie-banner button {
  padding: 10px 26px;
  font-size: 1rem;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s;
}
.cookie-accept {
  background: var(--electric-blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(36,175,255,0.13);
}
.cookie-accept:hover {
  background: var(--hot-pink);
  box-shadow: 0 4px 18px rgba(255,53,124,0.23);
}
.cookie-reject {
  background: var(--coral-red);
  color: #fff;
}
.cookie-reject:hover {
  background: var(--primary);
}
.cookie-settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-settings:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,45,63,.6);
  z-index: 3050;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
.cookie-modal-backdrop.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(36,175,255,0.17);
  padding: 38px 32px 28px 32px;
  width: 95%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: bounceIn 0.33s;
}
@keyframes bounceIn { from { opacity:0; transform: scale(.8); } to{ opacity:1; transform: scale(1); } }
.cookie-modal h2 {
  font-size: 1.31rem;
  color: var(--electric-blue);
}
.cookie-modal .cookie-option {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
}
.cookie-modal label {
  font-size: 1.04rem;
  color: var(--primary);
}
.cookie-modal .cookie-opt-essential {
  color: #10c18c;
  font-weight: 700;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
}
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }

/* GENERAL BUTTON STYLE */
button, .button {
  transition: background 0.17s, color 0.17s, transform 0.13s, opacity 0.13s;
  cursor: pointer;
  outline: none;
}
button:active, .button:active { transform: scale(0.98); }

/* ANIMATIONS / MICRO-INTERACTIONS */
a, button {
  -webkit-tap-highlight-color: transparent;
}
a:focus, button:focus {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .content-wrapper {
    padding: 0 0;
    gap: 18px;
  }
  .section, section {
    margin-bottom: 34px;
    padding: 26px 7px;
  }
  .card-container, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div {
    min-width: unset;
    padding: 18px 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
  .feature-list li, .service-list li {
    font-size: 1.02rem;
    padding: 10px 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .contact-details {
    padding: 14px 8px;
    gap: 8px;
    font-size: 0.98rem;
  }
  .text-section {
    border-radius: 9px;
    padding: 13px 10px;
  }
  .cookie-modal {
    padding: 20px 10px 16px 10px;
  }
  .footer-nav {
    gap: 14px;
    font-size: 0.991rem;
  }
}

/* Accessibility: Hide outlines except for keyboard navigation */
:focus:not(:focus-visible) {
  outline: none;
}

/* VISUAL HIERARCHY: Distinctive headings */
h1, h2 {
  background: linear-gradient(90deg, var(--electric-blue) 20%, var(--secondary) 78%, var(--coral-red) 95%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}
h1 { margin-bottom: 10px; }

/* UTILITY */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mt-6 { margin-top: 6px !important; }
.gap-16 { gap: 16px; }

/* Extra: visually separate reviews/testimonials */
.testimonial-card:nth-child(odd) { border-left: 6px solid var(--electric-blue); }
.testimonial-card:nth-child(even) { border-right: 6px solid var(--secondary); }
.testimonial-card:nth-child(3n) { border-left: 6px solid var(--hot-pink); }

/* Decorative shapes (optional, if JS/svg applies) */
/* .decorative-shape { position:absolute; z-index:0; opacity:.27; pointer-events:none; } */
