/* ============================================================
   WACON Internet GmbH – Haupt-Stylesheet
   Gilt für alle Seiten des statischen HTML-Prototyps
   ============================================================ */


/* ── Brand Tokens ───────────────────────────────────────────── */
:root {
    --wacon-orange:    #da532c;
    --wacon-orange-dk: #b8431f;
    --wacon-orange-lt: #fdf1ec;
    --wacon-ink:       #1a1a18;
    --wacon-muted:     #6b6b68;
    --wacon-rule:      #e0ddd8;
    --wacon-bg:        #faf9f7;
    --header-h:        64px;
}


/* ── Reset & Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--wacon-ink);
    background: var(--wacon-bg);
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: var(--wacon-orange);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}


/* ── Top Bar ────────────────────────────────────────────────── */
.top-bar {
    background: var(--wacon-ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #aaa;
    padding: 5px 0;
}

.top-bar a {
    color: #ccc;
}

.top-bar a:hover {
    color: #fff;
    text-decoration: none;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ── Header ─────────────────────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #fff;
    border-bottom: 2px solid var(--wacon-orange);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    transition: box-shadow .2s;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .13);
}

.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 24px;
}

.site-logo img {
    height: 36px;
    width: auto;
    display: block;
}


/* ── Header Search ──────────────────────────────────────────── */
.header-search {
    flex: 0 1 280px;
    position: relative;
}

.header-search input {
    width: 100%;
    height: 36px;
    border: 1px solid var(--wacon-rule);
    border-radius: 4px;
    padding: 0 36px 0 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    background: var(--wacon-bg);
    color: var(--wacon-ink);
    outline: none;
    transition: border-color .2s;
}

.header-search input:focus {
    border-color: var(--wacon-orange);
}

.header-search button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    color: var(--wacon-muted);
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.header-search button:hover {
    color: var(--wacon-orange);
}


/* ── Main Navigation (Desktop) ──────────────────────────────── */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    height: var(--header-h);
    padding: 0 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--wacon-ink);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color .15s, border-color .15s;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a[aria-current="page"],
.main-nav > ul > li.active > a {
    color: var(--wacon-orange);
    border-bottom-color: var(--wacon-orange);
    text-decoration: none;
}

.main-nav > ul > li > a .caret {
    font-size: 10px;
    transition: transform .2s;
}

.main-nav > ul > li:hover > a .caret,
.main-nav > ul > li.open > a .caret {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.dropdown-mega {
    display: none;
    position: absolute;
    top: calc(var(--header-h) + 2px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 560px;
    background: #fff;
    border: 1px solid var(--wacon-rule);
    border-top: 2px solid var(--wacon-orange);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
    padding: 20px 24px 24px;
    z-index: 1050;
}

.main-nav > ul > li:hover .dropdown-mega,
.main-nav > ul > li.open .dropdown-mega {
    display: block;
}

.drop-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--wacon-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--wacon-rule);
}

.drop-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 12px;
}

.drop-items a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--wacon-ink);
    text-decoration: none;
    transition: background .15s;
}

.drop-items a:hover {
    background: var(--wacon-orange-lt);
    color: var(--wacon-orange-dk);
}

.drop-items a .di {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--wacon-orange-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--wacon-orange);
    flex-shrink: 0;
}

.drop-items a:hover .di {
    background: var(--wacon-orange);
    color: #fff;
}

.drop-items a span {
    font-weight: 500;
    display: block;
    line-height: 1.2;
}

.drop-items a small {
    color: var(--wacon-muted);
    font-size: 11px;
    font-weight: 400;
}


