/* Inner pages shared stylesheet — services / industries / locations / hub / about / contact */

:root {
    --lr-ink: #0A0F1E;
    --lr-ink-2: #1a1f2e;
    --lr-muted: #5a6578;
    --lr-line: #e5e8ef;
    --lr-bg: #f8fafc;
    --lr-accent: #0055FF;
    --lr-cyan: #00C2FF;
    --lr-green: #00E68A;
    --lr-purple: #6C5CE7;
}

/* Breadcrumb */
.bc {
    padding: 96px 0 16px;
    font-size: 14px;
    color: var(--lr-muted);
}
.bc ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.bc li { display: flex; align-items: center; gap: 6px; }
.bc li:not(:last-child)::after { content: "/"; color: var(--lr-line); margin-left: 6px; }
.bc a { color: var(--lr-muted); text-decoration: none; }
.bc a:hover { color: var(--lr-accent); }
.bc [aria-current="page"] { color: var(--lr-ink); font-weight: 500; }

/* Page hero */
.page-hero {
    padding: 24px 0 72px;
    border-bottom: 1px solid var(--lr-line);
    background: linear-gradient(180deg, #fff 0%, var(--lr-bg) 100%);
}
.page-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--lr-line);
    border-radius: 999px;
    background: #fff;
    font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
    color: var(--lr-accent);
    margin-bottom: 20px;
}
.page-hero__eyebrow::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--lr-green);
}
.page-hero h1 {
    font-family: Inter, system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--lr-ink);
    margin: 0 0 20px;
    max-width: 900px;
}
.page-hero__lead {
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.55;
    color: var(--lr-muted);
    max-width: 780px;
    margin: 0 0 32px;
}
.page-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Section */
.section { padding: 72px 0; border-bottom: 1px solid var(--lr-line); }
.section--alt { background: var(--lr-bg); }
.section__lead { font-size: 15px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lr-accent); margin: 0 0 12px; }
.section h2 {
    font-family: Inter, sans-serif; font-weight: 700;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15; letter-spacing: -0.01em;
    color: var(--lr-ink);
    margin: 0 0 24px;
    max-width: 820px;
}
.section h3 {
    font-family: Inter, sans-serif; font-weight: 700;
    font-size: 20px; line-height: 1.3;
    color: var(--lr-ink); margin: 0 0 10px;
}
.section p { font-size: 16px; line-height: 1.65; color: var(--lr-ink-2); max-width: 780px; margin: 0 0 16px; }
.section ul { padding-left: 22px; color: var(--lr-ink-2); font-size: 16px; line-height: 1.7; max-width: 780px; }
.section ul li { margin-bottom: 6px; }

/* Card grid */
.cards {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 24px;
}
.card {
    background: #fff;
    border: 1px solid var(--lr-line);
    border-radius: 14px;
    padding: 22px;
    transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--lr-accent); transform: translateY(-2px); }
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--lr-muted); line-height: 1.6; margin: 0; }

/* Process steps */
.steps {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: 24px;
}
.step {
    padding: 18px;
    border: 1px solid var(--lr-line);
    border-left: 3px solid var(--lr-accent);
    border-radius: 10px;
    background: #fff;
}
.step__n { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--lr-accent); font-weight: 600; margin-bottom: 4px; }
.step h3 { font-size: 15px; margin-bottom: 4px; }
.step p { font-size: 13.5px; color: var(--lr-muted); margin: 0; line-height: 1.55; }

/* Tech chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
    padding: 6px 12px;
    background: #fff;
    border: 1px solid var(--lr-line);
    border-radius: 999px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12.5px;
    color: var(--lr-ink-2);
}

/* Pricing */
.price-table {
    display: grid; gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 20px;
}
.price-card {
    background: #fff;
    border: 1px solid var(--lr-line);
    border-radius: 14px;
    padding: 22px;
}
.price-card__tier { font-size: 13px; font-weight: 600; color: var(--lr-accent); letter-spacing: 0.05em; text-transform: uppercase; }
.price-card__range { font-family: Inter, sans-serif; font-weight: 800; font-size: 26px; color: var(--lr-ink); margin: 8px 0 4px; }
.price-card__time { font-size: 14px; color: var(--lr-muted); margin: 0; }

/* FAQ */
.faq { max-width: 820px; margin-top: 24px; }
.faq details {
    border: 1px solid var(--lr-line);
    border-radius: 10px;
    background: #fff;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq details[open] { border-color: var(--lr-accent); }
.faq summary {
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    font-size: 16px;
    color: var(--lr-ink);
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+"; font-family: "JetBrains Mono", monospace; font-size: 20px; color: var(--lr-accent); font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq details > :not(summary) { padding: 0 22px 20px; color: var(--lr-ink-2); font-size: 15.5px; line-height: 1.65; }

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--lr-ink) 0%, #0D1117 100%);
    color: #fff;
    padding: 64px 0;
    text-align: center;
}
.cta-banner h2 {
    font-family: Inter, sans-serif; font-weight: 800;
    font-size: clamp(26px, 3vw, 38px);
    max-width: 780px; margin: 0 auto 16px;
    color: #fff;
    line-height: 1.15;
}
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto 28px; font-size: 17px; line-height: 1.6; }
.cta-banner .btn { display: inline-flex; }

/* Related links (internal linking) */
.related {
    display: grid; gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 20px;
}
.related a {
    display: block;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--lr-line);
    border-radius: 10px;
    text-decoration: none;
    color: var(--lr-ink);
    font-weight: 600;
    font-size: 15px;
    transition: all .2s;
}
.related a:hover { border-color: var(--lr-accent); color: var(--lr-accent); }

/* Hub grid */
.hub-grid {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 32px;
}
.hub-card {
    display: block;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--lr-line);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all .2s;
}
.hub-card:hover { border-color: var(--lr-accent); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,85,255,0.08); }
.hub-card h3 { font-size: 19px; margin-bottom: 8px; color: var(--lr-ink); }
.hub-card p { font-size: 14.5px; color: var(--lr-muted); margin: 0; line-height: 1.55; }

/* NAP block */
.nap {
    background: #fff;
    border: 1px solid var(--lr-line);
    border-radius: 12px;
    padding: 22px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--lr-ink-2);
    max-width: 480px;
}
.nap strong { color: var(--lr-ink); }

@media (max-width: 640px) {
    .page-hero { padding: 16px 0 48px; }
    .section { padding: 48px 0; }
    .cta-banner { padding: 48px 0; }
}
