@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --brand-main: #0f172a;
  --brand-highlight: #3b82f6;
  --brand-growth: #10b981;
  --brand-surface: #1e293b;
  --text-bright: #f8fafc;
  --text-muted: #cbd5e1;
  --border-subtle: #334155;
  
  --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  --gradient-dark: linear-gradient(180deg, #0f172a 0%, #000000 100%);

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-muted);
  background-color: var(--brand-main);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-bright);
}

a {
  transition: color 0.3s ease;
}

/* Custom Semantic Structure Classes */
.layout-bound {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vital-zone {
  padding: 5rem 0;
}

.nav-bar-core {
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
}

.intro-showcase {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.insight-grid-tri {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-cube {
  background-color: var(--brand-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.info-cube:hover {
  transform: translateY(-5px);
}

.step-flow-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: var(--brand-surface);
  padding: 1.5rem;
  border-radius: 1rem;
}

.step-digit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: var(--text-bright);
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.action-trigger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  color: var(--text-bright);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.action-trigger-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.footer-base {
  background-color: var(--brand-surface);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

/* Cookie Banner */
#cookie-consent-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--brand-main);
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.5);
  display: none; /* Controlled by JS */
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-accept-cookie {
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  color: var(--text-bright);
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-decline-cookie {
  padding: 0.5rem 1.5rem;
  background-color: #4B5563;
  color: var(--text-bright);
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links-wrap {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--brand-surface);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-links-wrap.active {
    display: flex;
  }
}

.bullet-list-style {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.bullet-list-style li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.bullet-list-style li::before {
  content: counter(item);
  counter-increment: item;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--brand-highlight);
  color: var(--text-bright);
  font-size: 0.875rem;
  font-weight: bold;
  flex-shrink: 0;
}

.bullet-list-style {
  counter-reset: item;
}

.form-field-core {
  background-color: var(--brand-main);
  border: 1px solid var(--border-subtle);
  color: var(--text-bright);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-field-core:focus {
  border-color: var(--brand-highlight);
}

.faq-block-item {
  background-color: var(--brand-surface);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content-space {
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
}