/* ── Mobile Nav Toggle ──────────────────────────────────────── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--wacon-ink);
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    line-height: 1;
    transition: color .15s;
}

.nav-toggle:hover {
    color: var(--wacon-orange);
}

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid var(--wacon-rule);
    padding: 8px 0 20px;
    position: absolute;
    top: calc(var(--header-h) + 2px);
    left: 0;
    right: 0;
    z-index: 1039;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--wacon-ink);
    border-bottom: 1px solid var(--wacon-rule);
}

.mobile-nav-list > li > a:hover,
.mobile-nav-list > li > a[aria-current="page"] {
    color: var(--wacon-orange);
    text-decoration: none;
}

.mobile-nav-list > li > a .caret {
    font-size: 12px;
    transition: transform .2s;
}

.mobile-nav-list > li.open > a .caret {
    transform: rotate(180deg);
}

.mobile-sub-nav {
    display: none;
    list-style: none;
    padding: 4px 0;
    margin: 0;
    background: var(--wacon-bg);
    border-bottom: 1px solid var(--wacon-rule);
}

.mobile-sub-nav.open {
    display: block;
}

.mobile-sub-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px 9px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--wacon-muted);
}

.mobile-sub-nav li a:hover {
    color: var(--wacon-orange);
    text-decoration: none;
}

.mobile-sub-nav li a .di {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    background: var(--wacon-orange-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--wacon-orange);
    flex-shrink: 0;
}


/* ── Fly-In Kontakt ─────────────────────────────────────────── */
.flyin-trigger {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    z-index: 1030;
    background: var(--wacon-orange);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .05em;
    padding: 16px 10px;
    border-radius: 0 0 6px 6px;
    cursor: pointer;
    border: none;
    transition: background .2s;
}

.flyin-trigger:hover {
    background: var(--wacon-orange-dk);
}

.flyin-panel {
    position: fixed;
    right: -360px;
    top: 0;
    bottom: 0;
    width: 340px;
    background: #fff;
    border-left: 3px solid var(--wacon-orange);
    box-shadow: -4px 0 24px rgba(0, 0, 0, .14);
    z-index: 1060;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.flyin-panel.open {
    right: 0;
}

.flyin-header {
    background: var(--wacon-orange);
    color: #fff;
    padding: 20px 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.flyin-header h3 {
    margin: 0;
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.flyin-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.flyin-body {
    padding: 24px 20px;
    flex: 1;
}

.flyin-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

.flyin-contact-item .fi {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: var(--wacon-orange-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wacon-orange);
    font-size: 18px;
    flex-shrink: 0;
}

.flyin-contact-item strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--wacon-muted);
    margin-bottom: 2px;
}

.flyin-contact-item a,
.flyin-contact-item span {
    color: var(--wacon-ink);
    font-weight: 500;
}

.flyin-cta {
    display: block;
    text-align: center;
    background: var(--wacon-orange);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 5px;
    margin-top: 28px;
    transition: background .2s;
}

.flyin-cta:hover {
    background: var(--wacon-orange-dk);
    text-decoration: none;
    color: #fff;
}

.flyin-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 1055;
}

.flyin-overlay.open {
    display: block;
}


/* ── Page Layout Utilities ──────────────────────────────────── */
.page-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-rule {
    border: none;
    border-top: 1px solid var(--wacon-rule);
    margin: 2rem 0;
}

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--wacon-orange);
    display: block;
    margin-bottom: 4px;
}

.page-hero {
    padding: 40px 0 32px;
    border-bottom: 1px solid var(--wacon-rule);
    margin-bottom: 48px;
}

.page-hero h1 {
    font-size: clamp(26px, 3.5vw, 40px);
    margin-bottom: 12px;
}

.page-hero .lead {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    max-width: 700px;
    margin: 0;
}

.page-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--wacon-muted);
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Breadcrumb */
.breadcrumb {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--wacon-muted);
}

.breadcrumb-item a {
    color: var(--wacon-muted);
}

.breadcrumb-item a:hover {
    color: var(--wacon-orange);
}

.breadcrumb-item.active {
    color: var(--wacon-ink);
}

/* Pull Quote */
.pull-quote {
    border-left: 4px solid var(--wacon-orange);
    margin: 24px 0;
    padding: 10px 20px;
    font-size: 20px;
    font-style: italic;
    color: #333;
    line-height: 1.5;
}


