/*
 * GJ Internet Solutions marketing pages
 * All selectors are prefixed with gj- to avoid collisions with Twenty-One.
 */
:root {
    --gj-ink: #122033;
    --gj-muted: #59697d;
    --gj-line: #d9e1ea;
    --gj-soft: #f3f7fb;
    --gj-white: #ffffff;
    --gj-navy: #102a43;
    --gj-blue: #1769aa;
    --gj-blue-dark: #0f4f83;
    --gj-teal: #0f766e;
    --gj-accent: #e8f3fb;
    --gj-shadow: 0 18px 50px rgba(16, 42, 67, 0.12);
    --gj-radius: 22px;
}

.gj-page {
    color: var(--gj-ink);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 auto 3rem;
    max-width: 1180px;
}

.gj-page *,
.gj-page *::before,
.gj-page *::after { box-sizing: border-box; }
.gj-page h1,
.gj-page h2,
.gj-page h3 { color: var(--gj-ink); font-weight: 750; letter-spacing: -0.025em; line-height: 1.15; margin-top: 0; }
.gj-page h1 { font-size: clamp(2.3rem, 5vw, 4.65rem); max-width: 14ch; }
.gj-page h2 { font-size: clamp(1.8rem, 3.4vw, 3rem); }
.gj-page h3 { font-size: 1.3rem; }
.gj-page p { color: var(--gj-muted); }
.gj-page a:focus-visible,
.gj-page summary:focus-visible,
.gj-table-wrap:focus-visible { outline: 3px solid rgba(23, 105, 170, 0.35); outline-offset: 3px; }

