/* ============================================================
   Óptica Sara — component & layout styles
   Ported from the Óptica Sara Design System (base.css + kit.css),
   prefixed `os-` to avoid collisions, and wired to core block output.
   Loads after tokens.css, on front end and in the editor.
   ============================================================ */

/* ---------- Base helpers ----------------------------------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.os-eyebrow {
	font-family: var(--font-ui);
	font-size: var(--fs-xs);
	font-weight: var(--fw-bold);
	letter-spacing: var(--tracking-eyebrow);
	text-transform: uppercase;
	color: var(--text-link);
	margin: 0 0 var(--space-3);
}
.os-eyebrow.os-eyebrow--on-navy { color: var(--teal-200); }

.os-lead {
	font-size: var(--fs-lead);
	line-height: var(--leading-relaxed);
	color: var(--text-muted);
}

/* Short teal section-heading rule (echoes the original site's <hr>). */
.os-rule {
	width: 56px;
	height: 4px;
	border: 0;
	border-radius: var(--radius-pill);
	background: var(--surface-brand);
	margin: var(--space-4) 0 var(--space-5);
}
.has-text-align-center > .os-rule,
.os-rule.aligncenter { margin-inline: auto; }

/* Accessible skip link */
.skip-link.screen-reader-text {
	position: absolute; left: -9999px; top: 0; z-index: 100;
	background: var(--navy-700); color: #fff; padding: .75rem 1.25rem;
	border-radius: 0 0 var(--radius-md) 0; font-family: var(--font-ui); font-weight: var(--fw-semibold);
}
.skip-link.screen-reader-text:focus { left: 0; }

/* ---------- Section rhythm & full-bleed layout ----------- */
.os-section { padding-block: var(--space-10); padding-inline: var(--gutter); }
.os-section--tight { padding-block: var(--space-8); }

/* Remove the editor block-gap between the top-level parts (header → main →
   footer) and between sections — each section owns its vertical rhythm via
   padding, so the header sits flush on the hero. */
.wp-site-blocks > * { margin-block-start: 0; }
.wp-site-blocks > main > * { margin-block-start: 0; }

/* Re-add the side gutter to full-bleed section content. WordPress only re-pads
   alignfull children via --wp--style--root--padding-*, which isn't reliably
   exposed here, so we pad the section wrappers directly. */
.os-hero, .os-page-header { padding-inline: var(--gutter); }

/* Focus visibility (matches DS) */
:where(a, button, input, select, textarea, .wp-block-button__link):focus-visible {
	outline: 3px solid var(--focus-ring);
	outline-offset: 2px;
	border-radius: var(--radius-xs);
}

/* ============================================================
   Buttons — theme.json styles the default core/button as a teal
   pill. Here we add the lift/shadow motion + brand variants.
   `.os-btn` mirrors the same for raw markup (header CTA, etc.).
   ============================================================ */
.wp-block-button__link,
.os-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55em;
	font-family: var(--font-ui); font-weight: var(--fw-semibold); line-height: 1;
	border-radius: var(--radius-pill); text-decoration: none; white-space: nowrap;
	border: 1.5px solid transparent;
	transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out),
		box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.os-btn { background: var(--teal-500); color: #fff; cursor: pointer; padding: .7rem 1.5rem; font-size: var(--fs-base); }
.wp-block-button__link:hover,
.os-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-brand); }
.os-btn:hover { background: var(--teal-600); }
.wp-block-button__link:active,
.os-btn:active { transform: translateY(0); box-shadow: var(--shadow-xs); }
.wp-block-button__link svg, .os-btn svg { width: 1.15em; height: 1.15em; flex: none; }

.os-btn--sm { padding: .5rem 1rem; font-size: var(--fs-sm); }
.os-btn--lg { padding: .9rem 2rem; font-size: var(--fs-body-lg); }

