/* 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #1B1A37;
  color: #F7F7FB;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: color 0.2s, background 0.2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
  outline: none;
  padding: 0;
}
input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --primary: #1B1A37;
  --secondary: #F20530;
  --accent: #F7F7FB;
  --electric-blue: #07FFFF;
  --electric-green: #0BFF92;
  --card-bg: #232256;
  --shadow: 0 4px 20px 0 rgba(50,0,99,0.18);
  --radius: 18px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 16px;
  color: var(--electric-blue);
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--electric-green);
  margin-bottom: 20px;
  text-shadow: 0 2px 8px #0BFF9288;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--electric-blue);
}
h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  text-shadow: 0 2px 6px #F2053080;
}
h4, h5, h6 {
  font-size: 1.2rem;
  color: var(--accent);
}
p, ul, ol, li, div, address {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
  color: var(--secondary);
}

/* LAYOUT HELPERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  transition: transform 0.18s, box-shadow 0.18s;
  flex: 1 0 240px;
  min-width: 245px;
  max-width: 370px;
}
.card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 32px 0 #07FFFF40, 0 1.5px 8px 0 #0BFF9280;
}

.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 14px 0 #15132A21;
  margin-bottom: 20px;
  color: #212136;
  flex-direction: column;
  transition: box-shadow 0.20s, transform 0.15s;
  min-width: 254px;
}
.testimonial-card p {
  color: #212136;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 0.97rem;
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.021);
  box-shadow: 0 7px 24px 0 #F2053034, 0 1.5px 8px 0 #07FFFF44;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 1.5px 10px 0 #23225628;
  padding: 18px 18px 14px 18px;
  cursor: pointer;
  transition: box-shadow 0.18s;
}
.faq-accordion > div:hover {
  box-shadow: 0 6px 22px 0 #0BFF9237;
}
.faq-accordion b {
  font-family: 'Rajdhani', Arial, sans-serif;
  color: var(--electric-green);
  display: block;
  margin-bottom: 7px;
}
.faq-accordion div div {
  color: var(--accent);
  font-style: italic;
  font-size: 1rem;
}

/* HERO SECTIONS */
.hero {
  padding: 56px 0 38px 0;
  background: linear-gradient(110deg, #1B1A37 65%, #07FFFF18 100%);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--electric-green);
  text-transform: uppercase;
  font-size: 2.7rem;
  text-shadow: 0 2px 18px #0BFF9293;
}
.hero p {
  font-size: 1.22rem;
  color: var(--accent);
  margin-bottom: 10px;
}

/* BUTTONS & CTAS */
.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 9999px;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 3px 12px #F2053035;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  outline: none;
  border: none;
  transition: all 0.18s cubic-bezier(.56,.18,.55,.98);
}
.cta-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 9px 0 #F2053083;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--electric-blue);
  color: #1B1A37;
  box-shadow: 0 8px 21px #07FFFF62,0 1px 7px #F2053078;
  transform: translateY(-2px) scale(1.06);
}
.cta-secondary {
  background: var(--electric-blue);
  color: #1B1A37;
  box-shadow: 0 2px 9px 0 #07FFFF33;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 7px 21px #F2053043,0 2px 8px #07FFFF44;
}

/* HEADER */
header {
  width: 100%;
  padding: 0;
  background: #181734;
  box-shadow: 0 2px 16px #07FFFF18;
  z-index: 100;
}
header .container {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Rajdhani', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--electric-blue);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.17s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: var(--electric-green);
  color: #1B1A37;
}
header img {
  max-height: 41px;
  width: auto;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.22rem;
  color: var(--electric-blue);
  background: none;
  border: none;
  margin-left: 10px;
  padding: 6px 13px 4px 13px;
  border-radius: 9px;
  transition: background 0.18s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--electric-blue);
  color: #1B1A37;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1500;
  background: #0C0B1EEC;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.85,-0.01,.37,1.05);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.1rem;
  color: #fff;
  background: var(--secondary);
  border-radius: 18px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.17s;
  z-index: 1600;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--electric-blue);
  color: #1B1A37;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  margin-top: 100px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Rajdhani', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 17px 0 12px 0;
  color: var(--electric-blue);
  border-bottom: 1px solid #22224542;
  width: 70vw;
  max-width: 335px;
  text-align: center;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-green);
  color: #1B1A37;
}

