/* Unified Websites offer: preserve the BI Visuals palette and typefaces. */
.home-offers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}
.home-offers .service-card {
    width: 100%;
    min-width: 0;
    max-width: none;
}
.websites-page .header {
    padding: 8px 20px;
}
.websites-page .site-title {
    font-size: 2.25rem;
    margin-bottom: 8px;
}
.websites-page .tagline {
    font-size: 1rem;
    margin-bottom: 12px;
}
.websites-page .main-nav { margin-top: 12px; }
.websites-content {
    --web-rule: rgba(173, 216, 230, 0.3);
    --web-text: #e0e0e0;
    --web-muted: #c0c0c0;
    --web-heading: #add8e6;
    --web-link: #00ffff;
    --web-price: #90ee90;
    width: 100%;
    max-width: 1080px;
    margin-inline: auto;
    padding-top: 8px;
}
.websites-content h2, .websites-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--web-heading);
    line-height: 1.35;
    text-wrap: balance;
}
.websites-content h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.websites-content h3 { font-size: 1.35rem; }
.websites-content p {
    color: var(--web-muted);
    line-height: 1.75;
    max-width: 68ch;
}
.websites-content strong { color: var(--web-text); }
.websites-intro {
    max-width: 960px;
    margin: 0 auto 16px;
    text-align: center;
}
.websites-intro #websites-title {
    font-size: clamp(1.6rem, 3.8vw, 2.5rem);
    margin-bottom: 16px;
}
.websites-intro > p { margin-inline: auto; font-size: 1.125rem; }
.websites-intro .websites-price-summary {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--web-text);
}
.websites-price-summary strong { color: var(--web-price); }
.websites-pricing-link { margin-top: 8px; }
/* Native fragment navigation avoids the legacy script's forced smooth scroll. */
.websites-content #pricing { padding-top: 16px; }
.websites-content .btn, .websites-content .btn-small {
    white-space: normal;
    text-align: center;
    min-height: 48px;
}
.websites-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    color: var(--web-link);
    text-underline-offset: 0.25em;
}
.websites-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.websites-work-grid, .websites-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}
.websites-example {
    min-width: 0;
    color: var(--web-heading);
    text-decoration: none;
}
.websites-example img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 12 / 7;
    object-fit: cover;
    object-position: top;
    border: 1px solid var(--web-rule);
    border-radius: 8px;
}
.websites-example > span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-block: 16px;
    font-size: 1.125rem;
}
.websites-example:hover > span { color: var(--web-link); }
.websites-service {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px 64px;
    padding-block: 48px;
    border-top: 1px solid var(--web-rule);
    scroll-margin-top: 24px;
}
.websites-work { margin-bottom: 48px; }
.websites-service h2 { margin-bottom: 20px; }
.websites-service p + p { margin-top: 16px; }
.websites-content .websites-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--web-price);
}
.websites-price span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--web-muted);
    margin-top: 4px;
}
.websites-options { padding-top: 16px; margin-bottom: 64px; }
.websites-section-intro { margin-top: 16px; margin-bottom: 24px; }
.websites-plan {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
    padding: 32px;
    border: 1px solid var(--web-rule);
    border-radius: 12px;
    background: #0a0a1e;
}
.websites-plan .btn-small { margin-top: auto; }
.websites-faq { max-width: 860px; margin: 0 auto 64px; }
.websites-faq h2 { margin-bottom: 24px; }
.websites-faq details { border-bottom: 1px solid var(--web-rule); }
.websites-faq summary {
    padding: 20px 8px;
    color: var(--web-text);
    font-weight: 700;
    cursor: pointer;
    min-height: 48px;
}
.websites-faq summary::marker { color: var(--web-link); }
.websites-faq details p { padding: 0 8px 24px; }
.websites-faq a { color: var(--web-link); text-underline-offset: 0.2em; }
.websites-content :focus-visible { outline: 3px solid var(--web-link); outline-offset: 4px; }
.websites-inquiry { margin-bottom: 32px; }
@media (max-width: 700px) {
    .home-offers, .websites-work-grid, .websites-plan-grid, .websites-service {
        grid-template-columns: minmax(0, 1fr);
    }
    .websites-page .header { padding: 12px 0; }
    .websites-page .site-title { font-size: 1.8rem; }
    .websites-intro > p { font-size: 1rem; line-height: 1.6; }
    .websites-intro #websites-title br { display: none; }
    .websites-service { padding-block: 32px; gap: 20px; }
    .websites-plan { padding: 24px; }
    .websites-content .btn, .websites-content .btn-small { padding: 12px 20px; }
    .websites-work, .websites-options, .websites-faq { margin-bottom: 48px; }
}