/* Variants as button block styles (is-style-*) and .os-btn--* */
.wp-block-button.is-style-navy-outline .wp-block-button__link,
.os-btn--secondary {
	background: transparent; color: var(--navy-600); border-color: var(--navy-600);
}
.wp-block-button.is-style-navy-outline .wp-block-button__link:hover,
.os-btn--secondary:hover { background: var(--navy-600); color: #fff; box-shadow: var(--shadow-sm); }

.wp-block-button.is-style-on-navy .wp-block-button__link,
.os-btn--on-navy {
	background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
}
.wp-block-button.is-style-on-navy .wp-block-button__link:hover,
.os-btn--on-navy:hover { background: rgba(255,255,255,.14); border-color: #fff; box-shadow: none; transform: translateY(-2px); }

.wp-block-button.is-style-ghost .wp-block-button__link,
.os-btn--ghost { background: transparent; color: var(--teal-600); }
.wp-block-button.is-style-ghost .wp-block-button__link:hover,
.os-btn--ghost:hover { background: var(--teal-50); box-shadow: none; }

.wp-block-button.is-style-promo .wp-block-button__link,
.os-btn--promo { background: var(--amber-500); color: #fff; }
.wp-block-button.is-style-promo .wp-block-button__link:hover,
.os-btn--promo:hover { background: var(--amber-600); }

.wp-block-button.is-style-whatsapp .wp-block-button__link,
.os-btn--whatsapp { background: #25D366; color: #06351c; }
.wp-block-button.is-style-whatsapp .wp-block-button__link:hover,
.os-btn--whatsapp:hover { background: #1FBE5B; box-shadow: 0 10px 26px rgba(37,211,102,.32); }

/* ---------- Badges ---------------------------------------- */
.os-badge {
	display: inline-flex; align-items: center; gap: .4em; font-family: var(--font-ui);
	font-weight: var(--fw-semibold); font-size: var(--fs-xs); line-height: 1; letter-spacing: .02em;
	padding: .4em .8em; border-radius: var(--radius-pill); background: var(--teal-50); color: var(--teal-700);
}
.os-badge--navy { background: var(--navy-50); color: var(--navy-600); }
.os-badge--promo { background: var(--amber-500); color: #fff; }
.os-badge--on-navy { background: rgba(255,255,255,.14); color: #fff; }
.os-badge svg { width: 1em; height: 1em; }

/* ---------- Cards ----------------------------------------- */
.os-card {
	display: flex; flex-direction: column; background: var(--surface-card);
	border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm); overflow: hidden; padding: var(--space-5); gap: var(--space-2);
	transition: transform var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal) var(--ease-out);
}
.os-card.is-interactive:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.os-icon-tile {
	width: 52px; height: 52px; border-radius: var(--radius-md); display: inline-flex;
	align-items: center; justify-content: center; background: var(--teal-50); color: var(--teal-600);
}
.os-icon-tile svg { width: 26px; height: 26px; }

/* ============================================================
   Section heading composed from core blocks (eyebrow/heading/
   rule/intro). The intro max-width keeps measure comfortable.
   ============================================================ */
.os-heading-cluster { margin-bottom: var(--space-6); }
.os-heading-cluster .os-eyebrow { margin: 0 0 var(--space-3); }
.os-heading-cluster :where(h2, h3) { margin: 0; }
.os-heading-cluster .os-rule { margin: var(--space-4) 0 var(--space-5); }
.os-heading-cluster .os-heading-intro { margin: 0; }
.os-heading-cluster.is-center { text-align: center; }
.os-heading-cluster.is-center .os-rule { margin-inline: auto; }
.os-heading-cluster.is-center .os-heading-intro { margin-inline: auto; }
.os-heading-intro { font-size: var(--fs-lead); line-height: var(--leading-relaxed); color: var(--text-muted); max-width: 60ch; }

/* ============================================================
   Hero
   ============================================================ */
.os-hero {
	position: relative; isolation: isolate; overflow: hidden; color: #fff;
	min-height: clamp(520px, 78vh, 760px); display: flex; align-items: center;
	background: linear-gradient(125deg, var(--navy-800), var(--teal-700) 130%);
}
.os-hero::before { /* photographic glow */
	content: ""; position: absolute; inset: 0; z-index: -2;
	background: radial-gradient(circle at 70% 30%, var(--teal-400), transparent 60%); opacity: .32; mix-blend-mode: luminosity;
}
.os-hero::after { /* legibility scrim */
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(90deg, rgba(12,27,43,.72) 0%, rgba(12,27,43,.35) 60%, transparent 100%);
}
.os-hero.has-hero-image { background-size: cover; background-position: center; }
.os-hero.has-hero-image::before { background: var(--overlay-hero); opacity: 1; mix-blend-mode: normal; }
.os-hero__mark {
	position: absolute; right: -4%; bottom: -12%; width: min(46vw, 560px); z-index: -1; opacity: .10; pointer-events: none;
}
/* 1200 column so the hero text aligns with every other section's content.
   (.os-hero is display:flex, so WP's constrained max-width doesn't apply to
   this child — we center it explicitly.) */
.os-hero__inner { width: 100%; max-width: var(--container-max); margin-inline: auto; }
.os-hero .os-hero__content { max-width: 660px; margin-inline: 0; padding-block: var(--space-9); }
.os-hero .os-badge { margin: 0 0 var(--space-4); }
.os-hero :where(h1, h2) { color: #fff; font-size: var(--fs-display); margin: 0 0 var(--space-4); }
.os-hero em, .os-hero .os-accent { font-style: normal; color: var(--teal-200); }
.os-hero__lead { font-size: var(--fs-lead); line-height: var(--leading-relaxed); color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 0 var(--space-6); }
.os-hero__actions { gap: var(--space-3); }
.os-hero__trust { display: flex; gap: var(--space-6); margin-top: var(--space-8); flex-wrap: wrap; }
.os-hero__trust .os-trust__item { display: flex; flex-direction: column; }
.os-hero__trust b { font-family: var(--font-display); font-size: var(--fs-h3); color: #fff; line-height: 1; }
.os-hero__trust span { font-size: var(--fs-sm); color: rgba(255,255,255,.78); margin-top: 4px; }

/* ============================================================
   Welcome split + feature list
   ============================================================ */
.os-feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-4); }
.os-feature-list li { display: flex; gap: var(--space-3); align-items: flex-start; }
.os-feature-list .os-fi {
	flex: none; width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--teal-50);
	color: var(--teal-600); display: inline-flex; align-items: center; justify-content: center;
}
.os-feature-list .os-fi svg { width: 20px; height: 20px; }
.os-feature-list b { font-family: var(--font-display); color: var(--text-strong); font-size: var(--fs-body-lg); display: block; }
.os-feature-list p { margin: .15rem 0 0; color: var(--text-muted); font-size: var(--fs-sm); }

/* ============================================================
   Anamnese steps
   ============================================================ */
.os-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.os-step { position: relative; }
.os-step__num { font-family: var(--font-display); font-weight: var(--fw-extra); font-size: 2.5rem; color: var(--teal-200); line-height: 1; }
.os-step__num span { color: var(--teal-500); }
.os-step h3, .os-step h4 { margin: var(--space-3) 0 var(--space-2); }
.os-step p { margin: 0; color: var(--text-muted); line-height: var(--leading-relaxed); }

/* ============================================================
   Technologies grid
   ============================================================ */
.os-tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); align-items: stretch; }
.os-tech {
	position: relative; border-radius: var(--radius-lg); padding: var(--space-6) var(--space-5);
	background: var(--surface-card); border: 1px solid var(--border-subtle); overflow: hidden; height: 100%;
	transition: transform var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal) var(--ease-out);
}
.os-tech::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--teal-500); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-normal) var(--ease-out); }
.os-tech:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.os-tech:hover::before { transform: scaleX(1); }
.os-tech__icon { width: 54px; height: 54px; border-radius: var(--radius-md); display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); color: #fff; margin-bottom: var(--space-4); }
.os-tech__icon svg { width: 28px; height: 28px; }
.os-tech h3, .os-tech h4 { margin: 0 0 var(--space-2); font-size: var(--fs-h4); }
.os-tech p { margin: 0; color: var(--text-muted); font-size: var(--fs-sm); line-height: var(--leading-normal); }

