/* RESET & NORMALIZE (MOBILE-FIRST) */
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 { box-sizing: border-box; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #fff;
  color: #14213D;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
}

/* BRAND COLORS */
:root {
  --brand-primary: #14213D;
  --brand-secondary: #FCA311;
  --brand-accent: #E5E5E5;
  --brand-alert: #FF5675;
  --brand-success: #26D07C;
  --white: #fff;
  --grey: #ededed;
  --shadow: 0 6px 32px rgba(52,30,101,0.09), 0 2px 4px rgba(20,33,61,0.08);
}

/* TYPOGRAPHY (PLAYFUL + DYNAMIC) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--brand-primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 1px 4px 0 var(--brand-secondary), 0 6px 16px rgba(252,163,17,0.08);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.2;
}
h4, h5, h6 { font-size: 1.1rem; }
p, li, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #14213D;
  margin-bottom: 12px;
  line-height: 1.7;
}
strong, b { font-weight: 700; }
.text-section h1,
.text-section h2 { color: var(--brand-secondary); }

/* FUN & ENERGETIC FONT FOR CTA/NUMBERS */
.cta-section h2, .hero h1 {
  font-family: 'Montserrat', cursive, sans-serif;
  letter-spacing: 1.5px;
  color: var(--brand-primary);
  text-shadow: 0 6px 32px rgba(252,163,17,0.17);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER AND NAV */
header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(252,163,17, .07);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  min-height: 72px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img {
  height: 44px;
  margin: 0 12px 0 0;
  transition: transform 0.21s cubic-bezier(.62,.02,.51,1.53);
}
.logo:hover img {
  transform: rotate(-7deg) scale(1.07);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-primary);
  padding: 8px 13px;
  border-radius: 20px;
  background: none;
  transition: background 0.24s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-secondary);
  color: var(--white);
}
.btn.btn-primary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding: 12px 28px;
  border: none;
  border-radius: 28px 24px 36px 28px/22px 32px 20px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  letter-spacing: 1.4px;
  font-weight: 700;
  box-shadow: 0 4px 22px rgba(252,163,17,0.10);
  cursor: pointer;
  margin-left: 14px;
  transition: background .19s cubic-bezier(.5,1.6,.27,1), color .16s;
  position: relative;
  outline: none;
  min-width: 140px;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  box-shadow: 0 6px 42px rgba(20,33,61,0.16),0 2px 8px rgba(252,163,17,0.08);
}
.btn.btn-secondary {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  padding: 11px 26px;
  border: none;
  border-radius: 23px 27px 24px 20px/19px 20px 28px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background .21s, color .18s;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

/* Hamburger (Mobile Menu) Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  margin-left: 10px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(252,163,17,0.17);
  transition: background 0.23s, color 0.21s, transform .16s;
  z-index: 1001; /* Above menu overlay */
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  transform: scale(1.07) rotate(-8deg);
}

/* Hide on desktop */
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(20, 33, 61, 0.89);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.45,1.3,.31,1), opacity 0.22s;
  opacity: 0;
  z-index: 1002;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: none;
  margin: 26px 28px 8px 0;
  width: 48px;
  height: 48px;
  font-size: 2.1rem;
  border-radius: 50%;
  cursor: pointer;
  align-self: flex-end;
  box-shadow: 0 2px 14px rgba(252,163,17,0.15);
  transition: background 0.22s, color 0.12s, transform 0.12s;
  outline: none;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--white);
  color: var(--brand-alert);
  transform: scale(1.15) rotate(-8deg);
}
.mobile-nav {
  margin-top: 16vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 90vw;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  background: transparent;
  padding: 18px 0 14px 32px;
  border-radius: 0 16px 16px 0;
  font-weight: 700;
  width: 100%;
  transition: background .18s, color .16s, padding-left .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding-left: 48px;
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

/* LAYOUT: SECTIONS & GAPS */
main { margin-bottom: 64px; }
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cta-section {
  align-items: center;
  justify-content: center;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 38px 36px 44px 28px/28px 32px 42px 40px;
  box-shadow: 0 2px 24px rgba(252,163,17,0.07);
  padding: 46px 18px;
  margin-top: 24px;
}
.cta-section h2 { color: var(--brand-primary); }

.text-section {
  background: var(--brand-accent);
  border-radius: 32px;
  padding: 36px 24px;
}

/* FLEX SPACING RULES */
.card-container, .service-list, .service-grid, .articles-grid, .crypto-list, .guide-list, .team-profiles, .report-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .service-item, .crypto-item, .guide-item, .article-preview, .profile, .report-item {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 23px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.19s;
  padding: 28px 22px 25px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover, .service-item:hover, .crypto-item:hover, .guide-item:hover, .article-preview:hover, .report-item:hover, .profile:hover {
  box-shadow: 0 8px 44px rgba(252,163,17,0.16), 0 2px 8px rgba(20,33,61,0.11);
  z-index: 2;
}

.features-list, .values-list, .benefit-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}
.features-list li, .values-list li, .benefit-list li, .faq-list li {
  flex: 1 1 300px;
  background: var(--brand-accent);
  border-radius: 23px;
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  min-width: 200px;
  font-size: 1rem;
}
.features-list img, .benefit-list img, .values-list img {
  width: 44px;
  height: 44px;
  margin-right: 13px;
  display: block;
}
.features-list h3, .benefit-list h3 { margin: 0 0 6px 0; }

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* TESTIMONIALS */
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 12px 0 28px 0;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 2px 22px rgba(20,33,61,0.16);
  padding: 24px 24px 20px 24px;
  gap: 14px;
  width: 320px;
  transition: box-shadow 0.17s, transform 0.17s;
  border: 2.5px solid var(--brand-secondary);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: var(--brand-primary);
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--brand-secondary);
  letter-spacing: 1px;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.035);
  border-color: var(--brand-primary);
  box-shadow: 0 6px 28px rgba(20,33,61,0.18), 0 4px 14px rgba(252,163,17,0.09);
}
.client-logos {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  margin-top: 18px;
}
.client-logos img {
  height: 48px;
  filter: saturate(1.5);
  opacity: 0.95;
  transition: filter 0.18s, transform 0.12s;
}
.client-logos img:hover {
  filter: saturate(2.7) contrast(1.24);
  transform: scale(1.18) rotate(-8deg);
}