/* ── Newspaper Grid (Startseite) ────────────────────────────── */
.lead-article {
    padding: 40px 0 0;
}

.lead-article h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.15;
}

.lead-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--wacon-muted);
    margin-bottom: 20px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.lead-body {
    font-size: 19px;
    line-height: 1.8;
}

.lead-body p:first-child::first-letter {
    float: left;
    font-size: 68px;
    line-height: .82;
    font-weight: 600;
    color: var(--wacon-orange);
    margin: 4px 10px 0 0;
    font-family: 'Source Serif 4', serif;
}

.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0 40px;
    align-items: start;
}

.articles-grid .col-divider {
    border-left: 1px solid var(--wacon-rule);
    padding-left: 40px;
}

.article-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--wacon-rule);
}

.article-item:last-child {
    border-bottom: none;
}

.article-item h2 {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.25;
}

.article-item h2 a {
    color: var(--wacon-ink);
}

.article-item h2 a:hover {
    color: var(--wacon-orange);
    text-decoration: none;
}

.article-item p {
    font-size: 16px;
    color: #444;
    margin: 0;
    line-height: 1.65;
}

.article-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--wacon-muted);
    margin-bottom: 8px;
}

.side-article {
    padding: 16px 0;
    border-bottom: 1px solid var(--wacon-rule);
}

.side-article:last-child {
    border-bottom: none;
}

.side-article h3 {
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 6px;
}

.side-article h3 a {
    color: var(--wacon-ink);
}

.side-article h3 a:hover {
    color: var(--wacon-orange);
    text-decoration: none;
}

.side-article p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.55;
}


/* ── Content Elements with Image ────────────────────────────── */
.ce-image {
    margin: 40px 0;
}

.ce-image h2 {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.ce-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--wacon-muted);
    margin-bottom: 14px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ce-image p {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 12px;
}

.ce-image p:last-of-type {
    margin-bottom: 0;
}

.ce-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--wacon-orange);
    margin-top: 16px;
    border-bottom: 1px solid transparent;
    transition: border-color .15s;
}

.ce-readmore:hover {
    border-bottom-color: var(--wacon-orange);
    text-decoration: none;
}

.ce-img-wrap {
    position: relative;
}

.ce-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
}

figcaption {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--wacon-muted);
    margin-top: 6px;
    line-height: 1.4;
    border-left: 2px solid var(--wacon-orange);
    padding-left: 8px;
}

.ce-img-left {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 36px;
    align-items: start;
}

.ce-img-right {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 36px;
    align-items: start;
}

.ce-img-top .ce-body {
    columns: 2;
    column-gap: 40px;
}

.ce-img-top .ce-body p {
    break-inside: avoid;
}

.ce-highlight {
    background: var(--wacon-orange-lt);
    border-left: 3px solid var(--wacon-orange);
    border-radius: 0 4px 4px 0;
    padding: 14px 18px;
    margin: 16px 0 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--wacon-ink);
    line-height: 1.6;
}

.ce-highlight strong {
    color: var(--wacon-orange-dk);
}


/* ── How-To Page ────────────────────────────────────────────── */
.toc {
    background: #fff;
    border: 1px solid var(--wacon-rule);
    border-left: 3px solid var(--wacon-orange);
    border-radius: 0 5px 5px 0;
    padding: 20px 24px;
    margin-bottom: 40px;
}

.toc-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--wacon-muted);
    margin-bottom: 10px;
}

.toc ol {
    margin: 0;
    padding-left: 20px;
}

.toc li {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    margin-bottom: 4px;
}

.toc a {
    color: var(--wacon-ink);
}

.toc a:hover {
    color: var(--wacon-orange);
    text-decoration: none;
}

.howto-step {
    margin-bottom: 48px;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--wacon-orange);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.step-header h2 {
    font-size: 22px;
    margin: 0;
}

.howto-step p {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 12px;
}

