/* =================================================
   PROTECT7 LANDING PAGES – CENTRAL STYLESHEET
   ================================================= */

/* --- Variables --- */
:root {
  /* Brand Colors (CMYK-sourced)
     Grau:       C24/M24/Y26/K67  → #40403E
     Blau dunkel: C97/M61/Y0/K10  → #075AE6
     Blau hell:  C43/M13/Y2/K0   → #91DEFA
  */
  --brand-gray:       #40403E;
  --brand-blue:       #075AE6;
  --brand-blue-light: #91DEFA;

  --bg-primary:    #ffffff;
  --bg-surface:    #f2f5f9;
  --bg-card:       #ffffff;
  --bg-card-hover: #eef2f8;
  --text-primary:  #40403E;
  --text-secondary:#5a5a58;
  --text-muted:    #8a8a87;
  --accent:        #075AE6;
  --accent-light:  #075AE6;
  --cta-bg:        #075AE6;
  --cta-hover:     #0548c0;
  --cta-outline:   rgba(7,90,230,0.08);
  --border:        rgba(64,64,62,0.12);
  --border-accent: rgba(7,90,230,0.22);
  --green:         #16a34a;
  --red:           #dc2626;
  --yellow:        #ca8a04;
  --radius:        10px;
  --radius-lg:     16px;
  --shadow:        0 4px 24px rgba(0,0,0,0.10);
  --transition:    0.22s ease;
  --max-w:         1040px;
  --section-gap:   3.5rem;
  --nav-height:    64px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--text-secondary); }
p { color: var(--text-secondary); }
strong { color: var(--text-primary); font-weight: 600; }

/* --- Layout helpers --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: var(--section-gap) 0; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(145,222,250,0.25);
  border: 1px solid var(--border-accent);
  border-radius: 99px;
  padding: .3rem .85rem;
  margin-bottom: 1.25rem;
}
.section-intro {
  max-width: 660px;
  margin-bottom: 2rem;
}
.section-intro h2 { margin-bottom: .75rem; }
.section-intro p { font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  border: none;
}
.btn-primary {
  background: var(--cta-bg);
  color: #fff;
}
.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(7,90,230,0.28);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(64,64,62,0.25);
}
.btn-outline:hover {
  background: rgba(64,64,62,0.05);
  border-color: rgba(64,64,62,0.4);
  text-decoration: none;
}
.btn-lg { padding: .9rem 2.2rem; font-size: 1.05rem; }

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.01em;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1;
}
.nav-links a {
  font-size: .875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-cta { margin-left: auto; }

/* --- Language Switcher --- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 5px;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  letter-spacing: .04em;
}
.lang-btn:hover { color: var(--brand-blue); background: rgba(7,90,230,0.07); }
.lang-btn.lang-active { color: var(--brand-blue); background: rgba(145,222,250,0.25); }
.lang-sep { color: var(--border); font-size: .8rem; user-select: none; }

/* --- Tips Bar --- */
.tips-bar {
  background: rgba(145,222,250,0.18);
  border-bottom: 1px solid var(--border-accent);
  padding: .6rem 1.5rem;
}
.tips-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 1.6rem;
}
.tips-icon {
  font-size: .9rem;
  flex-shrink: 0;
  color: var(--brand-blue);
}
.tips-text {
  font-size: .82rem;
  color: var(--text-secondary);
  transition: opacity .4s ease;
}
.tips-text.fade-out { opacity: 0; }

/* --- Hero --- */
.hero {
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(145,222,250,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 640px;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}
.hero-points {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-point {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .875rem;
  color: var(--text-secondary);
}
.hero-point::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: .9rem;
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.trust-items {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.trust-item {
  flex: 1;
  min-width: 200px;
}
.trust-item-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-blue);
  margin-bottom: .35rem;
}
.trust-item p { font-size: .875rem; }

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: var(--shadow);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.card-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .9rem; }

/* --- Feature List (with icons) --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .85rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.feature-item-icon {
  font-size: 1rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: .1rem;
}
.feature-item-text { font-size: .9rem; color: var(--text-secondary); }
.feature-item-text strong { color: var(--text-primary); display: block; font-size: .95rem; }
.feature-item.seg-hidden { display: none; }

/* --- Segment Filter --- */
.segment-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .85rem;
}
.segment-btn {
  padding: .38rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-family: inherit;
}
.segment-btn:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(7,90,230,0.04);
}
.segment-btn.seg-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}
.segment-hint {
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  min-height: 1.3em;
  line-height: 1.5;
}
.segment-no-results {
  font-size: .9rem;
  color: var(--text-muted);
  padding: 1.5rem 0;
  display: none;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }
.col-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.col-card h3 { margin-bottom: .5rem; }
.col-card p { font-size: .9rem; margin-bottom: 1rem; }
.col-card ul { display: flex; flex-direction: column; gap: .4rem; }
.col-card ul li {
  font-size: .875rem;
  color: var(--text-secondary);
  padding-left: 1.2rem;
  position: relative;
}
.col-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--brand-blue); }

/* --- Process Steps --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  counter-increment: step;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(145,222,250,0.35);
  border: 1.5px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  color: var(--brand-blue);
}
.step-content h3 { margin-bottom: .35rem; font-size: 1.05rem; }
.step-content p { font-size: .9rem; }

/* --- Approach Cards (Black/Grey/White Box) --- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.approach-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.approach-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: .25rem .75rem;
  margin-bottom: 1rem;
}
.label-black { background: rgba(64,64,62,0.10); color: var(--text-secondary); }
.label-grey  { background: rgba(64,64,62,0.06); color: var(--text-muted); }
.label-white { background: rgba(145,222,250,0.25); color: var(--brand-blue); }
.approach-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.approach-card p { font-size: .875rem; }

/* --- Comparison Table --- */
.compare-wrap {
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.compare-table th, .compare-table td {
  padding: .9rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  background: var(--bg-surface);
  color: var(--text-primary);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.compare-table tbody td { color: var(--text-secondary); }
.compare-table tbody tr:hover td { background: rgba(7,90,230,0.03); }
.compare-table td:first-child { color: var(--text-primary); font-weight: 500; }
.check { color: var(--green); }
.cross { color: var(--red); }

/* --- Deliverables List --- */
.deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.deliverable {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.deliverable-icon { font-size: 1.2rem; flex-shrink: 0; color: var(--brand-blue); }
.deliverable-text h4 { font-size: .85rem; color: var(--text-primary); text-transform: none; letter-spacing: 0; }
.deliverable-text p { font-size: .82rem; margin-top: .2rem; }

/* --- Pricing Card --- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 560px;
  box-shadow: var(--shadow);
}
.pricing-label { margin-bottom: .5rem; font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.pricing-value { font-size: 2.2rem; font-weight: 800; color: var(--text-primary); margin-bottom: .25rem; }
.pricing-sub { font-size: .875rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.pricing-details { display: flex; flex-direction: column; gap: .5rem; }
.pricing-row { display: flex; justify-content: space-between; font-size: .875rem; }
.pricing-row span:last-child { color: var(--text-primary); font-weight: 600; }

/* --- FAQ Accordion --- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
  font-family: inherit;
}
.faq-question:hover { background: rgba(7,90,230,0.03); }
.faq-arrow {
  flex-shrink: 0;
  font-size: .9rem;
  color: var(--brand-blue);
  transition: transform var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--text-secondary);
}

/* --- Final CTA Section --- */
.section-cta {
  background: linear-gradient(135deg, rgba(145,222,250,0.18) 0%, rgba(7,90,230,0.06) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 3.5rem 0;
}
.section-cta h2 { margin-bottom: 1rem; }
.section-cta p { max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Highlight Box --- */
.highlight-box {
  background: rgba(145,222,250,0.15);
  border: 1px solid var(--border-accent);
  border-left: 3px solid var(--brand-blue);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.highlight-box p { color: var(--text-secondary); font-size: .95rem; }
.highlight-box strong { color: var(--text-primary); }

/* --- Tags / Keyword List --- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.tag {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .3rem .85rem;
  font-size: .8rem;
  color: var(--text-secondary);
}

/* --- Inline Checklist --- */
.checklist { display: flex; flex-direction: column; gap: .5rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-secondary);
}
.checklist li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* --- Section divider --- */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* --- Alert chips (Build vs Buy) --- */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) { .compare-cards { grid-template-columns: 1fr; } }
.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.compare-card.recommended { border-color: var(--border-accent); }
.compare-card-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: .2rem .75rem;
  margin-bottom: 1rem;
  background: rgba(145,222,250,0.25);
  color: var(--brand-blue);
  border: 1px solid var(--border-accent);
}
.compare-card h3 { margin-bottom: .85rem; }
.compare-card ul { display: flex; flex-direction: column; gap: .45rem; }
.compare-card ul li { font-size: .875rem; color: var(--text-secondary); padding-left: 1.3rem; position: relative; }
.compare-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--brand-blue); }
.compare-card.alt ul li::before { content: '–'; color: var(--text-muted); }

/* --- Footer --- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 2rem 0 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-top {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand { flex: 1; min-width: 220px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .85rem;
  text-decoration: none;
}
.footer-logo img { height: 28px; }
.footer-logo-text { font-size: .875rem; font-weight: 700; color: var(--text-primary); }
.footer-tagline { font-size: .85rem; color: var(--text-muted); margin-bottom: .5rem; }
.footer-address { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }
.footer-links-group { min-width: 160px; }
.footer-group-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .85rem;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links-group a { font-size: .875rem; color: var(--text-secondary); text-decoration: none; transition: color var(--transition); }
.footer-links-group a:hover { color: var(--brand-blue); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--brand-blue); }

/* --- Hub page cards --- */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.hub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-decoration: none;
  display: block;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.hub-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(7,90,230,0.12);
  text-decoration: none;
}
.hub-card-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.hub-card h3 { color: var(--text-primary); margin-bottom: .5rem; }
.hub-card p { font-size: .9rem; color: var(--text-secondary); margin-bottom: 1.25rem; }
.hub-card-link { font-size: .875rem; color: var(--brand-blue); font-weight: 600; }