/* ============================================================
   CTA band
   ============================================================ */
.os-cta-band {
	position: relative; overflow: hidden; isolation: isolate; background: var(--navy-700); color: #fff;
	border-radius: var(--radius-2xl); padding: var(--space-9) var(--space-8); text-align: center;
}
.os-cta-band__mark { position: absolute; left: -3%; bottom: -30%; width: 340px; opacity: .08; z-index: -1; pointer-events: none; }
.os-cta-band :where(h2, h3) { color: #fff; font-size: var(--fs-h1); margin: var(--space-4) auto var(--space-3); max-width: 18ch; }
.os-cta-band p { color: rgba(255,255,255,.85); font-size: var(--fs-lead); max-width: 54ch; margin: 0 auto var(--space-6); }

/* ============================================================
   Contact
   ============================================================ */
.os-contact-rows { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-5); }
.os-contact-row { display: flex; gap: var(--space-3); align-items: flex-start; }
.os-contact-row .os-ci { flex: none; width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--navy-50); color: var(--navy-600); display: inline-flex; align-items: center; justify-content: center; }
.os-contact-row .os-ci svg { width: 20px; height: 20px; }
.os-contact-row b { font-family: var(--font-display); color: var(--text-strong); display: block; font-size: var(--fs-body-lg); }
.os-contact-row span, .os-contact-row a { color: var(--text-muted); font-size: var(--fs-base); }
.os-contact-row a:hover { color: var(--text-link); }
.os-map { border-radius: var(--radius-xl); overflow: hidden; min-height: 360px; position: relative; background: linear-gradient(135deg, var(--navy-100), var(--teal-100)); }
.os-map iframe { display: block; width: 100%; height: 100%; min-height: 360px; border: 0; }
.os-map__placeholder { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: var(--space-5); }
.os-map__pin { position: absolute; top: 42%; left: 50%; transform: translate(-50%,-50%) rotate(-45deg); width: 48px; height: 48px; border-radius: 50% 50% 50% 0; background: var(--teal-500); box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; }
.os-map__pin svg { transform: rotate(45deg); color: #fff; width: 22px; height: 22px; }

/* ============================================================
   Newsletter
   ============================================================ */
.os-newsletter { background: var(--surface-brand-soft); border-radius: var(--radius-2xl); padding: var(--space-8); }
.os-field { display: flex; flex-direction: column; gap: var(--space-2); }
.os-field__label { font-family: var(--font-ui); font-weight: var(--fw-semibold); font-size: var(--fs-sm); color: var(--text-strong); }
.os-field__control { position: relative; display: flex; align-items: center; }
.os-field__icon { position: absolute; left: .9rem; width: 1.15rem; height: 1.15rem; color: var(--text-subtle); display: inline-flex; pointer-events: none; }
.os-input {
	width: 100%; font-family: var(--font-body); font-size: var(--fs-base); color: var(--text-body);
	background: #fff; border: 1.5px solid var(--border-default); border-radius: var(--radius-md);
	padding: .8rem 1rem; transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.os-input.has-icon { padding-left: 2.6rem; }
.os-input::placeholder { color: var(--text-subtle); }
.os-input:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(0,125,171,.18); }
.os-newsletter form { display: flex; gap: var(--space-3); align-items: flex-end; flex-wrap: wrap; }
.os-newsletter form .os-field { flex: 1 1 240px; }
.os-form-note { margin: var(--space-3) 0 0; font-size: var(--fs-sm); color: var(--success); font-weight: var(--fw-semibold); }
.os-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Real "about" photo (set on the settings page) */
.os-about-photo { margin: 0; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-sm); }
.os-about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Photo placeholder (where real WP imagery drops in) */
.os-photo { position: relative; overflow: hidden; border-radius: var(--radius-xl); min-height: 380px; background: linear-gradient(135deg, var(--navy-100), var(--teal-100)); display: flex; align-items: center; justify-content: center; }
.os-photo .os-photo__tag { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); color: var(--navy-500); font-family: var(--font-ui); font-size: var(--fs-sm); font-weight: var(--fw-semibold); opacity: .8; }
.os-photo .os-photo__tag svg { width: 30px; height: 30px; }