/* ARTICLES & REPORTS */
.articles-grid, .report-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.article-preview, .report-item {
  flex: 1 1 320px;
  min-width: 240px;
}
.read-more {
  color: var(--brand-secondary);
  font-weight: 700;
  transition: color 0.13s;
  font-size: 1.07rem;
}
.read-more:hover, .read-more:focus {
  color: var(--brand-primary);
  text-decoration: underline wavy 1.6px var(--brand-secondary);
}

/* TEAM PROFILES */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.profile {
  flex: 1 1 280px;
  background: var(--white);
  border-radius: 23px;
  box-shadow: var(--shadow);
  min-width: 220px;
}
.profile h3 {
  color: var(--brand-secondary);
}

/* FAQ & CONTACT DETAILS */
.faq-cryptocurrencies ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.contact-details, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.03rem;
  margin-bottom: 6px;
}
.contact-details img {
  width: 24px; height: 24px;
}

/* FOOTER */
footer {
  background: var(--brand-primary);
  color: var(--white);
  padding-top: 46px;
  padding-bottom: 20px;
}
footer .container {
  flex-direction: column;
  gap: 34px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 24px;
}
.footer-nav a {
  color: var(--brand-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color .17s, text-decoration .18s;
  text-decoration: underline dotted 2px rgba(252,163,17,0.1);
  text-underline-offset: 6px;
}
.footer-nav a:hover,
.footer-nav a:focus { color: var(--brand-alert); text-decoration: underline solid 2px var(--brand-alert); }

.contact-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 34px;
  margin-bottom: 22px;
}
.contact-footer img {
  height: 56px;
  width: 56px;
  margin-right: 22px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info p {
  color: var(--white);
  font-size: 1rem;
}
.footer-copy {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copy small {
  color: var(--brand-accent);
  font-size: 0.95rem;
}

/* CARDS, LISTS, CTA BUTTONS */
.card, .service-item, .crypto-item, .profile, .guide-item {
  cursor: pointer;
  border: 2px solid transparent;
  transition: box-shadow 0.17s, border-color 0.19s;
}
.card:hover, .service-item:hover, .crypto-item:hover, .profile:hover, .guide-item:hover {
  border-color: var(--brand-secondary);
  box-shadow: 0 8px 32px rgba(252,163,17,0.14), 0 2px 9px rgba(20,33,61,0.08);
  z-index: 2;
}

/* MICRO-INTERACTIONS & ANIMATIONS */
.hero {
  background: linear-gradient(88deg, var(--brand-accent), #f9fafc 60%, var(--brand-secondary) 120%);
  border-radius: 0 0 54px 44px/0 0 34px 48px;
  margin-bottom: 70px;
  animation: heroPop 1.5s cubic-bezier(.67,-0.19,.27,1.11);
}
@keyframes heroPop {
  0% { opacity: 0; transform: translateY(-28px) scale(0.95); }
  85% { opacity: 1; transform: translateY(5px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1.00); }
}
section, .card, .service-item, .crypto-item, .profile, .testimonial-card, .guide-item {
  animation: fadeInPop .8s cubic-bezier(.7,1.2,.28,1.19) backwards;
}
@keyframes fadeInPop {
  0% { opacity: 0; transform: translateY(32px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* BUTTONS micro-animation */
.btn, .btn-primary, .btn-secondary {
  transition: background 0.19s, color 0.12s, box-shadow .16s, transform .13s;
}
.btn:active, .btn.btn-primary:active, .btn.btn-secondary:active {
  transform: scale(0.98);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--brand-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1500;
  gap: 28px;
  box-shadow: 0 -2px 18px rgba(20,33,61,0.18);
  padding: 28px 16px 28px 28px;
  animation: cookieBannerFade 1s cubic-bezier(.48,1.35,.28,1.07);
  transition: bottom 0.35s;
}
@keyframes cookieBannerFade {
  from { opacity: 0; bottom: -80px; }
  to { opacity: 1; bottom: 0; }
}
.cookie-banner p {
  font-size: 1rem;
  max-width: 440px;
  margin-bottom: 0;
  color: var(--white);
}
.cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-actions .btn {
  min-width: 118px;
  font-size: 1rem;
  border-radius: 19px 20px 22px 20px / 12px 14px 16px 10px;
  font-family: 'Montserrat', Arial,sans-serif;
  padding: 9px 18px;
}
.cookie-actions .btn-accept {
  background: var(--brand-success);
  color: var(--brand-primary);
  border: 0;
}
.cookie-actions .btn-accept:hover { background: #18ad60; color: #fff; }
.cookie-actions .btn-reject {
  background: var(--brand-alert);
  color: var(--white);
  border: 0;
}
.cookie-actions .btn-reject:hover { background: #ffb1c6; color: var(--brand-primary); }
.cookie-actions .btn-prefs {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: 0;
}
.cookie-actions .btn-prefs:hover {
  background: var(--brand-accent);
  color: var(--brand-secondary);
  border: 1.5px solid var(--brand-secondary);
}
.cookie-banner.hide {
  display: none;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(20,33,61,0.78);
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalPop .65s cubic-bezier(.63,1.44,.21,1.21);
}
@keyframes cookieModalPop {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal {
  background: var(--white);
  color: var(--brand-primary);
  border-radius: 32px;
  padding: 38px 32px 26px 32px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 10px 38px rgba(20,33,61,0.16),0 2px 7px rgba(252,163,17,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-family: 'Montserrat', Arial,sans-serif;
  z-index: 1602;
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: var(--brand-secondary);
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 1rem;
  margin-bottom: 13px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--brand-secondary);
  width: 21px;
  height: 21px;
  margin-right: 3px;
}
.cookie-category .essential {
  font-weight: bold;
  color: var(--brand-success);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}
.cookie-modal-actions .btn-cancel {
  background: var(--grey);
  color: var(--brand-primary);
  border: 1px solid var(--brand-secondary);
}
.cookie-modal-actions .btn-cancel:hover {
  background: var(--brand-accent);
}
.cookie-modal-close {
  position: absolute;
  right: 24px;
  top: 21px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--brand-secondary);
  cursor: pointer;
  transition: color .14s, transform .13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--brand-alert);
  transform: scale(1.13);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1023px) {
  header .main-nav, header .btn-primary {
    display: none;
  }
  header .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-nav, .client-logos, .contact-footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .testimonial-card { width: 100%; min-width: 0; }
  .hero { padding: 18px 0 62px 0; }
}
@media (max-width: 800px) {
  .container, .content-wrapper {
    max-width: 96vw;
    padding-left: 6px;
    padding-right: 6px;
  }
  .cta-section, .text-section {
    padding-left: 7vw;
    padding-right: 7vw;
  }
  .crypto-list, .service-list, .service-grid, .guide-list, .articles-grid, .report-previews, .card-container, .team-profiles {
    flex-direction: column;
    gap: 18px;
  }
  .card, .service-item, .crypto-item, .profile, .guide-item, .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 98vw;
  }
  .features-list, .values-list, .benefit-list {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-wrapper, .cta-section, .text-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 14px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
}
@media (max-width: 600px) {
  .hero {
    border-radius: 0 0 40px 30px / 0 0 18px 22px;
    margin-bottom: 30px;
    padding-bottom: 18px;
  }
  .cta-section { padding-top: 18px; padding-bottom: 23px; }
  footer .contact-footer img { display: none; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 8px 18px 12px;
  }
  .cookie-actions {
    flex-direction: row;
    gap: 10px;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 22px 10px;
  }
}

/* SCROLLBAR (fun accent) */
body::-webkit-scrollbar {
  width: 10px;
  background: var(--brand-accent);
}
body::-webkit-scrollbar-thumb {
  background: var(--brand-secondary);
  border-radius: 8px;
}

/* Utility */
.hidden { display: none !important; }

/* END OF PLAYFUL DYNAMIC CRISP PROFIT CSS */