/* FOOTER */
footer {
  background: #15132A;
  color: var(--accent);
  padding: 38px 0 23px 0;
  font-size: 0.98rem;
  margin-top: 75px;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  width: 100%;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
footer nav a {
  color: var(--electric-blue);
  font-size: 1rem;
  font-family: 'Rajdhani', Arial, sans-serif;
  transition: color 0.18s;
}
footer nav a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
footer address {
  color: var(--electric-green);
  font-style: normal;
  font-size: 1.02rem;
}
.footer-brand img {
  max-width: 51px;
  filter: drop-shadow(0 2px 8px #07FFFF44);
}

/* LISTS STYLING */
ul, ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
ul li, ol li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: var(--accent);
}
ul li:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.67em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-blue), var(--secondary));
  display: inline-block;
  transform: translateY(-50%);
}
.feature-item li:before,
ol li:before {
  content: none;
}

/* FORMS (if any are added) */
input, textarea, select {
  background: #232256;
  color: var(--electric-blue);
  border: 1.7px solid var(--secondary);
  border-radius: 7px;
  padding: 12px 14px;
  margin-bottom: 13px;
  font-size: 1rem;
  transition: border-color 0.14s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 2px 8px 0 #07FFFF44;
}

/* ANIMATIONS AND EFFECTS */
a, .cta-primary, .cta-secondary, .card, .testimonial-card, .faq-accordion > div {
  transition: all 0.18s cubic-bezier(.44,.98,.31,1);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3000;
  background: #232256f9;
  color: var(--accent);
  box-shadow: 0px -4px 18px 0px #0BFF921a;
  padding: 24px 14px 20px 14px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-between;
  gap: 18px;
  animation: slideUpBanner 0.7s cubic-bezier(.57,1.47,.27,.79);
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  font-size: 1rem;
  color: var(--accent);
  flex: 1 1 auto;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex: 0 1 auto;
}
.cookie-banner__button {
  background: var(--electric-green);
  color: #181734;
  border: none;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 10px 20px;
  margin-left: 2px;
  font-size: 1rem;
  transition: background 0.16s, color 0.15s, transform 0.16s;
  box-shadow: 0 1.5px 8px #0BFF9262;
}
.cookie-banner__button.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner__button.reject {
  background: #fff;
  color: var(--secondary);
}
.cookie-banner__button.settings {
  background: var(--electric-blue);
  color: #1B1A37;
}
.cookie-banner__button:hover, .cookie-banner__button:focus {
  filter: brightness(106%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 3px 13px #0BFF9299;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #131228ce;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalPop 0.4s cubic-bezier(.69,-0.07,.38,1.35);
}
@keyframes cookieModalPop {
  from { opacity: 0; transform: scale(0.92) translateY(40px); }
  to { opacity: 1; transform: none; }
}
.cookie-modal {
  background: var(--card-bg);
  color: var(--accent);
  border-radius: 22px;
  box-shadow: 0 7px 32px #0BFF9222,0 2px 17px #F2053022;
  padding: 38px 22px 24px 22px;
  width: 96vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--electric-green);
  font-size: 1.45rem;
}
.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 100%;
  font-size: 1.35rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-modal__category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  background: #fff1;
  padding: 11px 12px 10px 14px;
  border-radius: 10px;
  color: var(--electric-blue);
}
.cookie-modal__category .category-label {
  flex: 1 1 auto;
}
.cookie-modal__switch {
  width: 38px;
  height: 20px;
  border-radius: 12px;
  background: #333356;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal__switch[data-on="true"] {
  background: var(--electric-green);
}
.cookie-modal__switch-indicator {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px #18173428;
  transition: left 0.14s;
}
.cookie-modal__switch[data-on="true"] .cookie-modal__switch-indicator {
  left: 20px;
}
.cookie-modal__category.essential {
  filter: brightness(114%);
}
.cookie-modal__category.essential .cookie-modal__switch {
  background: var(--secondary);
  pointer-events: none;
}
.cookie-modal__actions {
  margin-top: 14px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 13px;
}
.cookie-modal__button {
  border-radius: 18px;
  padding: 9px 20px;
  font-family: 'Rajdhani', Arial, sans-serif;
  font-weight: 700;
  border: none;
  font-size: 1rem;
  transition: background 0.16s, color 0.14s, transform 0.11s;
  box-shadow: 0 1.5px 7px #07FFFF22;
  cursor: pointer;
}
.cookie-modal__button.save {
  background: var(--electric-blue);
  color: #1B1A37;
}
.cookie-modal__button.cancel {
  background: #fff;
  color: var(--secondary);
}
.cookie-modal__button:hover, .cookie-modal__button:focus {
  filter: brightness(107%);
  transform: translateY(-2px) scale(1.02);
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) */
@media (max-width: 1024px) {
  .container { max-width: 970px; }
  .footer-brand img { max-width: 40px; }
}
@media (max-width: 820px) {
  .container { max-width: 98vw; }
  header .container, footer .container, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-brand { align-self: flex-start; }
  .content-wrapper { gap: 15px; }
}
@media (max-width: 768px) {
  .hero {
    padding: 42px 0 25px 0;
    min-height: unset;
  }
  .hero .container, .card-container, .content-grid, .footer .container, .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 18px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .section {
    padding: 26px 11px;
    margin-bottom: 36px;
  }
  .card {
    min-width: 180px;
    max-width: 98vw;
    padding: 20px 10px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-primary {
    padding: 13px 24px;
    font-size: 1rem;
  }
  .cta-secondary {
    padding: 12px 21px;
    font-size: 0.98rem;
  }
  .testimonial-card {
    padding: 13px 7px;
  }
}
@media (max-width: 600px) {
  .container { padding: 0 2vw; }
  .hero { padding: 29px 0 11px 0; }
  h1 { font-size: 1.31rem; }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 5px 17px 9px;
  }
  .cookie-banner__actions {
    gap: 7px;
  }
}
@media (max-width: 480px) {
  .footer-brand img { max-width: 30px; }
  .testimonial-card, .card {
    min-width: 0;
    max-width: 99vw;
    border-radius: 11px;
  }
}

