/* GNX Service Page LF Shared Styles */
:root {
    --wire-bg: #ffffff;
    --wire-line: #999999;
    --wire-fill: #eeeeee;
    --wire-text: #333333;
    --wire-dark: #222222;
}

* { box-sizing: border-box; }

body {
    font-family: "Courier New", Courier, monospace;
    margin: 0;
    padding: 0;
    color: var(--wire-text);
    background: var(--wire-bg);
    line-height: 1.5;
}

h1, h2, h3, h4 { margin-top: 0; font-weight: bold; }
p { color: #555; font-size: 1rem; margin: 0 0 12px; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 60px 20px; text-align: center; }
.section { border-bottom: 2px solid var(--wire-line); position: relative; }
.section-alt { background: #fafafa; }
.section-dark { background: var(--wire-dark); color: #fff; border-color: #444; }
.section-dark p { color: #ccc; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.tmpl-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.65rem;
    background: #ccc;
    color: #333;
    padding: 3px 8px;
    border: 1px solid #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dark-badge { background:#555; color:#fff; border-color:#666; }

.label {
    font-size: 0.75rem;
    background: var(--wire-text);
    color: #fff;
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-light {
    font-size: 0.75rem;
    background: #fff;
    color: var(--wire-text);
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #999;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    margin: 4px 10px 4px 0;
    border: 2px solid var(--wire-text);
    background: var(--wire-fill);
    color: var(--wire-text);
    cursor: pointer;
}
.btn-primary { background: var(--wire-text); color: #fff; }
.btn-ghost { background: transparent; }
.btn-white { background: #fff; color: var(--wire-text); border-color: #fff; }

.img-placeholder {
    background: var(--wire-fill);
    border: 2px dashed var(--wire-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    min-height: 180px;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split-60 { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; align-items: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    border-bottom: 2px solid var(--wire-line);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}
.logo-box { border: 2px solid var(--wire-text); padding: 8px 18px; font-weight: bold; font-size: 1rem; }
nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-link { border-bottom: 1px solid var(--wire-text); padding-bottom: 2px; font-size: 0.85rem; font-weight: bold; cursor: pointer; }

.breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: 0.85rem; margin-top: 12px; color: #777; }
.card, .step-card, .faq-item, .related-card, .proof-card {
    border: 2px solid var(--wire-line);
    padding: 24px;
    background: #fafafa;
}
.icon-box {
    width: 44px;
    height: 44px;
    border: 2px dashed var(--wire-line);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #888;
}

.logo-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.logo-pill { border: 1px solid var(--wire-line); padding: 10px 18px; font-size: 0.8rem; font-weight: bold; color: #777; background: #fff; }
.meta-list { margin: 16px 0 0; padding-left: 18px; color: #555; }
.meta-list li { margin-bottom: 8px; }
.faq-item { margin-bottom: 10px; }
.faq-q { font-weight: bold; margin-bottom: 8px; }

footer { background: var(--wire-dark); color: #ccc; padding: 50px 40px 30px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto 40px; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-link { display: block; margin-bottom: 8px; font-size: 0.8rem; color: #aaa; }
.footer-bottom { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #444; padding-top: 20px; font-size: 0.75rem; color: #666; }

@media (max-width: 800px) {
    header { display: block; padding: 16px 20px; }
    nav { margin: 16px 0; }
    .split, .split-60, .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
}