/* --- Responsive --- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .trust-items { flex-direction: column; gap: 1.5rem; }
}
@media (max-width: 640px) {
  :root { --section-gap: 2.5rem; }
  .hero { padding: 2.5rem 0 2rem; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* --- Search --- */
.nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .4rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.nav-search-btn:hover { color: var(--brand-blue); background: rgba(7,90,230,0.07); }

.search-panel {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 1.25rem 1.5rem 1rem;
  display: none;
}
.search-panel.open { display: block; }

.search-form {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .6rem 1rem;
  transition: border-color var(--transition);
}
.search-form:focus-within { border-color: var(--brand-blue); }
.search-form svg { color: var(--text-muted); flex-shrink: 0; }
.search-input {
  flex: 1;
  border: none;
  background: none;
  font-size: .95rem;
  color: var(--text-primary);
  outline: none;
  font-family: inherit;
}
.search-input::placeholder { color: var(--text-muted); }
.search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0;
  transition: color var(--transition);
  flex-shrink: 0;
}
.search-close-btn:hover { color: var(--text-primary); }

.search-results {
  max-width: var(--max-w);
  margin: .85rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  max-height: 55vh;
  overflow-y: auto;
}
.search-result {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}
.search-result:hover { background: var(--bg-surface); border-color: var(--border); text-decoration: none; }
.search-result-page {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-blue);
}
.search-result-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-primary);
}
.search-result-snippet {
  font-size: .82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-result mark {
  background: rgba(145,222,250,0.5);
  color: var(--text-primary);
  border-radius: 2px;
  padding: 0 2px;
}
.search-empty {
  text-align: center;
  padding: 1.5rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.search-hint {
  max-width: var(--max-w);
  margin: .5rem auto 0;
  font-size: .75rem;
  color: var(--text-muted);
}
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(0,0,0,.2);
  z-index: 98;
}
.search-overlay.open { display: block; }

/* --- Sidebar Layout --- */
.lp-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: calc(100vh - var(--nav-height));
  align-items: start;
}
.lp-sidebar {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
  padding: 28px 0 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.lp-sidebar::-webkit-scrollbar { width: 4px; }
.lp-sidebar::-webkit-scrollbar-track { background: transparent; }
.lp-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.lp-sidebar__header {
  padding: 0 20px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.lp-sidebar__header a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  margin-bottom: 12px;
}
.lp-sidebar__header a:hover { color: var(--brand-blue); text-decoration: none; }
.lp-sidebar__title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
}
.lp-sidebar__group { padding: 12px 0 4px; }
.lp-sidebar__group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.lp-sidebar__link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 20px 5px 28px;
  font-size: .82rem;
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 1.4;
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.lp-sidebar__link:hover {
  color: var(--text-primary);
  background: rgba(64,64,62,0.05);
  border-left-color: var(--border);
  text-decoration: none;
}
.lp-sidebar__link.active {
  color: var(--brand-blue);
  background: rgba(7,90,230,0.07);
  border-left-color: var(--brand-blue);
  font-weight: 600;
}
.lp-sidebar__link-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 5px;
}
.lp-sidebar__link.active .lp-sidebar__link-dot { background: var(--brand-blue); }
.lp-sidebar__badge {
  font-size: .65rem;
  padding: 1px 6px;
  margin-left: auto;
  flex-shrink: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--text-muted);
}
.lp-sidebar__divider {
  height: 1px;
  background: var(--border);
  margin: 12px 20px;
}
.lp-content { min-width: 0; }
.lp-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 799;
}
.lp-sidebar-overlay.open { display: block; }
.lp-sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(7,90,230,0.35);
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lp-sidebar-toggle:hover { background: var(--cta-hover); }
@media (max-width: 1024px) {
  .lp-layout { grid-template-columns: 200px 1fr; }
}
@media (max-width: 768px) {
  .lp-layout { grid-template-columns: 1fr; }
  .lp-sidebar {
    position: fixed;
    top: var(--nav-height);
    left: -260px;
    width: 240px;
    height: calc(100vh - var(--nav-height));
    z-index: 800;
    box-shadow: var(--shadow);
    transition: left 0.3s ease;
  }
  .lp-sidebar.open { left: 0; }
  .lp-sidebar-toggle { display: flex; }
}

