/* 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F7F5EF;
  color: #234D63;
  font-family: 'Roboto', Arial, sans-serif;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
ul, ol { list-style: none; }

/* BRAND VARIABLES (with fallback) */
:root {
  --color-primary: #234D63;
  --color-secondary: #6C9583;
  --color-accent: #F7F5EF;
  --color-electric: #23C6E1;
  --color-energy: #FF2B51;
  --color-highlight: #F9B800;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow-sm: 0 2px 8px 0 rgba(40,70,130,0.08);
  --shadow-md: 0 6px 20px 0 rgba(30,40,60,0.13);
}

/* BASE TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--color-primary);
}
h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--color-energy);
  text-shadow: 0 4px 20px rgba(255,43,81,0.08);
}
h2 {
  font-size: 2rem;
  color: var(--color-electric);
  margin-top: 0;
}
h3 {
  font-size: 1.3rem;
  color: var(--color-secondary);
  font-weight: 700;
}
h4,h5 { font-size: 1.05rem; }
p,li,dd { font-size: 1.06rem; color: var(--color-primary); margin-bottom: 12px; }
strong { color: var(--color-energy); font-weight: 700; }
small { font-size: 0.89rem; }

/* LAYOUT CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  background: #fff;
  padding: 26px 22px;
  min-width: 0;
}
.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;
  flex-direction: column;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--color-electric);
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(35,77,99,0.24);
}
.testimonial-meta {
  margin-top: 6px;
  color: var(--color-secondary);
  font-size: 0.98rem;
  font-style: italic;
  font-family: var(--font-display);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 22px 18px;
  width: 100%;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.15s;
  border-bottom: 4px solid var(--color-energy);
}
.feature-item img {
  width: 44px;
  height: 44px;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(35,198,225,0.08),0 2px 8px 0 rgba(40,70,130,0.15);
  transform: translateY(-2px) scale(1.025);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg,#F7F5EF 50%,#23C6E1 0%,#FF2B51 100%);
  border-radius: 0 0 44px 44px;
  padding: 60px 0 50px 0;
  position: relative;
  box-shadow: 0 8px 28px 0 rgba(255,43,81,0.09);
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}
.hero h1, .hero p {
  text-align: center;
}
.hero .btn {
  margin-top: 28px;
  align-self: center;
}

/* BUTTONS & INTERACTIONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.11rem;
  font-weight: 700;
  background: var(--color-electric);
  color: #fff;
  border-radius: 22px;
  padding: 12px 32px;
  border: 0;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 20px rgba(35,198,225,0.14);
  transition: background .19s, box-shadow .19s, color .19s, transform .12s;
  outline: none;
  gap: 8px;
}
.btn.btn-primary {
  background: var(--color-energy);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,43,81,0.13);
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: var(--color-electric);
  color: #fff;
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 12px 28px 0 rgba(35,198,225,0.25);
}
.btn:not(.btn-primary):hover, .btn:not(.btn-primary):focus {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.035);
}

/* NAVIGATION */
header {
  padding: 0;
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(35,77,99,0.06);
  z-index: 40;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 54px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 16px;
  transition: background .16s, color .16s;
}
nav a:hover, nav a:focus {
  background: var(--color-electric);
  color: #fff;
}
header .btn {
  margin-left: 12px;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: var(--color-energy);
  color: #fff;
  font-size: 2rem;
  border-radius: 10px;
  padding: 4px 16px;
  margin-left: auto;
  cursor: pointer;
  z-index: 102;
  border: none;
  transition: background .18s, box-shadow .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-electric);
  box-shadow: 0 2px 10px 0 rgba(35,198,225,0.12);
}
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #fff;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 28px 0 28px;
  z-index: 200;
  transform: translateX(100vw);
  transition: transform .34s cubic-bezier(.5,1.4,.37,1);
  box-shadow: -8px 0 32px 0 rgba(35,77,99,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-energy);
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 22px;
  cursor: pointer;
  transition: color .17s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--color-electric);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 18px;
  padding: 10px 14px;
  transition: background .14s, color .14s;
  background: var(--color-accent);
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-energy);
  color: #fff;
}

/* HIDE ON DESKTOP, SHOW ON MOBILE */
@media (max-width: 1024px) {
  header .container nav,
  header .btn.btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 32px 0 0 0;
  border-radius: 36px 36px 0 0;
  margin-top: 80px;
}
footer p {
  color: white;
}
.footer-row {
  display: flex;
  flex-direction: row;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 12px;
}
.footer-row > div, .footer-row nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-row a {
  color: #fff !important;
  opacity: 0.93;
  font-size: 1rem;
  font-family: var(--font-display);
  margin-bottom: 5px;
  transition: color .13s, opacity .13s;
}
.footer-row a:focus, .footer-row a:hover {
  color: var(--color-electric);
  opacity: 1;
}
.footer-row img {
  height: 44px;
  margin-bottom: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 12px 0 15px 0;
  color: #93cee5;
  font-size: 0.99rem;
}

/* CARD & GRID UTILS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.feature-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.timeline-step {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 270px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-top: 4px solid var(--color-highlight);
  transition: box-shadow 0.18s, transform 0.13s;
}
.timeline-step:hover {
  box-shadow: 0 18px 34px 0 rgba(249,184,0,0.20);
  transform: scale(1.035);
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.19rem;
  color: var(--color-electric);
  cursor: pointer;
  margin-bottom: 8px;
  padding: 10px 0 0 0;
}
.faq-accordion dd {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 1.06rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
  transition: background 0.12s;
}
.faq-accordion dt:hover {
  color: var(--color-energy);
}

/* CONTACT INFO GRID */
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.contact-info-grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  color: var(--color-primary);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  padding: 13px 18px;
}