.gj-hero {
    background:
        radial-gradient(circle at 90% 5%, rgba(82, 183, 199, 0.22), transparent 34%),
        linear-gradient(135deg, #edf6fc 0%, #f8fbfd 52%, #eef8f6 100%);
    border: 1px solid #dce9f1;
    border-radius: calc(var(--gj-radius) + 8px);
    margin: 1rem 0 4.5rem;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 5.25rem);
    position: relative;
}
.gj-hero::after { background: linear-gradient(90deg, var(--gj-blue), var(--gj-teal)); bottom: 0; content: ""; height: 5px; left: 0; position: absolute; right: 0; }
.gj-hero-grid { align-items: center; display: grid; gap: clamp(2rem, 6vw, 5rem); grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); }
.gj-lead { font-size: clamp(1.08rem, 1.8vw, 1.3rem); max-width: 64ch; }
.gj-eyebrow { color: var(--gj-blue-dark); display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .13em; margin-bottom: 1rem; text-transform: uppercase; }
.gj-hero-panel { background: rgba(255,255,255,.9); border: 1px solid rgba(16,42,67,.1); border-radius: var(--gj-radius); box-shadow: var(--gj-shadow); padding: 2rem; }
.gj-brand-mark { align-items: center; background: linear-gradient(135deg, var(--gj-blue), var(--gj-teal)); border-radius: 18px; color: #fff; display: flex; font-size: 2rem; font-weight: 850; height: 72px; justify-content: center; margin-bottom: 1.5rem; width: 72px; }
.gj-panel-kicker { color: var(--gj-ink) !important; font-weight: 750; margin-bottom: .8rem; }

.gj-actions { align-items: center; display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.gj-button { align-items: center; border: 1px solid transparent; border-radius: 999px; display: inline-flex; font-weight: 750; justify-content: center; line-height: 1.2; min-height: 48px; padding: .82rem 1.35rem; text-decoration: none !important; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.gj-button:hover { transform: translateY(-1px); }
.gj-button-primary { background: var(--gj-blue); box-shadow: 0 10px 24px rgba(23,105,170,.22); color: #fff !important; }
.gj-button-primary:hover { background: var(--gj-blue-dark); }
.gj-button-secondary { background: #fff; border-color: #b9c8d6; color: var(--gj-navy) !important; }
.gj-button-secondary:hover { border-color: var(--gj-blue); box-shadow: 0 8px 20px rgba(16,42,67,.1); }
.gj-button-quiet { color: var(--gj-blue-dark) !important; padding-left: .35rem; padding-right: .35rem; }
.gj-button-light { background: #fff; color: var(--gj-navy) !important; }
.gj-button-outline-light { border-color: rgba(255,255,255,.58); color: #fff !important; }
.gj-button-block { width: 100%; }
.gj-text-link { color: var(--gj-blue-dark) !important; font-weight: 800; text-decoration: none !important; }
.gj-text-link:hover { text-decoration: underline !important; }

.gj-section { margin: 0 0 5rem; }
.gj-section-soft { background: var(--gj-soft); border: 1px solid #e3eaf1; border-radius: var(--gj-radius); padding: clamp(1.5rem, 4vw, 3.2rem); }
.gj-section-heading { margin-bottom: 2rem; max-width: 780px; }
.gj-section-heading p { font-size: 1.05rem; }
.gj-section-heading-split { align-items: end; display: flex; justify-content: space-between; max-width: none; }
.gj-feature-grid { display: grid; gap: 1.25rem; }
.gj-feature-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gj-feature-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gj-feature-card { background: #fff; border: 1px solid var(--gj-line); border-radius: var(--gj-radius); padding: 2rem; }
.gj-feature-card-emphasis { background: linear-gradient(145deg, #fff 0%, #f2f9fd 100%); border-color: #bed8e9; }
.gj-icon { align-items: center; background: var(--gj-accent); border-radius: 14px; color: var(--gj-blue-dark); display: inline-flex; font-size: 1.1rem; height: 46px; justify-content: center; margin-bottom: 1.2rem; width: 46px; }

.gj-check-list { list-style: none; margin: 0; padding: 0; }
.gj-check-list li { color: var(--gj-muted); margin: .7rem 0; padding-left: 1.7rem; position: relative; }
.gj-check-list li::before { align-items: center; background: #ddf4ef; border-radius: 50%; color: var(--gj-teal); content: "✓"; display: flex; font-size: .68rem; font-weight: 900; height: 18px; justify-content: center; left: 0; position: absolute; top: .25rem; width: 18px; }
.gj-check-list-dark li { color: var(--gj-ink); }

.gj-plan-strip { display: grid; gap: 1rem; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gj-mini-plan { background: #fff; border: 1px solid var(--gj-line); border-radius: 18px; padding: 1.4rem; position: relative; }
.gj-mini-plan-featured { border-color: var(--gj-blue); box-shadow: 0 10px 30px rgba(23,105,170,.1); }
.gj-mini-plan h3 { margin-bottom: .4rem; }
.gj-mini-price { display: flex; flex-direction: column; margin: 0 0 .7rem; }
.gj-mini-price strong { color: var(--gj-ink); font-size: 1.55rem; }
.gj-mini-price span { font-size: .82rem; }
.gj-badge { background: var(--gj-teal); border-radius: 999px; color: #fff; display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .04em; padding: .32rem .65rem; text-transform: uppercase; }
.gj-fine-print { font-size: .84rem !important; margin-top: 1.1rem; }
.gj-center { text-align: center; }

.gj-split-card { align-items: center; background: #fff; border: 1px solid var(--gj-line); border-radius: var(--gj-radius); display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1.1fr .9fr; padding: clamp(1.8rem, 5vw, 3.6rem); }
.gj-workflow { display: grid; gap: .7rem; }
.gj-workflow span { background: var(--gj-soft); border: 1px solid #dce6ef; border-radius: 12px; color: var(--gj-ink); font-weight: 750; padding: .8rem 1rem; text-align: center; }
.gj-workflow i { color: var(--gj-blue); text-align: center; transform: rotate(90deg); }

.gj-plan-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gj-plan-card { background: #fff; border: 1px solid var(--gj-line); border-radius: var(--gj-radius); display: flex; flex-direction: column; padding: 1.55rem; position: relative; }
.gj-plan-card-featured { border: 2px solid var(--gj-blue); box-shadow: var(--gj-shadow); }
.gj-plan-card > .gj-badge { position: absolute; right: 1.2rem; top: 1.2rem; }
.gj-plan-fit { color: var(--gj-blue-dark); display: block; font-size: .72rem; font-weight: 800; letter-spacing: .08em; margin-bottom: .55rem; text-transform: uppercase; }
.gj-price { display: flex; flex-direction: column; margin-bottom: 1rem; }
.gj-price strong { color: var(--gj-ink); font-size: 2.05rem; }
.gj-price span { font-size: .82rem; }
.gj-plan-summary { min-height: 7.2rem; }
.gj-spec-list { border-top: 1px solid var(--gj-line); margin: 0 0 1.4rem; }
.gj-spec-list div { display: flex; gap: 1rem; justify-content: space-between; padding: .66rem 0; border-bottom: 1px solid #edf1f5; }
.gj-spec-list dt { color: var(--gj-muted); font-weight: 500; }
.gj-spec-list dd { color: var(--gj-ink); font-weight: 750; margin: 0; text-align: right; }
.gj-plan-card .gj-button { margin-top: auto; }

.gj-table-wrap { border: 1px solid var(--gj-line); border-radius: 18px; overflow-x: auto; }
.gj-table { background: #fff; border-collapse: collapse; min-width: 760px; width: 100%; }
.gj-table th, .gj-table td { border-bottom: 1px solid var(--gj-line); padding: .9rem 1rem; text-align: left; }
.gj-table thead th { background: var(--gj-navy); color: #fff; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.gj-table tbody th { color: var(--gj-ink); }
.gj-table tbody tr:last-child th, .gj-table tbody tr:last-child td { border-bottom: 0; }
.gj-table tbody tr:hover { background: #f8fbfd; }

.gj-faq details { background: #fff; border: 1px solid var(--gj-line); border-radius: 14px; margin-bottom: .8rem; padding: 0 1.2rem; }
.gj-faq summary { color: var(--gj-ink); cursor: pointer; font-weight: 750; padding: 1rem 2rem 1rem 0; position: relative; }
.gj-faq summary::after { color: var(--gj-blue); content: "+"; font-size: 1.4rem; position: absolute; right: 0; top: .75rem; }
.gj-faq details[open] summary::after { content: "–"; }
.gj-faq details p { padding-bottom: 1rem; }

.gj-product-lockup { align-items: center; display: flex; gap: 1rem; margin-bottom: 1.3rem; }
.gj-product-mark { align-items: center; background: linear-gradient(135deg, var(--gj-blue), var(--gj-teal)); border-radius: 16px; color: #fff; display: inline-flex; font-size: 1.7rem; font-weight: 900; height: 58px; justify-content: center; width: 58px; }
.gj-product-lockup strong, .gj-product-lockup small { display: block; }
.gj-product-lockup strong { color: var(--gj-ink); font-size: 1.2rem; }
.gj-product-lockup small { color: var(--gj-muted); }
.gj-process { display: grid; gap: 1.2rem; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gj-process-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gj-process > div { border-left: 3px solid #c6deed; padding-left: 1.2rem; }
.gj-process > div > span { align-items: center; background: var(--gj-blue); border-radius: 50%; color: #fff; display: flex; font-weight: 800; height: 32px; justify-content: center; margin-bottom: 1rem; width: 32px; }

.gj-contact-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gj-contact-card { background: #fff; border: 1px solid var(--gj-line); border-radius: var(--gj-radius); display: flex; flex-direction: column; padding: 2rem; }
.gj-contact-card p { min-height: 8rem; }
.gj-contact-card .gj-button { margin-top: auto; }
.gj-contact-top { align-items: flex-start; display: flex; justify-content: space-between; }
.gj-access { border-radius: 999px; font-size: .7rem; font-weight: 800; padding: .32rem .62rem; text-transform: uppercase; }
.gj-access-public { background: #dcf4e8; color: #17643e; }
.gj-access-client { background: #edf1f5; color: #495a6c; }
.gj-status-card { align-items: center; background: #fff; border: 1px solid var(--gj-line); border-radius: var(--gj-radius); display: flex; gap: 2rem; justify-content: space-between; padding: clamp(1.6rem, 4vw, 3rem); }
.gj-status-copy { max-width: 760px; }
.gj-inline-note { align-items: center; background: #eef3f7; border-radius: 12px; color: var(--gj-muted); display: flex; gap: .65rem; margin-top: 1.1rem; padding: .75rem 1rem; }

.gj-cta { align-items: center; background: linear-gradient(135deg, var(--gj-navy), #143f5f 60%, #0f625f); border-radius: var(--gj-radius); display: flex; gap: 2rem; justify-content: space-between; margin-bottom: 1rem; padding: clamp(2rem, 5vw, 3.6rem); }
.gj-cta h2, .gj-cta p, .gj-cta .gj-eyebrow { color: #fff; }
.gj-cta p { color: rgba(255,255,255,.78); margin-bottom: 0; max-width: 720px; }
.gj-cta .gj-actions { flex-shrink: 0; margin-top: 0; }

@media (max-width: 1050px) {
    .gj-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gj-plan-summary { min-height: 0; }
    .gj-plan-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 850px) {
    .gj-hero-grid, .gj-split-card { grid-template-columns: 1fr; }
    .gj-feature-grid-3, .gj-contact-grid, .gj-process, .gj-process-3 { grid-template-columns: 1fr 1fr; }
    .gj-cta, .gj-status-card { align-items: flex-start; flex-direction: column; }
    .gj-section-heading-split { align-items: flex-start; flex-direction: column; gap: 1rem; }
}
@media (max-width: 620px) {
    .gj-page { font-size: 15px; }
    .gj-hero { border-radius: 20px; margin-bottom: 3.2rem; padding: 1.5rem; }
    .gj-page h1 { font-size: 2.35rem; }
    .gj-section { margin-bottom: 3.4rem; }
    .gj-section-soft { padding: 1.15rem; }
    .gj-feature-grid-2, .gj-feature-grid-3, .gj-contact-grid, .gj-plan-grid, .gj-plan-strip, .gj-process, .gj-process-3 { grid-template-columns: 1fr; }
    .gj-actions, .gj-actions .gj-button { width: 100%; }
    .gj-contact-card p { min-height: 0; }
    .gj-cta { border-radius: 18px; padding: 1.6rem; }
}
@media (prefers-reduced-motion: reduce) {
    .gj-button { transition: none; }
    .gj-button:hover { transform: none; }
}