/* --- Hero Two-Column (text + impuls card) --- */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.hero-two-col .impuls-card {
  min-width: 260px;
  max-width: 320px;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .hero-two-col {
    grid-template-columns: 1fr;
  }
  .hero-two-col .impuls-card {
    max-width: 100%;
  }
}

/* --- Impuls Card --- */
.impuls-card {
  background: rgba(145,222,250,0.12);
  border: 1px solid rgba(7,90,230,0.18);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  max-width: 340px;
}
.impuls-card__label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand-blue);
  margin-bottom: .85rem;
}
.impuls-card__text {
  font-size: .9rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1rem;
  min-height: 3.5rem;
}
.impuls-card__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 600;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: 0;
  font-family: inherit;
  transition: opacity var(--transition);
}
.impuls-card__btn:hover { opacity: .7; }
.impuls-card__btn svg { transition: transform .4s ease; }
.impuls-card__btn.spin svg { transform: rotate(360deg); }

/* ===== SIDEBAR FINDER LINK ===== */
.lp-sidebar__finder-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 12px 16px;
  padding: 11px 14px;
  background: linear-gradient(135deg, rgba(7,90,230,0.08) 0%, rgba(145,222,250,0.18) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.lp-sidebar__finder-link:hover {
  background: linear-gradient(135deg, rgba(7,90,230,0.13) 0%, rgba(145,222,250,0.25) 100%);
  box-shadow: 0 2px 10px rgba(7,90,230,0.12);
  text-decoration: none;
}
.lp-sidebar__finder-link.active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 4px 14px rgba(7,90,230,0.28);
}
.lp-sidebar__finder-link.active .lp-sfl-icon,
.lp-sidebar__finder-link.active .lp-sfl-title,
.lp-sidebar__finder-link.active .lp-sfl-sub,
.lp-sidebar__finder-link.active .lp-sfl-arrow { color: #fff; opacity: 1; }
.lp-sfl-icon { color: var(--brand-blue); flex-shrink: 0; }
.lp-sfl-text { flex: 1; min-width: 0; }
.lp-sfl-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand-blue);
  display: block;
  line-height: 1.3;
}
.lp-sfl-sub {
  font-size: .72rem;
  color: var(--text-muted);
  display: block;
  margin-top: 1px;
}
.lp-sfl-arrow { color: var(--brand-blue); opacity: .5; flex-shrink: 0; }