.hint-box {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 5px;
    margin: 20px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.hint-box.info {
    background: #eef4ff;
    border-left: 3px solid #4a7cf6;
}

.hint-box.info .hb-icon {
    color: #4a7cf6;
}

.hint-box.warn {
    background: #fff8ec;
    border-left: 3px solid #f0a500;
}

.hint-box.warn .hb-icon {
    color: #f0a500;
}

.hint-box.success {
    background: #edfaf5;
    border-left: 3px solid #1d9e75;
}

.hint-box.success .hb-icon {
    color: #1d9e75;
}

.hint-box .hb-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Code Snippets */
.ce-code {
    margin: 28px 0;
}

.ce-code-header {
    background: #1e1e2e;
    border-radius: 6px 6px 0 0;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #313244;
    flex-wrap: wrap;
    gap: 8px;
}

.ce-code-lang {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #89b4fa;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ce-code-filename {
    font-family: 'JetBrains Mono', 'Fira Mono', monospace;
    font-size: 12px;
    color: #a6adc8;
}

.ce-code-actions {
    display: flex;
    gap: 6px;
}

.btn-copy {
    background: none;
    border: 1px solid #313244;
    color: #cdd6f4;
    border-radius: 4px;
    padding: 4px 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: background .15s, color .15s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-copy:hover {
    background: #313244;
    color: #fff;
}

.btn-copy.copied {
    border-color: #1d9e75;
    color: #1d9e75;
}

.ce-code-body {
    background: #1e1e2e;
    border-radius: 0 0 6px 6px;
    overflow-x: auto;
}

.ce-code-body pre {
    margin: 0;
    padding: 20px;
    font-family: 'JetBrains Mono', 'Fira Mono', monospace;
    font-size: 13.5px;
    line-height: 1.7;
    color: #cdd6f4;
}

.t-kw  { color: #cba6f7; }
.t-str { color: #a6e3a1; }
.t-num { color: #fab387; }
.t-cm  { color: #6c7086; font-style: italic; }
.t-fn  { color: #89b4fa; }
.t-op  { color: #89dceb; }
.t-cl  { color: #f38ba8; }
.t-at  { color: #f9e2af; }


/* ── Team Page ──────────────────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
    margin-bottom: 56px;
}

.team-card {
    display: flex;
    flex-direction: column;
}

.team-photo-wrap {
    position: relative;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 4px;
}

.team-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 24, .55) 0%, transparent 55%);
    pointer-events: none;
}

.team-photo-wrap img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top;
    transition: transform .4s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-photo-wrap img {
    transform: scale(1.04);
}

.team-photo-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 1;
    display: flex;
    gap: 6px;
}

.team-photo-badge a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--wacon-ink);
    transition: background .15s, color .15s;
    text-decoration: none;
}

.team-photo-badge a:hover {
    background: var(--wacon-orange);
    color: #fff;
}

.team-name {
    font-family: 'Source Serif 4', serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
    color: var(--wacon-ink);
}

.team-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--wacon-orange);
    margin-bottom: 6px;
}

.team-bio {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--wacon-muted);
    line-height: 1.55;
    margin: 0;
}

.team-skills {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.skill-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    background: var(--wacon-orange-lt);
    color: var(--wacon-orange-dk);
    border-radius: 3px;
    padding: 2px 7px;
    font-weight: 500;
}

.team-section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--wacon-muted);
    margin: 0 0 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--wacon-rule);
}

.team-cta-strip {
    background: #fff;
    border: 1px solid var(--wacon-rule);
    border-left: 3px solid var(--wacon-orange);
    border-radius: 0 5px 5px 0;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.team-cta-strip h3 {
    font-size: 20px;
    margin: 0 0 4px;
}

.team-cta-strip p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--wacon-muted);
    margin: 0;
}


/* ── Pricing Page ───────────────────────────────────────────── */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--wacon-muted);
}

.billing-toggle .toggle-label {
    font-weight: 500;
}

.billing-toggle .toggle-label.active {
    color: var(--wacon-ink);
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-track {
    position: absolute;
    inset: 0;
    background: var(--wacon-rule);
    border-radius: 24px;
    transition: background .2s;
}

.toggle-switch input:checked + .toggle-track {
    background: var(--wacon-orange);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.toggle-switch input:checked ~ .toggle-knob {
    transform: translateX(20px);
}

.badge-save {
    background: var(--wacon-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 4px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 56px;
    border: 1px solid var(--wacon-rule);
    border-radius: 6px;
    overflow: hidden;
}

.pricing-card {
    background: #fff;
    padding: 28px 24px 32px;
    border-right: 1px solid var(--wacon-rule);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:last-child {
    border-right: none;
}

.pricing-card.featured {
    background: var(--wacon-ink);
    border-color: var(--wacon-ink);
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wacon-orange);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 14px;
    border-radius: 0 0 5px 5px;
}

.pricing-tier {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--wacon-muted);
    margin-bottom: 6px;
}

.featured .pricing-tier { color: rgba(255, 255, 255, .5); }

.pricing-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.featured .pricing-name { color: #fff; }

.pricing-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--wacon-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 48px;
}

.featured .pricing-desc { color: rgba(255, 255, 255, .6); }

.pricing-price {
    margin-bottom: 24px;
}

.price-amount {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    color: var(--wacon-ink);
}

.featured .price-amount { color: #fff; }

.price-amount sup {
    font-size: 18px;
    vertical-align: top;
    margin-top: 6px;
    display: inline-block;
}

.price-period {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--wacon-muted);
    margin-top: 4px;
}

.featured .price-period { color: rgba(255, 255, 255, .5); }

.price-annual {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--wacon-orange);
    margin-top: 2px;
    min-height: 18px;
}

.featured .price-annual { color: #f9a57c; }

.pricing-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    padding: 5px 0;
    border-bottom: 1px solid var(--wacon-rule);
    color: #333;
}

.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .8);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li .fi-check {
    color: var(--wacon-orange);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.featured .pricing-features li .fi-check { color: #f9a57c; }

.pricing-features li .fi-x {
    color: #ccc;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-features li.unavailable { color: var(--wacon-muted); opacity: .6; }
.featured .pricing-features li.unavailable { color: rgba(255, 255, 255, .35); }

.pricing-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: background .2s, color .2s, border-color .2s;
    text-decoration: none;
}

.pricing-btn-outline {
    border: 1.5px solid var(--wacon-rule);
    color: var(--wacon-ink);
}

.pricing-btn-outline:hover {
    border-color: var(--wacon-orange);
    color: var(--wacon-orange);
    text-decoration: none;
    background: var(--wacon-orange-lt);
}

.pricing-btn-primary {
    background: var(--wacon-orange);
    color: #fff;
    border: 1.5px solid var(--wacon-orange);
}

.pricing-btn-primary:hover {
    background: var(--wacon-orange-dk);
    border-color: var(--wacon-orange-dk);
    color: #fff;
    text-decoration: none;
}

.pricing-btn-white {
    background: #fff;
    color: var(--wacon-ink);
    border: 1.5px solid #fff;
}

.pricing-btn-white:hover {
    background: var(--wacon-orange-lt);
    color: var(--wacon-orange);
    border-color: var(--wacon-orange-lt);
    text-decoration: none;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

.compare-table th {
    padding: 10px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--wacon-muted);
    border-bottom: 2px solid var(--wacon-rule);
    background: var(--wacon-bg);
}

.compare-table th:not(:first-child) { text-align: center; }
.compare-table th.col-featured {
    background: var(--wacon-ink);
    color: #fff;
    border-radius: 4px 4px 0 0;
}

.compare-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--wacon-rule);
    vertical-align: middle;
    color: var(--wacon-ink);
}

.compare-table td:not(:first-child) { text-align: center; }
.compare-table td.col-featured { background: #f8f6f0; font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #f5f4f0; }
.compare-table tr:hover td.col-featured { background: #f0ede4; }

.compare-table .cat-row td {
    font-weight: 500;
    color: var(--wacon-orange);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .07em;
    background: var(--wacon-orange-lt);
    padding: 8px 16px;
}

.compare-table .cat-row td.col-featured { background: #fae8df; }
.check { color: var(--wacon-orange); font-size: 16px; }
.cross { color: #ccc; font-size: 16px; }
.partial { color: var(--wacon-muted); font-size: 13px; }

.faq-item { border-bottom: 1px solid var(--wacon-rule); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--wacon-ink);
    list-style: none;
    user-select: none;
}

.faq-question:hover { color: var(--wacon-orange); }
.faq-question::marker,
.faq-question::-webkit-details-marker { display: none; }

.faq-question i {
    font-size: 18px;
    flex-shrink: 0;
    transition: transform .2s;
    color: var(--wacon-muted);
}

details[open] .faq-question i {
    transform: rotate(180deg);
    color: var(--wacon-orange);
}

.faq-answer {
    padding: 0 0 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}


/* ── References Page ────────────────────────────────────────── */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--wacon-rule);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 40px;
    background: #fff;
}

.stat-item {
    padding: 20px 16px;
    text-align: center;
    border-right: 1px solid var(--wacon-rule);
}

.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--wacon-orange);
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--wacon-muted);
    line-height: 1.3;
}

.filter-bar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.filter-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 4px;
    border: 1.5px solid var(--wacon-rule);
    background: #fff;
    color: var(--wacon-muted);
    cursor: pointer;
    transition: all .15s;
}

.filter-btn:hover {
    border-color: var(--wacon-orange);
    color: var(--wacon-orange);
}

.filter-btn.active {
    background: var(--wacon-orange);
    border-color: var(--wacon-orange);
    color: #fff;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.project-card {
    background: #fff;
    border: 1px solid var(--wacon-rule);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.project-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .10);
    transform: translateY(-3px);
}

.project-card.hidden { display: none; }

.project-thumb {
    position: relative;
    overflow: hidden;
}

.project-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .4s;
}

.project-card:hover .project-thumb img { transform: scale(1.05); }

.project-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 24, .6), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 12px 14px;
    opacity: 0;
    transition: opacity .2s;
}

.project-card:hover .project-thumb-overlay { opacity: 1; }

.project-thumb-overlay a {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    padding: 5px 12px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, .3);
}

