/* EuBiz Custom Styles über Bootstrap */
:root {
    --eu-blue: #003399;
    --eu-dark: #001566;
    --eu-yellow: #FFCC00;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: #f8f9fa;
}

/* Navbar */
.navbar-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}
.navbar-brand-logo .brand-text { font-weight: 700; color: var(--eu-blue); font-size: 1.1rem; line-height: 1.2; }
.navbar-brand-logo .brand-sub  { font-size: 0.7rem; color: #6c757d; line-height: 1.2; }

/* Buttons EU */
.btn-eu-primary {
    background: var(--eu-yellow);
    color: var(--eu-dark);
    font-weight: 700;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
}
.btn-eu-primary:hover { background: #e6b800; color: var(--eu-dark); }

.btn-eu-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: 2px solid #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
}
.btn-eu-outline:hover { background: #fff; color: var(--eu-dark); }

.btn-eu-blue {
    background: var(--eu-blue);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
}
.btn-eu-blue:hover { background: #002277; color: #fff; }

/* Hero */
.lp-hero {
    background: linear-gradient(135deg, var(--eu-dark) 0%, var(--eu-blue) 100%);
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
}
.lp-hero__badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.lp-hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.lp-hero__sub {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Stats */
.lp-stats {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 2rem 0;
}
.lp-stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--eu-blue);
    line-height: 1;
}
.lp-stat__label {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Sections */
.lp-section { padding: 5rem 0; }
.lp-section--alt { background: #f8f9fa; }
.lp-section__title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #111;
}
.lp-section__sub {
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* Category cards */
.lp-cat {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 1.75rem;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-cat:hover {
    border-color: var(--eu-blue);
    box-shadow: 0 4px 20px rgba(0,51,153,0.08);
}
.lp-cat__icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.lp-cat h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.lp-cat p  { font-size: 0.88rem; color: #6c757d; margin: 0; line-height: 1.55; }

/* Steps */
.lp-step { text-align: center; padding: 1rem; }
.lp-step__num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--eu-blue);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.lp-step h3 { font-weight: 700; margin-bottom: 0.5rem; }
.lp-step p  { font-size: 0.88rem; color: #6c757d; }
.lp-step__arrow { font-size: 1.5rem; color: var(--eu-blue); opacity: 0.4; display: flex; align-items: center; }

/* Highlight cards */
.lp-highlight {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.lp-highlight h3 { font-size: 1rem; font-weight: 700; color: #111; line-height: 1.35; }
.lp-highlight p  { font-size: 0.88rem; color: #555; line-height: 1.55; flex: 1; }
.lp-highlight__prog { font-size: 0.78rem; color: #aaa; font-family: monospace; }

/* Trust */
.lp-trust__icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }

/* CTA */
.lp-cta {
    background: linear-gradient(135deg, var(--eu-dark) 0%, var(--eu-blue) 100%);
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
}
.lp-cta h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.lp-cta p  { font-size: 1.1rem; opacity: 0.85; margin-bottom: 2.5rem; }

/* Footer */
.lp-footer { background: #0d1a3a; color: #aaa; padding: 2.5rem 0; text-align: center; }
.lp-footer a { color: #aaa; }
.lp-footer a:hover { color: #fff; }

/* Search */
.search-input {
    border-radius: 12px !important;
    padding: 0.75rem 1.25rem !important;
    border: 1.5px solid #dee2e6 !important;
    font-size: 1rem !important;
}
.search-input:focus {
    border-color: var(--eu-blue) !important;
    box-shadow: 0 0 0 3px rgba(0,51,153,0.12) !important;
}
.btn-search {
    background: var(--eu-blue);
    color: #fff;
    border: none;
    border-radius: 12px !important;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
}
.btn-search:hover { background: #002277; color: #fff; }

/* Result cards */
.result-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.result-card:hover {
    border-color: var(--eu-blue);
    box-shadow: 0 4px 20px rgba(0,51,153,0.08);
}
.result-title { font-size: 1.1rem; font-weight: 700; color: #111; margin-bottom: 0.4rem; }
.result-project { font-size: 0.85rem; color: #6c757d; margin-bottom: 0.25rem; }
.result-excerpt { font-size: 0.9rem; color: #555; line-height: 1.6; }
.result-tags { font-size: 0.8rem; color: #aaa; font-style: italic; }
.result-source { font-size: 0.85rem; color: var(--eu-blue); text-decoration: none; font-weight: 500; }
.result-source:hover { text-decoration: underline; }

/* Auth card */
.auth-card {
    max-width: 440px;
    margin: 4rem auto;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    padding: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .lp-hero__title { font-size: 2rem; }
    .lp-cta h2 { font-size: 1.6rem; }
}
