/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #FAFBFF;
  color: #232C3C;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  position: relative;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* BRAND COLORS */
:root {
  --primary: #232C3C;
  --secondary: #99B8E2;
  --accent: #F3E8CB;
  --electric-blue: #36AFFF;
  --electric-pink: #FF36C8;
  --vivid-yellow: #FFE03B;
  --vivid-teal: #23FFD5;
  --neutral-bg: #FAFBFF;
  --dark-text: #232C3C;
  --white: #fff;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
strong {
  font-weight: 700;
}

/* CONTAINERS & LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX MANDATORY LAYOUTS */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(54,175,255,0.11), 0 1.5px 3px 0 rgba(35,44,60,0.07);
}
.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: var(--accent);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(54,175,255,0.07);
  margin-bottom: 20px;
  transition: transform 0.14s, box-shadow 0.14s;
  min-width: 280px;
  max-width: 680px;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.013);
  box-shadow: 0 8px 28px 0 rgba(54,175,255,0.2);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS & CTA */
.cta-btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--electric-blue), var(--electric-pink));
  color: #fff;
  padding: 14px 36px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px 0 rgba(54,175,255,0.16);
  transition: background 0.15s, box-shadow 0.15s, transform 0.09s;
  border: none;
  cursor: pointer;
  margin-top: 16px;
  outline: none;
  text-shadow: 0 1px 4px rgba(35,44,60,0.09);
}
.cta-btn:hover, .btn:hover, .cta-btn:focus, .btn:focus {
  background: linear-gradient(90deg, var(--electric-pink), var(--electric-blue));
  box-shadow: 0 10px 32px 0 rgba(35,255,213,0.09), 0 1.5px 10px 0 rgba(232,60,144,0.08);
  transform: translateY(-2px) scale(1.02);
}

/* HEADER STYLES */
header {
  background: var(--white);
  box-shadow: 0 1px 7px 0 rgba(35,44,60,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--primary);
  padding: 7px 2px;
  border-radius: 4px;
  transition: color 0.2s, background 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--electric-pink);
  background: rgba(232,60,144,0.07);
}
.mobile-menu-toggle {
  font-size: 2rem;
  color: var(--electric-blue);
  background: none;
  display: none;
  z-index: 102;
  margin-left: 12px;
  transition: color 0.18s, transform 0.18s;
  border-radius: 6px;
  padding: 0 5px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--electric-pink);
  outline: 2px solid var(--electric-pink);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: var(--primary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.53,.12,.18,1.13);
  box-shadow: 3px 0 16px 0 rgba(54,175,255,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: none;
  color: var(--electric-pink);
  margin: 24px 22px 12px 0;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.13s;
  z-index: 102;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(255,255,255,0.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0 0 36px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 11px 6px;
  border-radius: 4px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--electric-blue);
  color: var(--primary);
}
/* Hide nav for screen readers if not open (handled by js) */
.mobile-menu {
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(90deg, var(--vivid-yellow) 0%, var(--electric-blue) 100%);
  color: var(--primary);
  margin-bottom: 60px;
  padding: 64px 0 56px 0;
  display: flex;
  align-items: center;
  box-shadow: 0 11px 54px 0 rgba(35,255,213,0.08);
}
.hero-section h1 {
  color: var(--primary);
  font-size: 2.7rem;
  background: linear-gradient(90deg, var(--primary), var(--electric-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 18px;
  line-height: 1.12;
}
.hero-section p {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 18px;
  font-weight: 500;
}

/* ARTICLES/FEATURES SECTION */
.features-grid > div {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2.5px 12px 0 rgba(54,175,255,0.07);
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 280px;
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: transform 0.15s, box-shadow 0.17s;
  border: 2.5px solid var(--accent);
  position: relative;
  z-index: 1;
}
.features-grid > div img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px var(--electric-blue));
}
.features-grid > div:hover {
  box-shadow: 0 6px 30px 0 rgba(232,60,144,0.17);
  transform: translateY(-5px) scale(1.04);
  border-color: var(--electric-blue);
}
.features-grid h3 {
  margin: 3px 0 6px 0;
  color: var(--electric-pink);
  font-size: 1.23rem;
  letter-spacing: -0.2px;
  font-weight: 900;
}
.features-grid p {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

/* TEXT-SECTIONS and CTAS */
.text-section ul, .text-section ol {
  margin-left: 18px;
  margin-top: 8px;
  margin-bottom: 10px;
  padding-left: 18px;
  color: var(--primary);
}
.text-section ul li, 
.text-section ol li {
  margin-bottom: 9px;
  font-size: 1rem;
  position: relative;
  line-height: 1.7;
}
.text-section ul li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--electric-blue);
  box-shadow: 0 0 3px 0 var(--electric-pink);
}
.text-section ol {
  list-style-type: decimal;
}
.text-section ol li:before {
  display: none;
}

/* TESTIMONIALS */
.testimonials-section h2 {
  color: var(--electric-blue);
  font-size: 2rem;
  margin-bottom: 16px;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.07rem;
  font-style: italic;
  margin-right: 18px;
  line-height: 1.7;
}
.testimonial-card strong {
  color: var(--electric-blue);
  font-size: 1.13rem;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 0.2px;
}