.project-thumb-overlay a:hover {
    background: var(--wacon-orange);
    border-color: var(--wacon-orange);
    text-decoration: none;
}

.project-body {
    padding: 16px 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.project-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    background: var(--wacon-orange-lt);
    color: var(--wacon-orange-dk);
    padding: 2px 8px;
    border-radius: 3px;
}

.project-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--wacon-ink);
    line-height: 1.25;
}

.project-client {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--wacon-muted);
    margin-bottom: 8px;
}

.project-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #444;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.project-meta {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--wacon-rule);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-meta span {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--wacon-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-cloud-section { margin-bottom: 56px; }
.logo-cloud-section h2 { font-size: 22px; margin-bottom: 6px; }
.logo-cloud-section .sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--wacon-muted);
    margin-bottom: 24px;
}

.logo-cloud {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--wacon-rule);
    border: 1px solid var(--wacon-rule);
    border-radius: 5px;
    overflow: hidden;
}

.logo-item {
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.logo-item:hover { background: var(--wacon-orange-lt); }
.logo-item svg { width: 100%; max-width: 110px; height: 36px; }

.testimonials-section { margin-bottom: 56px; }
.testimonials-section h2 { font-size: 22px; margin-bottom: 24px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--wacon-rule);
    border-radius: 5px;
    padding: 24px 24px 20px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Source Serif 4', serif;
    font-size: 64px;
    line-height: .8;
    color: var(--wacon-orange);
    opacity: .25;
    position: absolute;
    top: 14px;
    left: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 16px;
    padding-top: 8px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--wacon-rule);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--wacon-ink);
    display: block;
    line-height: 1.2;
}