/* ===== FINDER PAGE ===== */
.finder-pg-hero {
  padding: 2.5rem 0 1.75rem;
  background: linear-gradient(150deg, #f8faff 0%, rgba(145,222,250,0.12) 50%, #f2f5f9 100%);
  border-bottom: 1px solid var(--border);
}
.finder-pg-hero .section-label { margin-bottom: 1rem; }
.finder-pg-hero h1 { max-width: 640px; margin-bottom: .85rem; }
.finder-pg-hero p { font-size: 1.05rem; max-width: 580px; }

.finder-pg-main {
  padding: 2rem 0 3rem;
}

/* Steps */
.finder-pg-step { margin-bottom: 2.75rem; }
.finder-pg-step-hd {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.finder-pg-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.finder-pg-step-num.done {
  background: var(--green);
}
.finder-pg-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}
.finder-pg-step-sub {
  font-size: .85rem;
  color: var(--text-muted);
  margin-left: auto;
}

/* Segment cards */
.finder-seg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 860px) { .finder-seg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .finder-seg-grid { grid-template-columns: 1fr; } }

.finder-seg-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.25rem;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.finder-seg-card:hover {
  border-color: var(--border-accent);
  background: rgba(7,90,230,0.03);
  box-shadow: 0 4px 16px rgba(7,90,230,0.10);
  transform: translateY(-2px);
}
.finder-seg-card.fsc-active {
  border-color: var(--brand-blue);
  background: rgba(7,90,230,0.05);
  box-shadow: 0 4px 20px rgba(7,90,230,0.15);
}
.fsc-icon {
  font-size: 1.75rem;
  margin-bottom: .65rem;
  display: block;
}
.fsc-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: .3rem;
}
.fsc-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.finder-seg-card.fsc-active .fsc-name { color: var(--brand-blue); }

/* Topic pills (finder page) */
.finder-topic-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.finder-topic-pill {
  padding: .5rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 2rem;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: border-color var(--transition), color var(--transition), background var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.finder-topic-pill:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(7,90,230,0.04);
}
.finder-topic-pill.ftp-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
  box-shadow: 0 2px 10px rgba(7,90,230,0.22);
}

/* Divider between steps and results */
.finder-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}
.finder-divider::before,
.finder-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.finder-divider span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Result cards */
.finder-results-hd {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.finder-results-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.finder-results-count {
  font-size: .8rem;
  color: var(--text-muted);
}
.finder-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 720px) { .finder-cards-grid { grid-template-columns: 1fr; } }

.fp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.fp-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 8px 28px rgba(7,90,230,0.13);
  transform: translateY(-3px);
  text-decoration: none;
}
.fp-card-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
}
.fp-card-body { padding: 1.5rem 1.5rem 1rem; flex: 1; }
.fp-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}
.fp-card-icon { font-size: 1.75rem; line-height: 1; }
.fp-card-match {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 99px;
}
.fp-card-match.match-full {
  background: rgba(22,163,74,0.10);
  color: var(--green);
}
.fp-card-match.match-partial {
  background: rgba(7,90,230,0.08);
  color: var(--brand-blue);
}
.fp-card-match.match-broad {
  background: rgba(64,64,62,0.07);
  color: var(--text-secondary);
}
.fp-card-challenge {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand-blue);
  margin-bottom: .3rem;
}
.fp-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .5rem;
}
.fp-card-desc {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: .9rem;
}
.fp-card-topics {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .5rem;
}
.fp-card-topic {
  font-size: .72rem;
  padding: .2rem .6rem;
  border-radius: 99px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.fp-card-topic.fp-topic-match {
  background: rgba(7,90,230,0.07);
  border-color: rgba(7,90,230,0.2);
  color: var(--brand-blue);
  font-weight: 600;
}
.fp-card-footer {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fp-card-cta {
  font-size: .85rem;
  font-weight: 700;
  color: var(--brand-blue);
}
.fp-card-arrow {
  font-size: .9rem;
  color: var(--brand-blue);
}

.finder-pg-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: .95rem;
}
.finder-pg-hint {
  background: var(--bg-surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--text-muted);
}
.finder-pg-hint p { margin: 0; font-size: .95rem; }

/* ===== HUB HERO GRID ===== */
.hub-hero-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .hub-hero-grid { grid-template-columns: 1fr; }
}