/* ============================================================
   Header — top utility bar + sticky nav
   ============================================================ */
.os-topbar { background: var(--navy-700); color: rgba(255,255,255,.86); font-size: var(--fs-sm); }
.os-topbar a { color: inherit; }
.os-topbar a:hover { color: #fff; }
.os-topbar__in { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding-block: .55rem; flex-wrap: wrap; }
.os-topbar__group { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; }
.os-topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.os-topbar__item svg { width: 15px; height: 15px; color: var(--teal-200); }
.os-social { display: flex; gap: var(--space-2); align-items: center; }
.os-social a { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.1); transition: background var(--dur-fast) var(--ease-out); color: #fff; }
.os-social a:hover { background: var(--teal-500); }
.os-social svg { width: 15px; height: 15px; }

.os-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-subtle); }
.os-header__in { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); min-height: var(--header-height); }
.os-header__logo { display: inline-flex; align-items: center; }
.os-header__logo img { height: 52px; width: auto; display: block; }
.os-header .wp-block-site-logo img { height: 52px; width: auto; }
.os-header .wp-block-navigation { font-family: var(--font-ui); font-weight: var(--fw-semibold); font-size: var(--fs-sm); }
.os-header .wp-block-navigation a { color: var(--navy-600); }
.os-header .wp-block-navigation .wp-block-navigation-item__content { padding-block: .4rem; position: relative; }
.os-header .wp-block-navigation a:hover { color: var(--teal-600); }
.os-header .wp-block-navigation .current-menu-item > a { color: var(--teal-600); }