.testimonial-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--wacon-muted);
}

.testimonial-stars {
    color: var(--wacon-orange);
    font-size: 12px;
    margin-bottom: 2px;
}


/* ── Contact Page ───────────────────────────────────────────── */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--wacon-rule);
    border-radius: 5px;
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow .2s;
}

.contact-card:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, .08); }

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--wacon-orange-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--wacon-orange);
}

.contact-card h3 { font-size: 17px; margin: 0; }

.contact-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--wacon-muted);
    margin: 0;
    line-height: 1.5;
}

.contact-card a {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--wacon-ink);
    display: block;
    margin-top: 2px;
}

.contact-card a:hover { color: var(--wacon-orange); text-decoration: none; }

.contact-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
}

.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--wacon-rule);
    border-radius: 5px;
    padding: 32px 32px 36px;
}

.contact-form-wrap h2 { font-size: 24px; margin-bottom: 6px; }

.form-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--wacon-muted);
    margin-bottom: 28px;
}

.field-group { margin-bottom: 20px; }

.field-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--wacon-ink);
    margin-bottom: 6px;
}

.field-label .req { color: var(--wacon-orange); margin-left: 2px; }

.field-input,
.field-select,
.field-textarea {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--wacon-ink);
    background: #fff;
    border: 1.5px solid var(--wacon-rule);
    border-radius: 4px;
    padding: 10px 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
}