/* VISUAL ENERGY DECORATIONS */
.hero:before {
  content: '';
  display: block;
  position: absolute;
  right: -100px;
  top: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at 30% 60%, #07FFFF 0%, transparent 86%);
  opacity: 0.33;
  z-index: 0;
  pointer-events: none;
}
.hero:after {
  content: '';
  display: block;
  position: absolute;
  left: -60px;
  bottom: -32px;
  width: 220px;
  height: 111px;
  background: radial-gradient(circle at 67% 60%, #F20530 0%, transparent 84%);
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}

/* HIGHLIGHTED LISTS ENERGY */
ul li b, ol li b {
  color: var(--electric-green);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* SELECTED UTILITIES FOR DIALOG CARDS/SECTIONS */
.section {
  background: linear-gradient(117deg,#23225640 60%,#18173400), none;
  border-radius: 13px;
}

/* ENSURE ADEQUATE SPACING BETWEEN ALL ELEMENTS */
main > section {
  margin-bottom: 60px;
}
main > section .testimonial-card + .testimonial-card {
  margin-top: 22px;
}
.card + .card, .testimonial-card + .testimonial-card, .section + .section {
  margin-top: 20px !important;
}

/* PREVENT OVERLAPPING */
* {
  box-sizing: border-box;
}

/* MISC: Hide default scroll for overlay when menu/cookie modal open */
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 9px;
  background: #1B1A37;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(145deg,#07FFFF44 40%,#F2053035 100%);
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #07FFFF80;
}

/* --- END --- */
