/* ====================================================================
   moeller-it.net site.css
   Design: Anthrazit (Consulting-Netline Group Design, office-global v3)
   Version: v2.002
   ASCII-only. No external fonts, no tracking, no cookies.
   ==================================================================== */

:root {
    --bg:        #23282d;
    --bg-card:   #2b3138;
    --bg-card-2: #323a42;
    --bg-footer: #15181c;
    --bg-topbar: #1b1f23;
    --text:      #e8ecef;
    --text-dim:  #9aa4ad;
    --text-mute: #6b7580;
    --accent:    #3b82f6;
    --accent-2:  #60a5fa;
    --accent-3:  #93c5fd;
    --gold:      #d4a94e;
    --border:    #3a424b;
    --grad:      linear-gradient(135deg, #2563eb 0%, #3b82f6 45%, #60a5fa 100%);
    --radius:    12px;
    --radius-sm: 8px;
    --shadow:    0 10px 30px rgba(0,0,0,0.35);
    --maxw:      1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation: none !important; transition: none !important; }
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI',
                 Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--accent-3); }
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 2px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* --------------------------------------------------------------
   Top notice bar (B2B + no cookies)
   -------------------------------------------------------------- */
.topbar {
    background: var(--bg-topbar);
    border-bottom: 1px solid var(--border);
    font-size: 12.5px;
    color: var(--text-dim);
    padding: 7px 0;
}
.topbar .wrap {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar strong { color: var(--gold); font-weight: 600; }

/* --------------------------------------------------------------
   Navigation
   -------------------------------------------------------------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(35,40,45,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 16px;
}
.brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand a { color: var(--text); font-weight: 800; font-size: 20px; letter-spacing: 0.3px; }
.brand a span { color: var(--accent-2); }
.brand small { color: var(--text-mute); font-size: 10.5px; letter-spacing: 0.4px; }

.nav-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav-links a { color: var(--text-dim); font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }

.lang-toggle {
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-dim);
    border-radius: 999px;
    padding: 5px 12px;
    font: inherit;
    font-size: 13px;
    cursor: pointer;
}
.lang-toggle b { color: var(--accent-2); }

/* --------------------------------------------------------------
   Hero with wave signature
   -------------------------------------------------------------- */
.hero {
    position: relative;
    padding: 84px 0 0 0;
    overflow: hidden;
    background:
        radial-gradient(700px 340px at 15% 0%, rgba(59,130,246,0.14), transparent 60%),
        radial-gradient(600px 300px at 90% 20%, rgba(96,165,250,0.10), transparent 60%),
        var(--bg);
}
.hero-eyebrow {
    display: inline-block;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--accent-3);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    letter-spacing: 0.4px;
    margin-bottom: 22px;
}
.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.5px;
    max-width: 760px;
}
.hero h1 em {
    font-style: normal;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p.sub {
    margin-top: 18px;
    max-width: 640px;
    color: var(--text-dim);
    font-size: 17px;
}
.hero-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
    display: inline-block;
    border-radius: var(--radius-sm);
    padding: 12px 22px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(37,99,235,0.35); }
.btn-primary:hover { color: #fff; filter: brightness(1.08); }
.btn-ghost { border-color: var(--border); color: var(--text); background: var(--bg-card); }

.hero-stats {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
    max-width: 640px;
}
.stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
}
.stat b {
    display: block;
    font-size: 24px;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stat span { color: var(--text-dim); font-size: 13px; }

.wave { display: block; width: 100%; height: 90px; margin-top: 56px; }
.wave-footer { transform: scaleY(-1); height: 60px; }

/* --------------------------------------------------------------
   Sections
   -------------------------------------------------------------- */
.section { padding: 72px 0; }
.section.alt { background: #262c32; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sec-label {
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.sec-label::after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 2px;
    background: var(--grad);
    margin-left: 12px;
    vertical-align: middle;
}
.section h2 { font-size: clamp(24px, 3.4vw, 34px); margin: 10px 0 8px 0; letter-spacing: -0.3px; }
.section .lead { color: var(--text-dim); max-width: 700px; }

.grid-3 {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--accent); }
.card .icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.card .icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.8; }
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 14.5px; }

.about-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 34px;
    align-items: start;
}
.about-grid .card ul { list-style: none; }
.about-grid .card li {
    padding: 9px 0 9px 26px;
    position: relative;
    color: var(--text-dim);
    font-size: 14.5px;
    border-bottom: 1px solid var(--border);
}
.about-grid .card li:last-child { border-bottom: none; }
.about-grid .card li::before {
    content: "";
    position: absolute; left: 0; top: 16px;
    width: 8px; height: 8px;
    border-radius: 2px;
    background: var(--grad);
}
.about-text p { color: var(--text-dim); margin-bottom: 14px; }
.about-text p strong { color: var(--text); }

/* --------------------------------------------------------------
   Contact
   -------------------------------------------------------------- */
.contact-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}
.contact-grid .card b { display: block; margin-bottom: 6px; font-size: 15px; }
.contact-grid .card p, .contact-grid .card a { font-size: 14.5px; }
.b2b-box {
    margin-top: 26px;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    background: rgba(212,169,78,0.07);
    padding: 16px 20px;
    color: var(--text-dim);
    font-size: 13.5px;
}
.b2b-box strong { color: var(--gold); }

/* --------------------------------------------------------------
   Footer
   -------------------------------------------------------------- */
footer { background: var(--bg-footer); color: var(--text-dim); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
    padding: 48px 0 28px 0;
}
.footer-grid h4 { color: var(--text); font-size: 14px; margin-bottom: 12px; letter-spacing: 0.4px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; font-size: 13.5px; }
.footer-grid p { font-size: 13.5px; }
.footer-bottom {
    border-top: 1px solid #23282d;
    padding: 18px 0 26px 0;
    font-size: 12.5px;
    color: var(--text-mute);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-bottom .grp { color: var(--gold); }

/* --------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------- */
.legal { padding: 56px 0 72px 0; max-width: 820px; }
.legal h1 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 6px; letter-spacing: -0.3px; }
.legal .stand { color: var(--text-mute); font-size: 13px; margin-bottom: 30px; }
.legal h2 {
    font-size: 19px;
    margin: 32px 0 10px 0;
    padding-left: 12px;
    border-left: 3px solid var(--accent);
}
.legal h3 { font-size: 16px; margin: 22px 0 8px 0; color: var(--accent-3); }
.legal p, .legal li { color: var(--text-dim); font-size: 15px; margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
.legal .info-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 18px 0;
}
.legal .info-box p { margin-bottom: 4px; }

/* sfa-addendum inherits site colors via currentColor (scoped CSS
   inside fragment). Container adjustments only: */
.legal .sfa-addendum { max-width: none; margin: 1.5em 0; color: var(--text-dim); }
.legal .sfa-addendum h2 { border-left: none; padding-left: 0; }
.legal .sfa-addendum h3 { color: var(--text); }

/* --------------------------------------------------------------
   Responsive
   -------------------------------------------------------------- */
@media (max-width: 920px) {
    .grid-3, .contact-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .about-grid, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .grid-3, .contact-grid, .hero-stats { grid-template-columns: 1fr; }
    .nav-links { gap: 14px; }
    .hero { padding-top: 56px; }
}
