/* LueurCrypto – Minimalist Flexbox-Only CSS */
/* --------------------------------------------------------- */
/* RESET & BASELINE NORMALIZE */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  background: #fff;
  color: #141C2C;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img, video, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
:focus { outline: 2px solid #66E6B7; outline-offset: 2px; }
ul, ol { padding-left: 24px; margin-bottom: 16px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #141C2C;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p { margin-bottom: 16px; }
strong, b { font-weight: 600; }
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* --------------------------------------------------------- */
/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #F2F5FA;
  box-shadow: 0 2px 12px 0 rgba(20,28,44,0.02);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
}
header a img { height: 34px; width: auto; }
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  color: #141C2C;
  padding: 4px 0;
  position: relative;
  transition: color 0.18s;
}
header nav a:hover,
header nav a:focus { color: #66E6B7; }
header .btn-primary {
  margin-left: 16px;
}
header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #141C2C;
  cursor: pointer;
  padding: 2px 12px 2px 12px;
  border-radius: 8px;
  transition: background 0.18s;
}
header .mobile-menu-toggle:focus,
header .mobile-menu-toggle:hover {
  background: #F2F5FA;
}
/* --------------------------------------------------------- */
/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #141C2C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 12px 0 rgba(20,28,44,0.07);
  cursor: pointer;
  margin-top: 6px;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #66E6B7;
  color: #141C2C;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #F2F5FA;
  color: #141C2C;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 20px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.12s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #66E6B7;
  color: #141C2C;
}

/* --------------------------------------------------------- */
/* SECTIONS, FLEX LAYOUTS & SPACING */
section,
.section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  display: flex;
  justify-content: center;
}
.hero {
  background: #F2F5FA;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 16px 0 rgba(20,28,44,0.045);
  margin-bottom: 40px;
}
.thank-you {
  background: #F2F5FA;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(20,28,44,0.038), 0 0.5px 0.5px 0 rgba(102,230,183,0.06);
  margin-bottom: 40px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(20,28,44,0.055);
  padding: 32px 28px;
  flex: 1 1 340px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 4px 24px 0 rgba(102,230,183,0.17), 0 6px 20px 0 rgba(20,28,44,0.10);
  transform: translateY(-2px) scale(1.015);
}
.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;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 28px 0;
}
.service-cards > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(20,28,44,0.045);
  padding: 24px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.service-cards > div:hover,
.service-cards > div:focus-within {
  box-shadow: 0 6px 28px 0 rgba(102,230,183,0.14), 0 2px 12px 0 rgba(20,28,44,0.10);
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #141C2C;
  background: #F2F5FA;
  border-radius: 7px;
  padding: 4px 12px;
  align-self: flex-start;
  font-size: 1rem;
  margin-top: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}