.field-input::placeholder,
.field-textarea::placeholder { color: #b0afaa; }

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
    border-color: var(--wacon-orange);
    box-shadow: 0 0 0 3px rgba(218, 83, 44, .1);
}

.field-input.error,
.field-select.error,
.field-textarea.error {
    border-color: #e24b4a;
    box-shadow: 0 0 0 3px rgba(226, 75, 74, .1);
}

.field-error {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #e24b4a;
    margin-top: 5px;
    display: none;
}

.field-error.visible { display: block; }

.field-textarea {
    resize: vertical;
    min-height: 120px;
}

.field-select-wrap { position: relative; }

.field-select-wrap i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--wacon-muted);
    pointer-events: none;
    font-size: 16px;
}

.field-select { padding-right: 36px; cursor: pointer; }

.field-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    cursor: pointer;
}

.field-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--wacon-rule);
    border-radius: 3px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--wacon-orange);
    margin-top: 2px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.form-hint {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--wacon-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wacon-orange);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.btn-submit:hover { background: var(--wacon-orange-dk); }
.btn-submit:disabled { background: #ccc; cursor: not-allowed; }

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success .success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #edfaf5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1d9e75;
    margin: 0 auto 16px;
}

.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--wacon-muted);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: #fff;
    border: 1px solid var(--wacon-rule);
    border-radius: 5px;
    padding: 20px;
}

.sidebar-card h3 { font-size: 17px; margin-bottom: 12px; }

.sidebar-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

.sidebar-info-item:last-child { margin-bottom: 0; }

.sidebar-info-item .sii {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--wacon-orange-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--wacon-orange);
    flex-shrink: 0;
}

.sidebar-info-item strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--wacon-muted);
    margin-bottom: 1px;
}

.sidebar-info-item a,
.sidebar-info-item span {
    color: var(--wacon-ink);
    font-weight: 500;
}

.hours-table {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    border-collapse: collapse;
}

.hours-table td {
    padding: 5px 0;
    border-bottom: 1px solid var(--wacon-rule);
}

.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; font-weight: 500; }
.hours-table .closed { color: var(--wacon-muted); }

.contact-team {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-person img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.contact-person-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--wacon-ink);
    display: block;
    line-height: 1.2;
}

.contact-person-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--wacon-muted);
}

.map-section { margin-bottom: 56px; }
.map-section h2 { font-size: 22px; margin-bottom: 20px; }

.map-wrap {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--wacon-rule);
    position: relative;
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 340px;
    border: none;
}

.map-overlay-link {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    color: var(--wacon-ink);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--wacon-rule);
}

.map-overlay-link:hover { color: var(--wacon-orange); text-decoration: none; }

.anfahrt-hints {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--wacon-muted);
    margin-top: 10px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


