/* Scoped tweaks for the MCP landing pages on slatech.co.il
   (/AI-For-Your-Site/* and /MCP-Integration/*). This file is linked ONLY by
   those pages, so Site.css - shared across the whole network - stays untouched.
   Keep bumping the ?v= in the pages' <link> when this changes. */

/* The three "withouts" sit in the dark hero, not in a white card, so the default
   .service-features text colour would be near-invisible there. */
.hero .service-features li { color: rgba(255, 255, 255, 0.92); }

/* Tighter vertical rhythm for these newcomer-facing pages: roughly half the
   default section/hero spacing so a page reads as one dense flow, not blocks
   split by empty screens. */
.hero { padding-bottom: var(--spacing-xl); }
.section { padding: var(--spacing-xl) 0; }
.section-header { margin-bottom: var(--spacing-lg); }

/* .btn-outline is styled white-on-transparent for the dark hero; on the light
   content sections it would be white-on-white and vanish. Recolour outline
   buttons that sit inside a light .section (the hero keeps the white variant). */
.section .btn-outline { color: var(--primary-color); border-color: var(--primary-color); }
/* Site.css .btn-outline:hover forces `color: var(--primary-color) !important` (for
   the dark hero, where hover flips to a white background). On a light section our
   hover flips to a BLUE background, so that blue !important label would vanish -
   override it back to white with matching priority. */
.section .btn-outline:hover { background: var(--primary-color); color: #ffffff !important; border-color: var(--primary-color); }

/* A standalone CTA row (.btn-group) inside a light content section sits under a
   centered .section-header / card grid, so it must be centered too - otherwise it
   packs to the start edge (right in RTL) and reads as "stuck under one card". The
   hero keeps its own left/right alignment (it is .hero, not .section). */
.section .btn-group { justify-content: center; margin-top: var(--spacing-md); }

/* Keep the mass-hub hero to a single thought (headline + one line + one CTA).
   Trim the hero top padding and headline size on phones so the CTA is reachable
   without a long scroll. Scoped to the MCP pages only. */
@media (max-width: 600px) {
    .hero { padding-top: 96px; }
    .hero h1 { font-size: 1.7rem; line-height: 1.3; }
}

/* Thin reassurance strip directly under the hero: the three "no code / no
   developers / no access" points plus the secondary link live here as a compact
   band, so the hero above stays clean and breathes. */
.mcp-hero-strip { background: #f8fafc; border-bottom: 1px solid #e2e8f0; padding: 14px var(--spacing-md); }
.mcp-hero-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 28px; }
.mcp-withouts { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 22px; margin: 0; padding: 0; }
.mcp-withouts li { color: var(--text-secondary); font-weight: 600; font-size: 0.95rem; }
.mcp-withouts li::before { content: "\2713"; color: var(--primary-color); margin-inline-end: 6px; }
.mcp-strip-link { color: var(--primary-color); font-size: 0.9rem; font-weight: 600; text-decoration: none; }
.mcp-strip-link:hover { text-decoration: underline; }
@media (max-width: 600px) {
    .mcp-hero-strip .container { flex-direction: column; gap: 10px; }
}