/* CTA SECTIONS */
.cta-section {
  background: linear-gradient(90deg, var(--electric-pink) 0%, var(--vivid-teal) 80%);
  color: var(--primary);
  padding: 48px 16px 54px 16px;
  margin-bottom: 0;
}
.cta-section h2 {
  color: #fff;
  background: linear-gradient(90deg, #fff, var(--vivid-yellow), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 16px;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.17;
}
.cta-section p {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

/* FOOTER STYLES */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 44px 0 28px 0;
  box-shadow: 0 -7px 34px 0 rgba(54,175,255,0.08);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.35px;
  font-size: 1.08rem;
  font-weight: 600;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--electric-pink);
}
.footer-contact {
  color: var(--secondary);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  margin-top: 5px;
}
footer img {
  margin-bottom: 12px;
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--accent);
  padding: 24px 18px 20px 18px;
  z-index: 1200;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
  box-shadow: 0 -13px 54px 0 rgba(36,175,255,0.14);
  transition: transform 0.35s;
}
.cookie-banner.hidden {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-msg {
  flex: 1 1 180px;
  max-width: 540px;
  color: var(--accent);
  margin-bottom: 7px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  border-radius: 24px;
  padding: 10px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 12px rgba(54,175,255,0.08);
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
.cookie-banner .accept-btn {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-banner .accept-btn:hover {
  background: var(--electric-pink);
}
.cookie-banner .reject-btn {
  background: #fff;
  color: var(--electric-blue);
}
.cookie-banner .reject-btn:hover {
  background: var(--vivid-yellow);
  color: var(--primary);
}
.cookie-banner .settings-btn {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .settings-btn:hover {
  background: var(--vivid-teal);
  color: var(--primary);
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,44,60,0.33);
  z-index: 1300;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.hidden {
  display: none;
}
.cookie-modal {
  background: var(--neutral-bg);
  border-radius: 16px;
  box-shadow: 0 10px 44px 0 rgba(54,175,255,0.18);
  padding: 40px 30px 28px;
  max-width: 420px;
  width: 90vw;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.33rem;
  font-weight: 900;
  color: var(--electric-blue);
  margin-bottom: 6px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 2rem;
  background: none;
  color: var(--electric-pink);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.14s;
}
.cookie-modal .cookie-close:hover,
.cookie-modal .cookie-close:focus {
  background: rgba(54,175,255,0.08);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
}
.cookie-modal .cookie-category .toggle {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-modal .toggle-switch {
  width: 34px;
  height: 20px;
  border-radius: 11px;
  background: var(--secondary);
  position: relative;
  transition: background 0.16s;
}
.cookie-modal .toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 34px;
  height: 20px;
  position: absolute;
  cursor: pointer;
}
.cookie-modal .toggle-switch .slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s, background 0.16s;
}
.cookie-modal .toggle-switch input:checked ~ .slider {
  left: 17px;
  background: var(--electric-pink);
}
.cookie-modal .toggle-switch input:checked ~ .slider {
  background: var(--electric-blue);
}
.cookie-modal .toggle-switch input[type="checkbox"]:disabled ~ .slider {
  background: var(--accent);
}
.cookie-modal .category-desc {
  font-size: 0.98rem;
  color: var(--primary);
  margin-left: 4px;
}
.cookie-modal .category-label[aria-disabled="true"] {
  color: #aaa;
  font-style: italic;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .modal-btns .btn {
  padding: 8px 20px;
  font-size: 1.02rem;
  border-radius: 22px;
}

/* FORMS & INPUTS FOR CONTACT ETC */
input, textarea {
  border-radius: 12px;
  border: 2px solid var(--secondary);
  font-family: inherit;
  font-size: 1rem;
  padding: 11px 14px;
  transition: border-color 0.14s;
  margin-bottom: 16px;
  width: 100%;
  background: #fff;
  color: var(--primary);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
}
label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  margin-bottom: 6px;
  color: var(--primary);
  display: inline-block;
  font-weight: 500;
}

/* GENERAL CARD STYLE */
.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2.5px 12px rgba(54,175,255,0.09);
  padding: 20px 24px 22px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* MISCELLANEOUS STYLES */
li {
  margin-bottom: 8px;
  padding-left: 0px;
}
strong {
  color: var(--electric-blue);
}

/* SPACING ENFORCEMENT */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container > *,
.features-grid > *,
.content-grid > *,
.text-image-section > *,
.testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1099px) {
  .container {
    max-width: 940px;
    padding: 0 12px;
  }
  .features-grid {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100%;
    padding: 0 7px;
  }
  .features-grid {
    gap: 16px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .features-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .features-grid > div {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    min-width: 0;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  .hero-section h1 {
    font-size: 1.4rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .cta-section, .section {
    padding: 30px 4px;
    margin-bottom: 34px;
  }
}
@media (max-width: 540px) {
  .hero-section {
    padding: 40px 0 20px;
  }
  .features-grid > div,
  .card,
  .testimonial-card {
    padding: 13px 8px 14px;
    min-width: 0;
    max-width: 100%;
  }
  .footer-nav {
    gap: 7px;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 18px 7vw 18px 7vw;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.cta-btn, .btn, .main-nav a, .features-grid > div, .testimonial-card {
  transition: 
    background 0.14s,
    box-shadow 0.16s,
    color 0.14s,
    transform 0.14s
    ;
}

/* HIDE/SHOW VIA JS */
.hide {
  display: none !important;
}
.show {
  display: initial !important;
}

/* Z-INDEX LAYERING */
header { z-index: 50; }
.mobile-menu { z-index: 1001; }
.cookie-banner { z-index: 1200; }
.cookie-modal-overlay { z-index: 1300; }

/* END OF MAIN CSS */
