/* ==== Lilac Explorer TECH FUTURISTIC Theme CSS ==== */

/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #232323;
  color: #E6E6FA;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
  transition: background 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.3em;
}
a {
  color: #a291fb;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #e6e6fa;
  text-shadow: 0 0 8px #7b5cff;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }

/* ==== GENERAL LAYOUT ==== */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

/* ==== HEADER ==== */
header {
  width: 100%;
  background: #30266c;
  box-shadow: 0 3px 18px 0 #2a285a33;
  position: relative;
  z-index: 20;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.main-nav a {
  color: #E6E6FA;
  padding: 6px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #a291fb;
  text-shadow: 0 0 8px #7b5cff;
}
.btn-primary {
  background: #7b5cff;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 14px 0 #c5b8fe23, 0 0 0 1.5px #a291fb;
  padding: 10px 36px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: #a291fb;
  color: #232323;
  box-shadow: 0 2px 24px 0 #e6e6fa99, 0 0 0 2px #fff;  
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #e6e6fa;
  font-size: 2rem;
  cursor: pointer;
  padding: 6px 14px;
  z-index: 31;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #fff;
  text-shadow: 0 0 8px #7b5cff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: #2a285a;
  box-shadow: -4px 0 40px #483D8B44;
  z-index: 1500;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.37s cubic-bezier(.4,1.02,.51,1), left 0.37s cubic-bezier(.48,1.42,.65,1);
}
.mobile-menu.open {
  left: 0;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1600;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #a291fb;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  align-items: flex-start;
  padding: 30px 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 0;
  width: 100%;
  border-radius: 8px;
  transition: background 0.18s, color 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #7b5cff33;
  color: #a291fb;
}

@media (max-width: 1050px) {
  header .container {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .btn-primary {
    display: none;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 0;
  }
}

@media (max-width: 520px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  header img {
    height: 35px;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(123deg, #30266c 0%, #483D8B 50%, #7b5cff 100%);
  box-shadow: 0 4px 44px #7b5cff1a;
  border-radius: 0 0 42px 42px;
  color: #fff;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding-top: 38px;
  padding-bottom: 42px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #fff;
  text-shadow: 0 2px 22px #a291fb66;
}
.hero p {
  font-size: 1.12rem;
  color: #e6e6faee;
  margin-bottom: 10px;
  margin-top: 0px;
  max-width: 680px;
}

@media (max-width: 580px) {
  .hero h1 { font-size: 1.42rem; }
  .hero .content-wrapper { padding-top: 22px; padding-bottom: 24px; }
}

/* ==== UNIVERSAL FLEX/GAP SECTIONS ==== */
.section,
.features,
.values,
.cta-section,
.cta,
.highlights,
.newsletter-cta,
.faq,
.legal-section,
.contact-section,
.about-intro,
.thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-card {
  background: #2a285a;
  border-radius: 20px;
  box-shadow: 0 2px 14px #483D8B33, 0 0 0 1.5px #7b5cff33;
  padding: 32px 25px 27px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 220px;
  flex: 1 1 225px;
  max-width: 350px;
  transition: box-shadow 0.19s, transform 0.19s;
  margin-bottom: 20px;
  position: relative;
}
.feature-card img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 12px #a291fb90);
}
.feature-card h3 {
  font-size: 1.15rem;
  color: #fff;
}
.feature-card p {
  font-size: 1rem;
  color: #e2dfffdd;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 4px 28px #7b5cff44, 0 0 0 2px #a291fb;
  transform: translateY(-6px) scale(1.03);
}

/* ==== HIGHLIGHTS ==== */
.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.highlight-card {
  background: #23223c;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 22px #7b5cff26;
  padding: 26px 22px;
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
  border: 1.5px solid #32297d66;
}
.highlight-card a {
  margin-top: auto;
  color: #a291fb;
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
  transition: color 0.2s;
}
.highlight-card a:hover, .highlight-card a:focus {
  color: #fff;
}
.highlight-card:hover, .highlight-card:focus-within {
  box-shadow: 0 4px 38px #a291fb55, 0 0 0 1.5px #7b5cff;
  background: #312884;
  transform: translateY(-8px) scale(1.035);
}

/* ==== NEWSLETTER/CTA ==== */
.newsletter-cta, .cta, .cta-section {
  background: #7b5cff;
  border-radius: 22px;
  color: #fff;
  text-align: left;
  box-shadow: 0 2px 24px #a291fb33;
  padding: 46px 24px 44px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.newsletter-cta h2, .cta h2, .cta-section h2 {
  color: #fff;
}
.newsletter-cta .btn-primary, .cta .btn-primary, .cta-section .btn-primary {
  background: #232323;
  color: #fff;
  box-shadow: 0 2px 18px #23232377;
}
.newsletter-cta .btn-primary:hover, .cta .btn-primary:hover, .cta-section .btn-primary:hover {
  background: #a291fb;
  color: #232323;
}

/* ==== LEGAL PAGES, FAQ, CONTACT ==== */
.legal-section, .faq, .contact-section, .about-intro, .values, .thank-you {
  background: #23223c;
  border-radius: 22px;
  color: #e6e6fa;
  margin-bottom: 60px;
  box-shadow: 0 2px 22px #7b5cff11;
  padding: 38px 22px 38px 22px;
}

.legal-section h1, .contact-section h1, .about-intro h1, .thank-you h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 0.5em;
}
.legal-section h2, .faq h2, .values h2 {
  color: #a291fb;
  font-size: 1.45rem;
  margin-top: 18px;
  margin-bottom: 0.7em;
}

.faq ul, .values ul, .review-highlights ul, .case-study-links ul, .startup-list ul {
  margin-top: 12px;
  margin-bottom: 8px;
  color: #e6e6fa;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq li, .values li {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #32297d22;
}

/* ==== CARD/CONTAINER FLEXBOX PATTERNS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #23223c;
  border-radius: 15px;
  box-shadow: 0 2px 12px #7b5cff33;
}
.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: #a291fb22;
  border-radius: 16px;
  margin-bottom: 20px;
  color: #232323;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ==== REVIEW HIGHLIGHTS, ARTICLES, LISTS ==== */
.review-highlights, .articles-ref, .case-study-links, .startup-list {
  margin-top: 28px;
  background: #2a285a;
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: 0 1.5px 12px #a291fb18;
}
.review-highlights h3, .articles-ref h3, .case-study-links h3, .startup-list h3 {
  color: #a291fb;
  font-size: 1.17rem;
}
.review-highlights ul, .articles-ref ul, .case-study-links ul, .startup-list ul {
  margin-top: 11px;
  font-size: 1rem;
  color: #e6e6fa;
  gap: 10px;
}

/* ==== CONTACT INFO & FAKE MAP ==== */
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0 10px 0;
  font-size: 1.05rem;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 11px;
}
.contact-info img {
  width: 23px;
  height: 23px;
  filter: drop-shadow(0 0 9px #7b5cff66);
}
.fake-map-embed {
  background: #333353;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-top: 18px;
  box-shadow: 0 1.5px 8px #483D8B22;
  font-size: 1rem;
  text-align: left;
}

/* ==== FOOTER ==== */
footer {
  background: #1a1a2b;
  padding: 48px 0 24px 0;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.footer-menu {
  display: flex;
  gap: 26px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-menu a {
  color: #b59efb;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
}
footer .contact-info {
  color: #fff;
  text-align: center;
  font-size: 1rem;
}
footer .contact-info a {
  color: #a291fb;
}
footer .copyright {
  margin-top: 10px;
  color: #9999b5;
  font-size: 0.93rem;
}

@media (max-width: 750px) {
  .footer-menu { gap: 13px; }
  .feature-grid, .highlight-grid { flex-direction: column; gap: 18px; }
  .container { padding: 0 8px; }
}

/* ==== THANK YOU PAGE SECTION ==== */
.thank-you {
  text-align: center;
  align-items: center;
}
.thank-you h1 {
  margin-bottom: 0.5em;
}

/* ==== TYPOGRAPHY SCALE FOR HEADINGS & BODY ==== */
@media (max-width: 700px) {
  h1 { font-size: 1.53rem; }
  h2 { font-size: 1.16rem; }
}

/* ==== SPACING & RESPONSIVE ==== */
@media (max-width: 1050px) {
  .feature-grid, .highlight-grid {
    gap: 14px;
  }
}
@media (max-width: 800px) {
  .section, section, .legal-section, .faq, .about-intro, .thank-you, .contact-section, .values { padding: 22px 8px; margin-bottom: 36px; }
  .newsletter-cta, .cta, .cta-section { padding: 22px 8px 28px 8px; }
  .feature-card, .highlight-card { min-width: 160px; padding: 18px; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid { flex-direction: column; gap: 10px; }
  .container { padding: 0 4px; }
}

/* ==== Micro-INTERACTIONS/TRANSITIONS ==== */
.btn-primary, .main-nav a, .feature-card, .highlight-card, .footer-menu a, .mobile-nav a {
  transition: background 0.2s, color 0.2s, box-shadow 0.19s, transform 0.19s;
}

/* ==== COLOR ACCESSIBILITY FOR TESTIMONIALS/REVIEWS ==== */
.testimonial-card {
  background: #fff;
  color: #232323;
  box-shadow: 0 2px 14px #23232312, 0 0 0 1.5px #a291fb50;
  border-radius: 16px;
  font-size: 1rem;
}
.testimonial-card strong {
  color: #483D8B;
}

/* ==== COOKIE CONSENT BANNER & MODAL ==== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #1a1a2b;
  color: #e6e6fa;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  z-index: 12000;
  box-shadow: 0 -3px 24px #483D8B54;
  border-radius: 26px 26px 0 0;
  font-size: 0.98rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.33s, transform 0.33s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-consent-banner .btn-primary,
.cookie-consent-banner .btn-ghost,
.cookie-consent-banner .btn-accent {
  min-width: 121px;
  margin-left: 10px;
  margin-right: 2px;
  padding: 8px 16px;
  font-size: 1.05rem;
  border-radius: 22px;
  box-shadow: 0 2px 8px #a291fb22;
}
.cookie-consent-banner .btn-ghost {
  background: #23223c;
  color: #a291fb;
  border: 1.5px solid #7b5cff55;
}
.cookie-consent-banner .btn-ghost:hover, .cookie-consent-banner .btn-ghost:focus {
  background: #7b5cff;
  color: #fff;
}
.cookie-consent-banner .btn-accent {
  background: #fff;
  color: #483D8B;
  border: 1.5px solid #a291fb;
}
.cookie-consent-banner .btn-accent:hover, .cookie-consent-banner .btn-accent:focus {
  background: #a291fb;
  color: #fff;
  border-color: #fff;
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal-overlay {
  background: #1a1a2bf5;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #23223c;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 42px #7b5cff52;
  padding: 36px 22px 24px 22px;
  width: 95%;
  max-width: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal h3 {
  color: #a291fb;
  margin-bottom: 14px;
  font-size: 1.19rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #e6e6fa;
  font-weight: 500;
}
.cookie-modal .cookie-switch {
  margin-left: auto;
  accent-color: #7b5cff;
}
.cookie-modal .btn-primary, .cookie-modal .btn-ghost {
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #a291fb;
}

/* ==== CUSTOM SCROLLBAR ==== */
::-webkit-scrollbar {
  width: 10px;
  background-color: #23223c;
}
::-webkit-scrollbar-thumb {
  background: #7b5cff;
  border-radius: 8px;
}

/* ==== SELECTION COLOR ==== */
::selection {
  background: #a291fb;
  color: #fff;
}

/* ==== Accessibility Helper: Focus ring ==== */
a:focus, button:focus {
  outline: 2.5px dashed #7b5cff;
  outline-offset: 2px;
}

/* ==== Font import for Montserrat/Roboto (assuming local hosting or link in HTML) ==== */

/* ==== End Lilac Explorer TECH FUTURISTIC CSS ==== */