/* ===== HUB FINDER BOX ===== */
.hub-finder-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--nav-height, 60px) + 1rem);
}
.hfb-header {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}
.hfb-row { margin-bottom: .65rem; }
.hfb-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: .4rem;
}
.hfb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.hfb-pill {
  padding: .3rem .8rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-family: inherit;
}
.hfb-pill:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(7,90,230,0.05);
}
.hfb-pill.hfb-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}
.hfb-sep {
  height: 1px;
  background: var(--border);
  margin: .5rem 0 .65rem;
}
.hfb-results {
  margin-top: .9rem;
  border-top: 1px solid var(--border);
  padding-top: .9rem;
}
.hfb-placeholder {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.hfb-group-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 .5rem;
}
.hfb-result-item {
  display: block;
  text-decoration: none;
  padding: .7rem .85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  margin-bottom: .45rem;
  transition: border-color var(--transition), background var(--transition);
}
.hfb-result-item:hover {
  border-color: var(--brand-blue);
  background: rgba(7,90,230,0.03);
}
.hfb-result-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .5rem;
}
.hfb-result-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-primary);
}
.hfb-result-arrow {
  font-size: .85rem;
  color: var(--brand-blue);
  flex-shrink: 0;
  margin-top: 1px;
}
.hfb-result-challenge {
  font-size: .75rem;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: .2rem;
}
.hfb-result-desc {
  font-size: .78rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: .25rem 0 0;
}
.hfb-no-match {
  font-size: .83rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== TOPIC FILTER – Hub Page ===== */
.topic-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.5rem;
  padding-top: .75rem;
  border-top: 1px dashed var(--border);
}
.topic-filter-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 100%;
  margin-bottom: .25rem;
}
.topic-btn {
  padding: .38rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-family: inherit;
}
.topic-btn:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(7,90,230,0.04);
}
.topic-btn.seg-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

/* ===== FINDER SECTION – Service Pages ===== */
.finder-section {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.finder-intro {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 .9rem;
}
.finder-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: .5rem;
}
.finder-row-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 80px;
  padding-top: .42rem;
  flex-shrink: 0;
}
.finder-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.finder-pill {
  padding: .35rem .9rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-family: inherit;
  white-space: nowrap;
}
.finder-pill:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(7,90,230,0.04);
}
.finder-pill.fp-match {
  border-color: rgba(7,90,230,0.35);
  color: var(--brand-blue);
  background: rgba(7,90,230,0.07);
}
.finder-pill.fp-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}
.finder-sep {
  height: 1px;
  background: var(--border);
  margin: .5rem 0 .6rem;
}
.finder-result {
  margin-top: .85rem;
  padding: .75rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(7,90,230,0.05);
  border: 1px solid var(--border-accent);
  font-size: .88rem;
  display: none;
}
.finder-result.fr-show { display: block; }
.fr-match-full  { color: var(--green); font-weight: 600; }
.fr-match-partial { color: var(--brand-blue); font-weight: 500; }
.fr-match-none  { color: var(--text-secondary); }
.finder-result__suggest {
  margin-top: .4rem;
  font-size: .83rem;
  color: var(--text-secondary);
}
.finder-result__suggest a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 640px) {
  .finder-row { flex-direction: column; gap: .35rem; }
  .finder-row-label { min-width: auto; padding-top: 0; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.color-accent { color: var(--brand-blue); }
.color-green { color: var(--green); }

/* --- Cookie Consent Banner --- */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #eee;
  padding: 1rem 1.5rem;
  opacity: 0;
  transition: opacity .6s ease;
}
.cookie-consent.consent-visible { opacity: 1; }
.cookie-consent__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.cookie-consent__text {
  font-size: .85rem;
  line-height: 1.5;
}
.cookie-consent__text a {
  color: #8bb8ff;
  text-decoration: underline;
}
.cookie-consent__buttons {
  display: flex;
  gap: .75rem;
}
.cookie-btn {
  padding: .5rem 1.25rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
}
.cookie-btn--accept {
  background: var(--brand-blue, #075AE6);
  color: #fff;
}
.cookie-btn--accept:hover { opacity: .85; }
.cookie-btn--deny {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}
.cookie-btn--deny:hover { border-color: #999; color: #fff; }
@media (min-width: 640px) {
  .cookie-consent__inner { flex-direction: row; align-items: center; gap: 1.5rem; }
  .cookie-consent__buttons { flex-shrink: 0; }
}