.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 9px;
  padding: 6px 14px;
  font-size: 1rem;
  font-weight: 500;
  color: #141C2C;
  box-shadow: 0 2px 8px 0 rgba(20,28,44,0.035);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 0 0 18px 0;
}
.filters a {
  color: #141C2C;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
.filters a:hover, .filters a:focus {
  background: #66E6B7;
  color: #141C2C;
}
.analysis-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.analysis-list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(20,28,44,0.048);
  padding: 20px 18px;
  flex: 1 1 265px;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.17s;
}
.analysis-list > div:hover,
.analysis-list > div:focus-within {
  box-shadow: 0 4px 16px 0 rgba(102,230,183,0.13), 0 2px 12px 0 rgba(20,28,44,0.10);
}
.featured-analysis {
  background: #141C2C;
  color: #fff;
  border-radius: 12px;
  padding: 26px 20px;
  margin-top: 10px;
  box-shadow: 0 3px 20px 0 rgba(20,28,44,0.12);
}
.resource-categories {
  margin-bottom: 22px;
}
.featured-guides ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}
.featured-guides li {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(20,28,44,0.045);
  padding: 10px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.featured-guides a {
  color: #141C2C;
  transition: color 0.16s;
}
.featured-guides a:hover,
.featured-guides a:focus {
  color: #66E6B7;
}

/* CONTACT BLOCKS & SNIPPETS */
.contact-snippet ul,
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 0px 0;
}
.contact-snippet li,
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #141C2C;
  padding: 0 0 2px 0;
}
.contact-snippet li img,
.contact-details li img {
  width: 20px; height: 20px; filter: grayscale(1) opacity(0.60);
}
.contact-details a { color: #141C2C; text-decoration: underline; }
.contact-details a:hover, .contact-details a:focus { color: #66E6B7; }

/* --------------------------------------------------------- */
/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(20,28,44,0.07);
  margin-bottom: 24px;
  max-width: 560px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 6px 20px 0 rgba(102,230,183,0.14), 0 10px 24px 0 rgba(20,28,44,0.09);
  transform: translateY(-3px) scale(1.02);
}
.testimonial-card p {
  font-style: italic;
  color: #141C2C;
  font-size: 1.13rem;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #66E6B7;
  font-size: 1rem;
  font-weight: 500;
}
.star-rating {
  font-size: 1.15rem;
  color: #FFD700;
  letter-spacing: 1px;
}

/* --------------------------------------------------------- */
/* FOOTER */
footer {
  border-top: 1px solid #F2F5FA;
  background: #fff;
  padding: 34px 0 22px 0;
  margin-top: 40px;
  width: 100%;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
footer nav a {
  color: #141C2C;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.18s;
}
footer nav a:hover,
footer nav a:focus {
  color: #66E6B7;
  text-decoration: underline;
}
footer a img {
  height: 30px;
  margin-right: 10px;
}
footer p {
  color: #aaa;
  font-size: 0.96rem;
}

/* --------------------------------------------------------- */
/* MOBILE MENU (BURGER NAVIGATION) */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(20,28,44,0.76);
  backdrop-filter: blur(6px);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.175,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 30px 28px 0 0;
  align-self: flex-end;
  transition: color 0.15s, background 0.15s;
  cursor: pointer;
  z-index: 2100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #66E6B7; background: rgba(102,230,183,0.065); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 36px 0 38px;
  width: 100vw;
  gap: 20px;
}
.mobile-nav a {
  color: #fff;
  background: transparent;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 2px;
  border-radius: 6px;
  margin-bottom: 8px;
  width: 100%;
  transition: background 0.14s, color 0.14s;
  min-width: 80vw;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #66E6B7;
  color: #141C2C;
}

/* Hide nav on mobile, show burger */
@media (max-width: 990px) {
  header nav { display: none; }
  header .btn-primary { display: none; }
  header .mobile-menu-toggle { display: block; }
}
@media (min-width: 991px) {
  .mobile-menu, .mobile-menu.open { display: none !important; }
}

/* --------------------------------------------------------- */
/* COOKIE CONSENT BANNER & MODAL*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 12px 0 rgba(20,28,44,0.09);
  border-top: 1px solid #F2F5FA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 40px;
  z-index: 5000;
  transition: transform 0.42s cubic-bezier(.77,0,.175,1);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active { transform: none; opacity: 1; pointer-events: auto; }
.cookie-banner p {
  color: #141C2C;
  font-size: 1rem;
  flex: 2 1 300px;
  margin-right: 16px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner .btn-cookie {
  border: none;
  border-radius: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 2px 8px 0 rgba(20,28,44,0.032);
  transition: background 0.18s, color 0.18s;
}
.btn-cookie-accept { background: #141C2C; color: #fff; }
.btn-cookie-accept:hover, .btn-cookie-accept:focus { background: #66E6B7; color: #141C2C; }
.btn-cookie-reject { background: #F2F5FA; color: #141C2C; }
.btn-cookie-reject:hover, .btn-cookie-reject:focus { background: #fff; color: #141C2C; }
.btn-cookie-settings { background: none; color: #66E6B7; border: 1px solid #66E6B7; }
.btn-cookie-settings:hover, .btn-cookie-settings:focus { background: #66E6B7; color: #141C2C; }

.cookie-modal {
  position: fixed;
  z-index: 6000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,28,44,0.50);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s cubic-bezier(.77,0,.175,1);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-inner {
  background: #fff;
  padding: 38px 32px;
  border-radius: 16px;
  box-shadow: 0 6px 24px 0 rgba(20,28,44,0.18);
  min-width: 300px;
  min-height: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInScale 0.37s cubic-bezier(.77,0,.175,1);
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #141C2C;
  font-size: 1.9rem;
  position: absolute;
  top: 16px;
  right: 22px;
  cursor: pointer;
  z-index: 6100;
  transition: color 0.13s, background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #66E6B7; background: rgba(102,230,183,0.055); }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.category input[type=checkbox], .category input[type=radio] {
  width: 18px; height: 18px;
  accent-color: #66E6B7;
  margin-right: 2px;
}
.category .always-on {
  font-size: 0.98rem;
  color: #aaa;
  margin-left: 8px;
}
.cookie-modal-footer {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

/* --------------------------------------------------------- */
/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container { max-width: 99vw; padding: 0 12px; }
}
@media (max-width: 990px) {
  .hero { padding-left: 0; padding-right: 0; }
  .service-cards > div, .analysis-list > div {
    flex: 1 1 100%;
    min-width: 80vw;
    max-width: 99vw;
  }
  .card {
    padding: 24px 13px;
    min-width: 90vw;
    max-width: 99vw;
  }
  .trust-badges span { padding: 6px 7px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.27rem; }
  .section, section {padding: 25px 5px; margin-bottom: 36px;}
  .content-grid, .service-cards, .analysis-list, .card-container, .featured-guides ul {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper { gap: 12px; }
  .testimonial-card { max-width: 97vw; }
  .featured-analysis { padding: 18px 10px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 12px; }
  .cookie-banner p { margin-right: 0; }
  .cookie-modal-inner { min-width: unset; padding: 23px 9px; }
  .mobile-nav { padding: 26px 10px 0 20px; min-width: 0; }
  header .container { gap: 4px; }
  footer .content-wrapper { flex-direction: column; align-items: flex-start; gap: 11px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.29rem; }
  h2 { font-size: 1.06rem; }
  .btn-primary, .btn-secondary, .btn-cookie { font-size: 0.96rem; padding: 10px 12px; }
  .service-cards > div, .analysis-list > div, .card { padding: 16px 4px; }
  .featured-guides ul { gap: 7px; }
  .featured-guides li { padding: 7px 7px; font-size: 0.96rem; }
}

/* --------------------------------------------------------- */
/* ACCENTS & INTERACTIVE MICRO-INTERACTIONS */
::-webkit-scrollbar { width: 9px; background: #fff; }
::-webkit-scrollbar-thumb { background: #F2F5FA; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #66E6B7; }

/* Selection highlight */
::selection { background: #66E6B7; color: #fff; }

/* --------------------------------------------------------- */
/* UTILITY CLASSES */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center !important; }
.align-center { align-items: center !important; }
.show { display: block !important; }
.hide { display: none !important; }

/* --------------------------------------------------------- */
/* END OF LUEURCRYPTO MINIMALIST CSS (FLEXBOX ONLY) */
