/* CSS RESET & NORMALIZATION */
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 {
  background: #161A28;
  color: #F3F4F8;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
a {
  color: #EED74A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFFFFF;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}

/* VARIABLES + FALLBACKS */
:root {
  --fs-title: 2.4rem;
  --fs-h2: 1.6rem;
  --fs-h3: 1.25rem;
  --fs-body: 1rem;
  --fs-small: 0.95rem;
  --color-primary: #1B2236;
  --color-secondary: #EED74A;
  --color-accent: #FFFFFF;
  --color-bg: #161A28;
  --color-card: #232845;
  --color-shadow: rgba(34, 200, 255, 0.12);
  --color-border: #313652;
  --color-neon: #58ffd6;
  --color-gradient-start: #181E36;
  --color-gradient-end: #222C4E;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.01em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 16px;
  color: var(--color-secondary);
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-accent);
}
h4, .h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-accent);
}
p, li, ul, ol {
  font-size: 1rem;
  color: #F3F4F8;
  line-height: 1.62;
}
strong {
  color: var(--color-secondary);
  font-weight: 700;
}
.text-section ul {
  margin-bottom: 16px;
}
.text-section ul li {
  margin-bottom: 6px;
}

/* SPACING & LAYOUT UTILITIES  */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card-container, .card-grid, .feature-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 var(--color-shadow), 0 0 0 1.5px var(--color-neon);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  transition: box-shadow 0.18s, border-color 0.15s;
  border: 1.5px solid var(--color-border);
}
.card:hover {
  box-shadow: 0 4px 32px 0 #58ffd666, 0 0 0 2.5px var(--color-secondary);
  border-color: var(--color-secondary);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  color: #1B2236;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 var(--color-shadow), 0 0 0 2px #EED74A30;
  min-width: 270px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 #EED74A66, 0 0 0 4px #58ffd655;
}
.star-ratings {
  font-size: 1.12rem;
  color: #FFD600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-card);
  border-radius: 16px;
  padding: 28px 22px;
  margin-bottom: 20px;
}
.feature-grid > div, .features > div {
  flex: 1 1 calc(300px - 24px);
  min-width: 250px;
  min-height: 190px;
  background: var(--color-card);
  border-radius: 14px;
  padding: 28px 18px 22px;
  box-shadow: 0 2px 14px 0 var(--color-shadow), 0 0 0 1.5px var(--color-neon);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s, border 0.13s;
  border: 1.5px solid var(--color-border);
}
.feature-grid > div:hover, .features > div:hover {
  box-shadow: 0 8px 40px 0 #58ffd655, 0 0 0 2.5px var(--color-secondary);
  border-color: var(--color-secondary);
}
.feature-grid img, .features img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 4px #58ffd633);
}
.price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-top: auto;
}
.contact-info {
  background: var(--color-card);
  border-radius: 12px;
  padding: 20px 16px;
  margin-bottom: 24px;
  box-shadow: 0 1px 12px #181E3650;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* HERO SECTION */
section:first-of-type {
  background: linear-gradient(108deg, #181E36 20%, #232845 100%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
} 
section:first-of-type h1 {
  font-size: 2.8rem;
  color: #58ffd6;
  text-shadow: 0 2px 12px #222c4e44;
  margin-bottom: 18px;
}
section:first-of-type p {
  color: #E2EFF2;
  font-size: 1.14rem;
  margin-bottom: 24px;
}
section:first-of-type .cta.primary {
  margin-top: 14px;
}

/* NAVIGATION + HEADER */
header {
  background: rgba(27, 34, 54, 0.98);
  box-shadow: 0 8px 32px 0 #030B20cc;
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  min-height: 72px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav > a > img {
  height: 35px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin: 0 28px 0 30px;
  list-style: none;
}
.main-nav ul li a {
  color: #EED74A;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color .16s;
  position: relative;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #58ffd6;
}
.main-nav .cta.primary {
  margin-left: 20px;
}

/* CTA & BUTTONS */
.cta, button, .button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  background: linear-gradient(92deg, #EED74A 60%, #58ffd6 100%);
  color: #161A28;
  padding: 13px 34px;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 #eed74a15;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.16s, color 0.18s;
  letter-spacing: 0.04em;
  margin-right: 16px;
}
.cta.primary, button.primary {
  background: linear-gradient(84deg, #58ffd6 20%, #EED74A 80%);
  color: #232845;
  font-weight: 700;
  box-shadow: 0 2px 18px #58ffd611;
  border: 1.5px solid #58ffd6;
}
.cta:hover, .cta:focus, .button:hover, .button:focus {
  background: linear-gradient(92deg, #EED74A 85%, #1B2236 100%);
  color: #161A28;
  box-shadow: 0 8px 36px 0 #eed74a26, 0 0 0 4px #58ffd633;
}
.cta:active {
  background: var(--color-secondary);
  color: #1B2236;
}

/* FOOTER */
footer {
  background: #131726;
  padding: 40px 0 18px 0;
  color: #b8beec;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-bottom: 18px;
  width: 100%;
}
.footer-nav a {
  color: #EED74A;
  font-size: 1rem;
  text-decoration: underline dotted;
  margin: 0 2px;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #58ffd6;
}
.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 34px;
}
.footer-info {
  text-align: center;
  color: #92a2cf;
  font-size: 0.94rem;
  margin-top: 8px;
}

/* SLIDER/STAGGERED TESTIMONIAL CARDS */
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: start;
}

/* BLOG ARTICLE TEASERS */
.article-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.article-teasers .text-section {
  background: var(--color-card);
  border-radius: 18px;
  padding: 22px 16px 16px;
  box-shadow: 0 2px 16px #161a2830;
  flex: 1 1 260px;
  min-width: 260px;
}
.article-teasers .text-section h3 {
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.categories-list.text-section {
  margin-top: 18px;
  background: var(--color-card);
  border-radius: 14px;
  padding: 14px 20px 12px;
  /* Box shadow subtle */
  box-shadow: 0 2px 14px #58ffd616;
}
.categories-list ul li {
  color: #EED74A;
  margin-bottom: 4px;
}

/* SHORT TIPS & HIGHLIGHTS */
.short-tips, .trend-highlights {
  background: var(--color-card);
  border-radius: 14px;
  box-shadow: 0 2px 14px #EED74A11;
  padding: 18px 22px 14px;
}
.short-tips h3, .trend-highlights h3 {
  color: #58ffd6;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: rgba(27, 34, 54, .98);
  color: #ECEDED;
  padding: 24px 18px 20px 18px;
  box-shadow: 0 -2px 10px #58ffd655;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 1.02rem;
  border-radius: 16px 16px 0 0;
}
.cookie-banner-content {
  flex: 1 1 0%;
  margin-right: 8px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  background: linear-gradient(94deg, #58ffd6 25%, #EED74A 90%);
  color: #161A28;
  padding: 10px 21px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 5px 0 0;
  transition: background 0.18s, color 0.15s, box-shadow 0.18s;
  box-shadow: 0 1px 6px #eed74a13;
  cursor: pointer;
}
.cookie-banner button.accept {
  background: linear-gradient(84deg, #58ffd6 25%, #EED74A 100%);
  color: #161A28;
}
.cookie-banner button.reject {
  background: transparent;
  color: #EED74A;
  border: 1.4px solid #EED74A;
}
.cookie-banner button.settings {
  background: transparent;
  color: #58ffd6;
  border: 1.4px solid #58ffd6;
}
.cookie-banner button:hover {
  box-shadow: 0 2px 12px #58ffd633, 0 0 0 2.5px #EED74A44;
}
.cookie-banner .cookie-link {
  color: #EED74A;
  text-decoration: underline;
}

/* COOKIE PREF MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 130;
  background: rgba(22, 26, 40, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-dialog {
  background: var(--color-card);
  box-shadow: 0 0 24px #58ffd655, 0 0 0 4px #EED74A33;
  border-radius: 18px;
  padding: 32px 28px 26px;
  width: 96%;
  max-width: 410px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #ECEDED;
  border: 1.2px solid #EED74A26;
  position: relative;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #EED74A;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}
.cookie-modal h2 {
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  color: #EED74A;
  font-weight: 500;
}
.cookie-modal .cookie-switch {
  margin-left: auto;
}
.cookie-switch input[type="checkbox"] {
  accent-color: #58ffd6;
  width: 20px;
  height: 20px;
}
.cookie-category.essential label {
  color: #58ffd6;
}
.cookie-category.essential .cookie-switch {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-actions button {
  padding: 9px 22px;
  border-radius: 18px;
  border: none;
  font-weight: 600;
  transition: background 0.17s, color 0.12s;
}
.cookie-modal .cookie-actions .accept {
  background: #58ffd6;
  color: #232845;
}
.cookie-modal .cookie-actions .reject {
  background: none;
  border: 1.5px solid #fed74a;
  color: #EED74A;
}
.cookie-modal .cookie-actions .accept:hover {
  background: #EED74A;
  color: #181E36;
}
.cookie-modal .cookie-actions .reject:hover {
  color: #58ffd6;
  border-color: #58ffd6;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #EED74A;
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 101;
  cursor: pointer;
  display: none;
  transition: color 0.17s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #58ffd6;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 110;
  background: linear-gradient(95deg, #181E36 65%, #58ffd6 140%);
  box-shadow: 0 2px 24px #131726cc;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.75,.02,.42,1.18);  
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #EED74A;
  cursor: pointer;
  margin: 22px 22px 12px 0;
  align-self: flex-end;
  z-index: 111;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #F8FEFE;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 28px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #EED74A;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 0 8px 4px;
  margin-bottom: 2px;
  border-radius: 4px;
  transition: background .16s, color .13s;
  display: block;
  min-width: 66vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #58ffd61a;
  color: #161A28;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding: 0 14px;
  }
}
@media (max-width: 900px) {
  .card-container, .card-grid, .feature-grid, .features {
    gap: 18px;
  }
  .testimonial-slider {
    gap: 16px;
  }
}
@media (max-width: 820px) {
  .main-nav ul {
    gap: 18px;
    margin: 0 6px 0 16px;
  }
  .card {
    min-width: 175px;
    padding: 20px 8px 20px 10px;
  }
  .feature-grid > div, .features > div {
    min-width: 160px;
    min-height: 140px;
    padding: 18px 8px 14px;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .main-nav {
    padding: 0 10px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
  .feature-grid, .card-container, .card-grid, .features, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .features > div, .card {
    min-width: 0;
    width: 100%;
  }
  .content-wrapper, .text-section {
    max-width: 100%;
    padding: 0;
    gap: 14px;
  }
  .contact-info {
    padding: 14px 7px;
  }
  .article-teasers {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    padding: 16px 6px;
  }
}
@media (max-width: 560px) {
  h1, .h1 {
    font-size: 1.5rem;
  }
  h2, .h2 {
    font-size: 1.2rem;
  }
  h3, .h3 {
    font-size: 1.05rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    font-size: 0.97rem;
  }
}
@media (max-width: 480px) {
  .container {
    max-width: 100vw;
    padding: 0 5px;
  }
  .footer-brand img {
    height: 24px;
  }
  .footer-nav {
    gap: 6px;
    flex-direction: column;
    font-size: 0.97rem;
  }
}

/* TEXT-IMAGE SECTION MOBILE LAYOUT */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
}

/* HELPER CLASSES */
.neon-text {
  color: #58ffd6;
  text-shadow: 0 0 12px #58ffd644, 0 2px 10px #040816;
}
.text-secondary {
  color: #EED74A;
}
.text-accent {
  color: #FFF;
}

/* MISC */
::-webkit-scrollbar { width: 10px; background: #181E36; }
::-webkit-scrollbar-thumb { background: #232845; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #EED74A55; }
::selection { background: #EED74A44; }

/* FOCUS VISIBLE */
*:focus-visible {
  outline: 2px solid #58ffd6;
  outline-offset: 2px;
}

/* MODAL ANIMATION */
.cookie-modal {
  transition: opacity 0.32s;
}

/* Z- INDEXES */
header { z-index: 50; }
.mobile-menu { z-index: 110; }
.cookie-banner { z-index: 120; }
.cookie-modal { z-index: 130; }

/* Prevent layout overlap on all elements - min 20px between cards and sections */
.section, .card, .testimonials, .feature-grid > div, .card-container > *, .testimonial-card {
  margin-bottom: 20px;
}

/* END */