/* ── Shared CTA Strips ──────────────────────────────────────── */
.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wacon-orange);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 4px;
    transition: background .2s;
    white-space: nowrap;
}

.btn-orange:hover {
    background: var(--wacon-orange-dk);
    color: #fff;
    text-decoration: none;
}

.dark-cta-strip {
    background: var(--wacon-ink);
    border-radius: 5px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.dark-cta-strip h3 { font-size: 22px; color: #fff; margin: 0 0 4px; }

.dark-cta-strip p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    margin: 0;
}

.orange-left-strip {
    background: #fff;
    border: 1px solid var(--wacon-rule);
    border-left: 3px solid var(--wacon-orange);
    border-radius: 0 5px 5px 0;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.orange-left-strip h3 { font-size: 20px; margin: 0 0 4px; }

.orange-left-strip p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--wacon-muted);
    margin: 0;
}


/* ── Footer ─────────────────────────────────────────────────── */
footer {
    background: var(--wacon-ink);
    color: #ccc;
    margin-top: 60px;
    padding: 48px 0 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

footer h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--wacon-orange);
    margin-bottom: 12px;
}

footer p {
    color: #aaa;
    line-height: 1.8;
    margin: 0;
}

footer a { color: #ccc; }
footer a:hover { color: #fff; text-decoration: none; }

.footer-rule {
    border-color: #333;
    margin: 32px 0 20px;
}

.typo3-member img {
    height: 60px;
    width: auto;
    opacity: .85;
    transition: opacity .2s;
}

.typo3-member img:hover { opacity: 1; }

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #ccc;
    transition: background .2s, border-color .2s, color .2s;
}

.social-links a:hover {
    background: var(--wacon-orange);
    border-color: var(--wacon-orange);
    color: #fff;
}

.footer-bottom {
    color: #666;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: #aaa; }


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .team-grid          { grid-template-columns: repeat(3, 1fr); }
    .logo-cloud         { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    /* Hide desktop nav, show toggle */
    .header-search      { display: none; }
    .main-nav           { display: none; }
    .nav-toggle         { display: block; }

    /* Fly-in full width on mobile */
    .flyin-panel        { width: 100%; right: -100%; }

    /* Grids stack */
    .articles-grid      { grid-template-columns: 1fr; }
    .articles-grid .col-divider {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--wacon-rule);
        padding-top: 24px;
    }

    .pricing-grid       { grid-template-columns: 1fr; }
    .pricing-card       { border-right: none; border-bottom: 1px solid var(--wacon-rule); }
    .pricing-card:last-child { border-bottom: none; }

    .compare-table th:nth-child(2),
    .compare-table td:nth-child(2),
    .compare-table th:nth-child(4),
    .compare-table td:nth-child(4) { display: none; }

    .project-grid       { grid-template-columns: 1fr 1fr; }
    .stats-strip        { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid  { grid-template-columns: 1fr; }

    .contact-cards      { grid-template-columns: 1fr; gap: 12px; }
    .contact-layout     { grid-template-columns: 1fr; gap: 28px; }
    .field-row-2        { grid-template-columns: 1fr; }
    .contact-form-wrap  { padding: 24px 20px 28px; }

    .ce-img-left,
    .ce-img-right       { grid-template-columns: 1fr; }
    .ce-img-right .ce-img-wrap { order: -1; }
    .ce-img-top .ce-body { columns: 1; }

    .dark-cta-strip,
    .orange-left-strip  { flex-direction: column; }

    .team-grid          { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }

    .logo-cloud         { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
    body                { font-size: 16px; }
    .lead-article h1    { font-size: 26px; }
    .project-grid       { grid-template-columns: 1fr; }
    .logo-cloud         { grid-template-columns: repeat(2, 1fr); }
    .stats-strip        { grid-template-columns: 1fr 1fr; }
    .team-grid          { grid-template-columns: 1fr 1fr; }
    .compare-table th,
    .compare-table td   { padding: 9px 10px; font-size: 12px; }
}