/* SUCCESS METRICS */
.success-metrics {
  background: var(--color-accent);
  border-radius: 16px;
  margin-top: 20px;
  padding: 23px 22px;
  box-shadow: 0 2px 12px 0 rgba(108,149,131,0.08);
}
.success-metrics ul {
  list-style: disc;
  margin-left: 20px;
}
.success-metrics li {
  color: var(--color-secondary);
  margin-bottom: 9px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -2px 16px 0 rgba(35,77,99,0.10);
  z-index: 300;
  padding: 22px 24px;
  font-size: 1.05rem;
  border-top: 3px solid var(--color-energy);
  animation: fadeInCookie .44s cubic-bezier(.45,.12,.20,1.3);
}
@keyframes fadeInCookie {
  0% { transform: translateY(100%); opacity:0; }
  80% { opacity:1; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
}
.cookie-banner .btn {
  font-size: 0.96rem;
  padding: 6px 22px;
  border-radius: 14px;
  box-shadow: none;
}
.cookie-banner .btn:not(.btn-primary) {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .btn:not(.btn-primary):hover {
  background: var(--color-energy);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(35,77,99,0.34);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookie .25s;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 44px 0 rgba(35,77,99,0.13);
  max-width: 98vw;
  min-width: 300px;
  width: 100%;
  max-width: 420px;
  padding: 32px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  color: var(--color-energy);
  font-size: 1.33rem;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
}
.cookie-modal input[type='checkbox'] {
  width: 17px; height: 17px;
  accent-color: var(--color-electric);
  border-radius: 5px;
}
.cookie-modal .modal-actions {
  display: flex; gap: 12px; justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .btn {
  font-size: 0.99rem;
  padding: 7px 20px;
  border-radius: 12px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--color-energy);
  font-size: 2rem;
  position: absolute;
  right: 22px;
  top: 12px;
  cursor: pointer;
}
.cookie-modal-close:hover { color: var(--color-electric); }

/* PRIVACY/TERMS PAGES */
.privacy-policy, .gdpr-policy, .cookie-policy, .terms-of-use {
  padding: 40px 0;
}
.privacy-policy ul, .gdpr-policy ul, .terms-of-use ul { margin-left: 16px; }

/* ABOUT & TEAM STYLES */
.about-section, .team-values {
  background: var(--color-accent);
  border-radius: 20px;
  margin-bottom: 42px;
  padding: 32px 18px;
  box-shadow: 0 2px 10px 0 rgba(35,198,225,0.08);
}
.about-section ul, .team-values ul {
  margin-left: 19px;
  list-style: disc;
}

/* CONFIRMATION PAGE */
.confirmation {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  margin: 40px 0 80px 0;
  padding: 38px 21px;
  text-align: center;
}

/* GENERAL TABLE, DL, ETC */
dt { font-weight: 700; font-family: var(--font-display); color: var(--color-electric); margin-bottom: 5px; }
dd { margin-left: 22px; margin-bottom: 15px; }

.contact-details dt { margin-bottom: 0; }
.contact-details dd { margin-bottom: 8px; }

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .btn, .card, .feature-item, .testimonial-card, .feature-timeline .timeline-step, .faq-accordion dd {
    transition: box-shadow .2s, background .18s, color .15s, transform .12s;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .section { padding: 28px 5px; margin-bottom: 32px; }
  .hero { padding: 32px 0 18px 0; border-radius: 0 0 27px 27px; margin-bottom: 32px; }
  .footer-row { flex-direction: column; gap: 21px; align-items: flex-start; }
  .success-metrics { padding: 16px 10px; margin-top: 14px; }
  .feature-grid, .content-grid, .card-container, .feature-timeline, .contact-info-grid {
    flex-direction: column;
    gap: 16px !important;
    align-items: stretch;
  }
  .testimonial-card { flex-direction: column; padding: 17px 8px; }
  .feature-item, .card, .timeline-step { min-width: 0; max-width: 100%; }
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 9px; gap: 13px; }
  .hero h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.4rem; }
  .hero { padding: 22px 0 8px 0; }
  .section { padding: 14px 2px; }
  .footer-bottom { font-size: 0.89rem; }
}

/* === ELECTRIC DYNAMIC VISUAL DECORATIONS === */
.section, .hero, .card, .feature-item, .timeline-step, .testimonial-card {
  border-radius: 24px;
  position: relative;
  /* Electric color focus ring on active/focus, energized look */
}
.card:focus-within, .feature-item:focus-within, .timeline-step:focus-within, .testimonial-card:focus-within {
  outline: 3px solid var(--color-electric);
  outline-offset: 0;
}

/* Hide span deco on mobile for perf. */
@media (max-width: 500px) {
  .section::before, .hero::before, .about-section::before,.cta-section::before, .section::after, .hero::after, .testimonial-card::after, .testimonial-card::before {
    display: none;
  }
}

/* ACCESSIBILITY: HIGH CONTRAST TESTIMONIALS */
.testimonial-card p, .testimonial-meta {
  color: #222;
  background: #fff;
}

/* MISC */
::-webkit-input-placeholder { color: #bbb; }
:-ms-input-placeholder { color: #bbb; }
::placeholder { color: #bbb; }

[tabindex="-1"]:focus  { outline: none !important; }

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