/* ============================================================
   Footer
   ============================================================ */
.os-footer { background: var(--navy-800); color: rgba(255,255,255,.74); }
.os-footer a { color: rgba(255,255,255,.74); }
.os-footer a:hover { color: #fff; }
.os-footer :where(h2, h3, h4, h5) { color: #fff; font-family: var(--font-display); font-size: var(--fs-h5); }
.os-footer .os-footer__brand img, .os-footer .wp-block-site-logo img { height: 48px; width: auto; }
.os-footer__about { max-width: 34ch; line-height: var(--leading-relaxed); font-size: var(--fs-sm); }
.os-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.os-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: var(--space-5); margin-top: var(--space-7); display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; font-size: var(--fs-xs); color: rgba(255,255,255,.5); }
.os-footer .os-social a { background: rgba(255,255,255,.1); }
.os-footer .os-social a { width: 38px; height: 38px; }
.os-footer .os-social svg { width: 18px; height: 18px; }

/* ============================================================
   Floating WhatsApp button (sitewide)
   ============================================================ */
.os-whatsapp-float {
	position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 60;
	width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
	display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
	transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.os-whatsapp-float:hover { transform: translateY(-3px) scale(1.04); color: #fff; }
.os-whatsapp-float svg { width: 30px; height: 30px; }

/* ============================================================
   Promoções
   ============================================================ */
.os-promo-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--amber-300); background: var(--white); box-shadow: var(--shadow-sm); transition: transform var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal) var(--ease-out); height: 100%; }
.os-promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.os-promo-card .os-promo-card__flag { position: absolute; top: var(--space-4); left: var(--space-4); z-index: 2; }
.os-promo-card .wp-block-post-featured-image, .os-promo-card .os-promo-card__media { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--amber-100), var(--amber-300)); }
.os-promo-card .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.os-promo-card__body { padding: var(--space-5); }

/* ============================================================
   Blog / archive / page chrome
   ============================================================ */
.os-page-header { background: var(--surface-subtle); border-bottom: 1px solid var(--border-subtle); }
.os-page-header .os-eyebrow { margin-bottom: var(--space-2); }
.os-blog-card { display: flex; flex-direction: column; background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; height: 100%; transition: transform var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal) var(--ease-out); }
.os-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.os-blog-card .wp-block-post-featured-image { margin: 0; aspect-ratio: 16 / 10; }
.os-blog-card .wp-block-post-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.os-blog-card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }
.os-blog-card__body .wp-block-post-title { margin: 0; font-size: var(--fs-h4); }
.os-post-meta { color: var(--text-muted); font-size: var(--fs-sm); }
.os-prose :where(h2, h3) { margin-top: var(--space-7); }
.os-prose { font-size: var(--fs-body-lg); line-height: var(--leading-relaxed); }

/* ============================================================
   Generic inline icon helper
   ============================================================ */
.os-ico { display: inline-flex; vertical-align: middle; }
.os-ico svg { width: 1.15em; height: 1.15em; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
	.os-topbar { display: none; }
	.os-hero__trust { gap: var(--space-5); }
	.os-steps { grid-template-columns: 1fr; }
	.os-tech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.os-tech-grid { grid-template-columns: 1fr; }
}
