/* theme.css */
:root {
    --bg: #ffffff;
    --bg-soft: #f7fbfc;
    --panel: rgba(255, 255, 255, 0.9);
    --panel-strong: rgba(244, 250, 252, 0.98);
    --text: #20303a;
    --muted: #627481;
    --line: #dde7eb;
    --gold: #2f6f8f;
    --gold-soft: #5b87a8;
    --gold-deep: #13344a;
    --danger: #b04343;
    --warning: #c78455;
    --success: #2f8b57;
    --shadow: 0 20px 48px rgba(18, 38, 52, 0.08);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
    --body-font: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    --heading-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --back-to-top-border: rgba(47, 111, 143, 0.34);
    --back-to-top-accent: var(--gold);
    --back-to-top-track: rgba(47, 111, 143, 0.14);
    --back-to-top-panel-bg: rgba(255, 255, 255, 0.94);
    --back-to-top-panel-border: rgba(221, 231, 235, 0.95);
    --back-to-top-hover: rgba(47, 111, 143, 0.16);
}

/* overrides.css */
/* Client overrides layer (Profession de santé). Keep this file focused on exceptions only. */

/* styles.css */
/* Legacy stylesheet (transition): tokens moved to theme.css, shared behavior moved to core-*.css. */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(47, 111, 143, 0.12), transparent 28%),
        radial-gradient(circle at 14% 20%, rgba(231, 132, 107, 0.08), transparent 18%),
        linear-gradient(180deg, #fcfeff 0%, #f4fafb 45%, #ffffff 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;

    height: auto;
}

button,
input,

select,
textarea {
    font: inherit;

}

button {
    cursor: pointer;
}

p,
ul,ol {
    margin: 0 0 1rem;
}


ul,
ol {
    padding-left: 1.2rem;
}


h1,h2,h3,h4 {
    margin: 0 0 1rem;

    line-height: 1.06;
    font-family: var(--heading-font);
    letter-spacing: -0.03em;
    color: var(--gold-deep);
}


h1 {
    font-size: clamp(2.85rem, 5vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 3.1vw, 3.2rem);

}

h3 {

    font-size: 1.4rem;
}

.container {

    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}


.section {
    position: relative;
    padding: 5.5rem 0;
}

.section--dark {

    background: linear-gradient(180deg, rgba(238, 246, 248, 0.92), rgba(255, 255, 255, 0.88));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

}

.section--compact {

    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}


.skip-link,
.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.skip-link:focus {
    clip: auto;
    width: auto;

    height: auto;
    margin: 0;
    left: 1rem;
    top: 1rem;
    z-index: 999;
    padding: 0.75rem 1rem;
    background: var(--gold-deep);
    color: #ffffff;
    border-radius: 0.5rem;
    white-space: normal;
}


:focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 3px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;

    color: var(--gold);
}

.eyebrow::before {

    content: "";
    width: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0.8rem 1.35rem;
    border: 1px solid rgba(47, 111, 143, 0.28);
    border-radius: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(180deg, #4a86a6, var(--gold));
    box-shadow: 0 14px 28px rgba(47, 111, 143, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 36px rgba(47, 111, 143, 0.24);
}

.btn--ghost {
    color: var(--gold-deep);
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(47, 111, 143, 0.16);
    box-shadow: 0 10px 24px rgba(18, 38, 52, 0.08);
}

.btn--ghost:hover {
    background: #ffffff;
}

.btn--sm {
    min-height: 2.8rem;
    padding: 0.55rem 1rem;
    font-size: 0.95rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(221, 231, 235, 0.92);
    box-shadow: 0 6px 24px rgba(18, 38, 52, 0.04);
}

.topbar {
    border-bottom: 1px solid rgba(221, 231, 235, 0.85);
    font-size: 0.92rem;
    color: var(--muted);
    background: rgba(247, 251, 252, 0.94);
}

.topbar__inner,
.nav-wrap,
.trust-strip__grid,
.footer-bottom,
.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar__inner {
    min-height: 2.75rem;
}

.topbar__note {
    margin: 0;
}

.topbar__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar__actions a {
    color: var(--gold-deep);
}

.nav-wrap {
    min-height: 5.75rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
}

.brand img {
    width: 8rem;
    height: 5rem;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
    gap: 0.3rem;
}

.brand__text strong,
.brand__text span {
    letter-spacing: 0.01em;
}

.brand__text strong {
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--gold-deep);
}

.brand__text span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav a {
    color: var(--muted);
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--gold-deep);
}

.site-nav a.is-active {
    position: relative;
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.55rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(47, 111, 143, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 22px rgba(18, 38, 52, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 1.18rem;
    height: 2.5px;
    background: var(--gold-deep);
    margin: 0.15rem auto;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.nav-toggle:hover {
    transform: translateY(-1px);
    background: #ffffff;
}

.nav-toggle.is-open {
    border-color: rgba(47, 111, 143, 0.5);
    background: rgba(238, 246, 248, 0.98);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero__ambient,
.page-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 20%, rgba(47, 111, 143, 0.18), transparent 24%),
        radial-gradient(circle at 90% 10%, rgba(231, 132, 107, 0.12), transparent 12%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 42%, rgba(238, 246, 248, 0.76) 100%);
    opacity: 1;
}

.hero__grid,
.split,
.contact-layout,
.footer-grid,
.grid-2 {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
}

.hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.8fr);
    align-items: center;
}

.hero__content {
    max-width: 42rem;
}

.hero__lead {
    font-size: clamp(1.18rem, 1.9vw, 1.45rem);
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero__text {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 38rem;
}

.hero__actions,
.section-actions,
.cta-band__actions,
.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__actions {
    margin-top: 2rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    padding: 0;
    margin: 1.6rem 0 0;
    list-style: none;
}

.hero-points li,
.bullet-list li,
.check-list li {
    position: relative;
}

.hero-points li {
    padding: 0.7rem 1rem 0.7rem 2.3rem;
    border: 1px solid rgba(221, 231, 235, 0.96);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--gold-deep);
    box-shadow: 0 10px 24px rgba(18, 38, 52, 0.05);
}

.hero-points li::before,
.check-list li::before,
.bullet-list li::before {
    content: "";
    position: absolute;
    inset-block-start: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    background: radial-gradient(circle at center, var(--gold-soft) 0%, var(--gold) 55%, transparent 56%);
    box-shadow: 0 0 0 4px rgba(211, 166, 70, 0.12);
}

.hero-points li::before {
    left: 0.95rem;
}

.hero__visual {
    display: flex;
    justify-content: flex-end;
}

.hero-card,
.frame,
.service-card,
.info-panel,
.contact-card,
.contact-form-block,
.service-detail,
.prose,
.faq-item,
.trust-strip article {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(221, 231, 235, 0.96);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,251,252,0.92));
    box-shadow: var(--shadow);
}

.hero-card::after,
.frame::after,
.service-card::after,
.info-panel::after,
.contact-card::after,
.contact-form-block::after,
.service-detail::after,
.prose::after,
.faq-item::after,
.trust-strip article::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(47, 111, 143, 0.18), transparent 35%, transparent 65%, rgba(231, 132, 107, 0.12));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.hero-card {
    max-width: 34rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(238,246,248,0.9));
}

.hero-card--portrait img {
    width: 100%;
    max-height: 43rem;
    object-fit: cover;
    object-position: center top;
}

.trust-strip {
    padding: 0 0 2rem;
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip article {
    padding: 1.35rem 1.2rem;
    min-height: 100%;
}

.trust-strip strong {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--gold-deep);
    font-size: 1.02rem;
}

.trust-strip p,
.service-card p,
.info-panel p,
.contact-card p,
.service-detail p,
.prose p,
.page-hero p,
.footer-text,
.footer-note,
.faq-item p,
.contact-form-block p,
.step p {
    color: var(--muted);
}

.footer-note {
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.footer-note-link {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.footer-note-link img {
    display: block;
    width: auto;
}

.split {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    align-items: start;
}

.split--reverse {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

.split--reverse > :first-child {
    order: 2;
}

.split--reverse > :last-child {
    order: 1;
}

.split--center {
    align-items: center;
}

.frame,
.frame img {
    width: 100%;
}

.frame {
    padding: 0.65rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,246,248,0.94));
}

.frame img {
    border-radius: calc(var(--radius) - 8px);
    object-fit: cover;
}

.frame--accent::before,
.contact-form-block::before,
.prose::before,
.info-panel::before,
.service-card::before,
.service-detail::before,
.contact-card::before,
.faq-item::before {
    content: "";
    position: absolute;
    inset: auto -2rem -4rem auto;
    width: 10rem;
    height: 10rem;
    background: radial-gradient(circle, rgba(47, 111, 143, 0.12), transparent 70%);
    pointer-events: none;
}

.check-list,
.bullet-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
}

.check-list li,
.bullet-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.75rem;
}

.check-list li::before,
.bullet-list li::before {
    left: 0;
}

.section-heading {
    max-width: 44rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-heading p,
.section-heading--left p {
    color: var(--muted);
}

.section-heading--left {
    margin-left: 0;
    text-align: left;
}

.cards {
    display: grid;
    gap: 1.4rem;
}

.cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    padding: 1.6rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.info-panel:hover,
.contact-card:hover,
.service-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(18, 38, 52, 0.12);
}

.service-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 111, 143, 0.16);
    color: var(--gold);
    background: rgba(47, 111, 143, 0.08);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.steps {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.step {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(221, 231, 235, 0.95);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 22px rgba(18, 38, 52, 0.05);
}

.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(47, 111, 143, 0.1);
    color: var(--gold-deep);
    font-weight: 800;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-panel,
.contact-card {
    padding: 1.65rem;
}

.hero-section--page .hero-copy {
    align-self: center;
}
.hero-visual-card--page {
    display: flex;
    align-items: stretch;
    min-height: 100%;
}
.page-hero-panel {
    display: grid;
    gap: 1rem;
    width: 100%;
    padding: 1.9rem;
    align-content: center;
    border-radius: calc(var(--radius) - 0.25rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 249, 0.96));
    border: 1px solid rgba(221, 231, 235, 0.96);
    box-shadow: 0 18px 30px rgba(18, 38, 52, 0.12);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 3.5rem;
    border-bottom: 1px solid var(--line);
}

.page-hero--small {
    padding-bottom: 2.8rem;
}

.info-card--link {
    display: grid;
    align-content: start;
}

.card-link {
    margin-top: 1rem;
    color: var(--gold);
    font-weight: 800;
}

.statement-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding-left: 1rem;
    color: var(--text);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 54rem;
}

.editorial-meta--stacked {
    display: grid;
    gap: 0.6rem;
}

.breadcrumbs {
    border-bottom: 1px solid rgba(221, 231, 235, 0.9);
    background: rgba(255, 255, 255, 0.88);
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.breadcrumbs li {
    color: var(--muted);
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.75rem;
    color: rgba(98, 116, 129, 0.4);
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.final-contact-section {
    padding-top: 1.5rem;
}

.final-contact-grid {
    align-items: stretch;
}

.final-contact-copy {
    align-self: center;
}

.hero-benefits--stacked {
    margin-top: 1.5rem;
}

.contact-form-block--mockup {
    border: 1px solid rgba(221, 231, 235, 0.96);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 252, 0.94));
    box-shadow: var(--shadow);
}

.contact-form--wizard {
    position: relative;
}

.wizard-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
    margin: 0 0 1.2rem;
}

.wizard-progress__dot {
    height: 0.34rem;
    border-radius: 999px;
    background: rgba(28, 69, 96, 0.12);
    transition: background 0.2s ease;
}

.wizard-progress__dot.is-active {
    background: linear-gradient(90deg, var(--gold-soft), var(--gold));
}

.wizard-step {
    animation: wizard-slide-in 220ms ease both;
}

@keyframes wizard-slide-in {
    from {
        opacity: 0;
        transform: translateX(14px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wizard-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.8rem;
}

.wizard-service-option {
    display: grid;
    grid-template-columns: 2rem 1fr;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 3.3rem;
    padding: 0.72rem 0.8rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(29, 62, 84, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 251, 0.96));
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.wizard-service-option:hover {
    border-color: rgba(212, 136, 82, 0.4);
    background: linear-gradient(180deg, rgba(255, 252, 249, 0.98), rgba(252, 244, 237, 0.96));
    transform: translateY(-1px);
}

.wizard-service-option.is-selected {
    border-color: rgba(212, 136, 82, 0.55);
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(253, 241, 232, 0.96));
    box-shadow: 0 0 0 4px rgba(212, 136, 82, 0.08);
}

.wizard-service-option__icon {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-soft);
}

.wizard-service-option__icon svg {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
}

.wizard-actions {
    margin-top: 1rem;
}

.wizard-actions .btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.footer-legal-bar--mockup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    /*padding-top: 1.4rem;*/
    border-top: 1px solid rgba(221, 231, 235, 0.96);
}

.footer-legal-copy {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-bar--mockup a {
    color: var(--text);
    font-weight: 600;
}

.footer-legal-bar--mockup a:hover {
    color: var(--gold-deep);
}

@media (prefers-reduced-motion: reduce) {
    .page-transition-layer {
        transition: none;
    }

    [data-popup] {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }

    [data-animated-popups].is-visible .floating-note-top,
    [data-animated-popups].is-visible .floating-note-bottom,
    [data-animated-popups].is-visible .overlay-panel,
    [data-animated-popups].is-visible .page-hero-panel {
        animation: none;
    }
}

.blog-hero__lead {
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    color: var(--muted);
    max-width: 46rem;
}

.hub-hero__lead {
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    color: var(--muted);
    max-width: 52rem;
}

.hub-hero__actions {
    margin-top: 1.9rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    color: var(--muted);
}

.hub-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    color: var(--muted);
}

.blog-pill {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 111, 143, 0.18);
    background: rgba(47, 111, 143, 0.08);
    color: var(--gold-deep);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
    gap: 2rem;
    align-items: start;
}

.sidebar-intro-panel {
    min-height: 100%;
}

.blog-panel {
    padding: 1.6rem;
}

.article-rich {
    padding: 2rem;
}

.article-rich > :last-child {
    margin-bottom: 0;
}

.article-rich h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    margin-top: 2.2rem;
    margin-bottom: 0.9rem;
}

.article-rich h3 {
    margin-top: 1.6rem;
}

.article-rich p,
.article-rich li {
    font-size: 1.03rem;
}

.article-rich ul,
.article-rich ol {
    margin: 0 0 1.2rem;
    padding-left: 1.3rem;
}

.article-rich blockquote {
    margin: 1.4rem 0;
    padding: 1rem 1.2rem;
    border-left: 3px solid #e7846b;
    background: rgba(238, 246, 248, 0.94);
    color: var(--muted);
}

.blog-links {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.blog-links li + li {
    margin-top: 0.8rem;
}

.blog-links a {
    color: var(--gold-deep);
}

.blog-links a:hover {
    color: var(--gold);
}

.hub-cards .service-card h3,
.hub-links-grid .service-card h3 {
    margin-bottom: 0.65rem;
}

.hub-cards .service-card p + p {
    margin-top: 0.9rem;
}

.hub-card__content p {
    margin: 0;
}

.hub-card__content p + p,
.hub-card__content ul {
    margin-top: 0.75rem;
}

.services-stack {
    display: grid;
    gap: 1.2rem;
}

.service-detail {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 2rem;
    padding: 1.7rem;
}

.service-detail ul {
    margin: 0;
    padding-left: 1rem;
    color: var(--muted);
}

.service-detail li + li {
    margin-top: 0.45rem;
}

.faq-list,
.faq-page {
    display: grid;
    gap: 1rem;
}

.faq-list details,
.faq-page details {
    padding: 0;
}

.faq-item,
.faq-list details {
    padding: 1.25rem 1.35rem;
}

summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 0.2rem 2.5rem 0.25rem 0;
    position: relative;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

details[open] summary::after {
    content: "−";
}

details[open] p {
    margin-top: 0.85rem;
}

.faq-item > div {
    margin-top: 0.9rem;
    padding: 0.95rem 1rem;
    border-radius: 0.9rem;
    background: rgba(247, 251, 252, 0.96);
    border: 1px solid rgba(221, 231, 235, 0.95);
}

.faq-item > div p:last-child {
    margin-bottom: 0;
}

.cta-band {
    padding: 3.25rem 0 5.5rem;
}

.cta-band__inner {
    padding: 1.8rem 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(221, 231, 235, 0.95);
    background:
        radial-gradient(circle at top right, rgba(47, 111, 143, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,246,248,0.94));
    box-shadow: var(--shadow);
}

.hub-cards + .section-actions {
    margin-top: 1.7rem;
}

.mobile-cta-bar {
    display: none;
}

.consent-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    max-width: 760px;
    margin: 0 auto;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(221, 231, 235, 0.98);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 30px rgba(18, 38, 52, 0.14);
}

.consent-banner p {
    margin-bottom: 0.9rem;
    color: var(--muted);
}

.consent-banner__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.consent-banner__link {
    color: var(--gold);
    font-weight: 700;
}

.consent-banner.is-visible ~ .mobile-cta-bar {
    display: none;
}

.contact-layout {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.12fr);
    align-items: start;
}

.contact-panel {
    display: grid;
    gap: 1rem;
}

.contact-form-block {
    padding: 1.7rem;
}

.form-heading {
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.field--full {
    grid-column: 1 / -1;
}

.field--hidden {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

label {
    font-weight: 700;
    color: var(--gold-deep);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    color: var(--gold-deep);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(221, 231, 235, 0.98);
    border-radius: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position: calc(100% - 1.1rem) calc(50% - 2px), calc(100% - 0.8rem) calc(50% - 2px);
    background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
    background-repeat: no-repeat;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(47, 111, 143, 0.42);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(47, 111, 143, 0.08);
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 10rem;
}

.form-note {
    margin: 0;
    font-size: 0.93rem;
    color: var(--muted);
}

.alert {
    margin-bottom: 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid transparent;
}

.alert p {
    margin: 0;
}

.alert--success {
    background: rgba(47, 139, 87, 0.14);
    border-color: rgba(47, 139, 87, 0.35);
}

.alert--danger {
    background: rgba(176, 67, 67, 0.14);
    border-color: rgba(176, 67, 67, 0.4);
}

.alert--warning {
    background: rgba(182, 139, 47, 0.14);
    border-color: rgba(182, 139, 47, 0.35);
}

.legal-section {
    padding-top: 4rem;
}

.prose {
    padding: 2rem;
    max-width: 900px;
}

.prose h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose a,
.footer-links a,
.contact-card a,
.topbar a {
    color: var(--gold);
}

.site-footer {
    border-top: 1px solid rgba(221, 231, 235, 0.96);
    padding: 3.2rem 0 1.4rem;
    background: linear-gradient(180deg, #f3f9fb 0%, #ecf5f8 100%);
}

.footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.9fr 0.8fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 8rem;
    height: 5rem;
}

.footer-title {
    font-size: 1.05rem;
    margin-bottom: 0.95rem;
    font-family: var(--body-font);
    letter-spacing: 0.02em;
    color: var(--gold-deep);
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-bottom {
    padding-top: 1.4rem;
    border-top: 1px solid rgba(221, 231, 235, 0.96);
    color: var(--muted);
    font-size: 0.94rem;
}

.footer-bottom p {
    margin: 0;
}

.site-bg {
    position: fixed;
    inset: auto;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(10px);
    z-index: -1;
}

.site-bg-one {
    width: 30rem;
    height: 30rem;
    top: -8rem;
    right: -8rem;
    background: radial-gradient(circle, rgba(91, 135, 168, 0.22), transparent 68%);
}

.site-bg-two {
    width: 24rem;
    height: 24rem;
    left: -7rem;
    top: 22rem;
    background: radial-gradient(circle, rgba(231, 132, 107, 0.12), transparent 70%);
}

.page-shell {
    overflow-x: clip;
}

.page-transition-layer {
    position: fixed;
    inset: 0;
    z-index: 120;
    pointer-events: none;
    opacity: 0;
    transform: scaleY(0.985);
    transform-origin: top center;
    background:
        radial-gradient(circle at 18% 18%, rgba(231, 132, 107, 0.16), transparent 18%),
        radial-gradient(circle at 82% 14%, rgba(47, 111, 143, 0.22), transparent 28%),
        linear-gradient(180deg, rgba(252, 254, 255, 0.96), rgba(239, 247, 249, 0.98));
    transition: opacity 0.36s cubic-bezier(0.23, 1, 0.32, 1), transform 0.36s cubic-bezier(0.23, 1, 0.32, 1);
}

.page-transition-layer.is-active {
    opacity: 1;
    transform: scaleY(1);
}

.is-page-transitioning {
    cursor: progress;
}

.header-shell,
.hero-grid,
.split-grid,
.accompaniment-grid,
.reassurance-grid,
.final-cta-card,
.faq-shell,
.targeted-strip {
    display: grid;
    gap: 2rem;
}

.header-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    min-height: 6rem;
}

.header-shell > .brand {
    min-width: 0;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.24rem;
    line-height: 1.08;
}

.brand-copy strong {
    font-size: 1.28rem;
    color: var(--gold-deep);
}

.brand-copy em {
    font-style: normal;
    color: var(--muted);
    font-size: 0.95rem;
}

.primary-nav,
.header-actions,
.hero-actions,
.final-cta-actions,
.editorial-meta,
.footer-bottom--mockup {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-nav {
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(0.85rem, 1vw, 1.3rem);
}

.header-actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.hero-actions--compact {
    margin-top: 1.25rem;
}

.primary-nav a,
.header-link {
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
}

.primary-nav a:hover,
.header-link:hover {
    color: var(--gold-deep);
}

.mobile-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(47, 111, 143, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 22px rgba(18, 38, 52, 0.08);
}

.mobile-toggle span:not(.sr-only) {
    display: block;
    width: 1.15rem;
    height: 2px;
    margin: 0.16rem auto;
    background: var(--gold-deep);
    border-radius: 999px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.35rem;
    padding: 0.82rem 1.3rem;
    border-radius: 1rem;
    border: 1px solid rgba(47, 111, 143, 0.18);
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(180deg, #4a86a6, var(--gold));
    box-shadow: 0 14px 28px rgba(47, 111, 143, 0.2);
}

.button-secondary,
.button-ghost {
    color: var(--gold-deep);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(18, 38, 52, 0.08);
}

.button-on-dark {
    background: linear-gradient(180deg, #ffffff, #edf5f8);
    color: var(--gold-deep);
}

.button-small {
    min-height: 2.85rem;
    padding: 0.6rem 1rem;
}

.hero-section {
    position: relative;
    padding: 5rem 0 3.5rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
    align-items: center;
}

.hero-copy {
    max-width: 44rem;
}

.hero-benefits,
.statement-list,
.overlay-panel ul {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
}

.hero-benefits {
    display: grid;
    gap: 0.75rem;
}

.hero-benefits li,
.statement-list li,
.overlay-panel li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--muted);
}

.hero-benefits li::before,
.statement-list li::before,
.overlay-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(47, 111, 143, 0.08);
}

.hero-proof-row,
.profession-pills,
.reassurance-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-proof-row {
    margin-top: 1.6rem;
}

.hero-proof-row span,
.profession-pills span,
.profession-pills a,
.statement-badge,
.overlay-badge,
.profession-tag,
.editorial-tag,
.testimonial-badge {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-proof-row span,
.profession-pills span,
.profession-pills a,
.profession-tag,
.editorial-tag {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(221, 231, 235, 0.96);
    color: var(--gold-deep);
}

.profession-pills a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-card,
.statement-card,
.info-card,
.illustration-card,
.overlay-panel,
.profession-card,
.timeline-step,
.editorial-card,
.testimonial-card,
.final-cta-card,
.targeted-strip {
    border: 1px solid rgba(221, 231, 235, 0.96);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 252, 0.94));
    box-shadow: var(--shadow);
}

.hero-visual-card,
.illustration-card,
.profession-card,
.editorial-card {
    overflow: hidden;
}

.hero-visual-card {
    position: relative;
    padding: 1rem;
}

.floating-note {
    position: absolute;
    z-index: 2;
    max-width: 13rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 28px rgba(18, 38, 52, 0.12);
}

[data-popup] {
    opacity: 0;
    transform: translate3d(0, 1.25rem, 0) scale(0.96);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

[data-animated-popups].is-visible [data-popup] {
    opacity: 1;
}

[data-animated-popups].is-visible .floating-note-top,
[data-animated-popups].is-visible .page-hero-panel {
    transform: translate3d(0, 0, 0) scale(1);
    animation: popupFloatGentle 7.2s ease-in-out 1s infinite;
}

[data-animated-popups].is-visible .floating-note-bottom {
    transform: translate3d(0, 0, 0) scale(1);
    animation: popupFloatGentleAlt 8.4s ease-in-out 1.3s infinite;
}

[data-animated-popups].is-visible .overlay-panel {
    transform: translate3d(0, 0, 0) scale(1);
    animation: popupFloatGentle 7.8s ease-in-out 1.1s infinite;
}

.floating-note small {
    display: block;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.floating-note strong {
    color: var(--gold-deep);
}

.floating-note-top {
    left: 1.25rem;
    top: 1.25rem;
}

.floating-note-bottom {
    right: 1.25rem;
    bottom: 1.25rem;
}

@keyframes popupFloatGentle {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -0.45rem, 0) scale(1.01);
    }
}

@keyframes popupFloatGentleAlt {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0.1rem, -0.35rem, 0) scale(1.015);
    }
}

.section-soft {
    background: linear-gradient(180deg, rgba(247, 251, 252, 0.95), rgba(255, 255, 255, 0.94));
}

.section-tight {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section-tinted {
    background: linear-gradient(180deg, rgba(238, 246, 248, 0.95), rgba(255, 255, 255, 0.92));
}

.section-kicker,
.section-kicker-light {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-kicker-light {
    color: rgba(255, 255, 255, 0.84);
}

.targeted-strip,
.split-grid,
.accompaniment-grid,
.reassurance-grid,
.final-cta-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.targeted-strip,
.statement-card,
.overlay-panel,
.testimonial-card,
.final-cta-card {
    padding: 1.8rem;
}

.section-copy p + p,
.final-cta-card p + p {
    margin-top: 1rem;
}

.statement-card-top,
.editorial-copy {
    margin-bottom: 1rem;
}

.protection-grid,
.profession-grid,
.editorial-grid,
.timeline {
    display: grid;
    gap: 1.3rem;
}

.protection-grid,
.profession-grid,
.editorial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.timeline-step {
    padding: 1.5rem;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.card-icon svg {
    width: 1.85rem;
    height: 1.85rem;
}

.icon-blue {
    background: rgba(47, 111, 143, 0.1);
    color: var(--gold);
}

.icon-mint {
    background: rgba(134, 185, 166, 0.16);
    color: #4f8c76;
}

.icon-peach {
    background: rgba(231, 132, 107, 0.14);
    color: #cd6f57;
}

.section-transition,
.method-note,
.section-closing {
    margin-top: 1.5rem;
    color: var(--muted);
    font-weight: 600;
}

.mini-benefits,
.reassurance-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.6rem;
}

.mini-benefits article,
.reassurance-points article {
    padding: 1.2rem 1.3rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(221, 231, 235, 0.92);
}

.visual-stack {
    position: relative;
}

.overlay-panel {
    position: absolute;
    right: 1rem;
    bottom: -1.5rem;
    max-width: 19rem;
}

.profession-content,
.editorial-copy {
    padding: 1.35rem 1.35rem 1.5rem;
}

.profession-content a,
.editorial-meta a {
    color: var(--gold);
    font-weight: 800;
}

.section-heading-centered,
.faq-shell .section-heading {
    text-align: center;
}

.timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 2rem;
}

.timeline-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(47, 111, 143, 0.1);
    color: var(--gold-deep);
    font-weight: 800;
}

.editorial-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.8rem;
}

.testimonial-badge {
    color: var(--gold-deep);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(221, 231, 235, 0.92);
}

.testimonial-card blockquote {
    margin: 1rem 0;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--gold-deep);
}

.testimonial-signature {
    margin-top: 1rem;
}

.testimonial-signature span {
    display: block;
    color: var(--muted);
}

.faq-section .faq-list {
    gap: 1rem;
}

.faq-shell {
    gap: 2rem;
}

.final-cta-section {
    padding-top: 1.5rem;
    padding-bottom: 5rem;
}

.final-cta-card {
    color: #ffffff;
    background: linear-gradient(135deg, var(--gold-deep), #24485f 55%, #326f8e 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

.final-cta-card h2,
.final-cta-card p {
    color: #ffffff;
}

.footer-grid--mockup {
    grid-template-columns: 1.4fr 0.85fr 0.85fr 0.85fr;
}

.footer-grid--mockup h3 {
    font-size: 1.05rem;
    font-family: var(--body-font);
    margin-bottom: 0.85rem;
}

.footer-grid--mockup ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-grid--mockup li + li {
    margin-top: 0.55rem;
}

@media (max-width: 1100px) {
    .hero-grid,
    .split-grid,
    .accompaniment-grid,
    .reassurance-grid,
    .final-cta-card,
    .targeted-strip,
    .protection-grid,
    .profession-grid,
    .editorial-grid,
    .timeline,
    .footer-grid--mockup {
        grid-template-columns: 1fr;
    }

    .overlay-panel {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: none;
        margin-top: 1rem;
    }
}

@media (max-width: 1200px) {
    .page-shell--mockup .header-shell {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.85rem;
        min-height: 4.9rem;
        padding: 0.45rem 0;
    }

    .page-shell--mockup .brand-copy strong {
        font-size: 1.16rem;
    }

    .page-shell--mockup .brand-copy em {
        display: none;
    }

    .page-shell--mockup .mobile-toggle {
        display: inline-block;
    }

    .page-shell--mockup .primary-nav,
    .page-shell--mockup .header-actions {
        display: none;
    }

    .page-shell--mockup .site-header.is-open .primary-nav,
    .page-shell--mockup .site-header.is-open .header-actions {
        display: flex;
        grid-column: 1 / -1;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(221, 231, 235, 0.96);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow);
        padding: 0.8rem;
    }

    .page-shell--mockup .site-header.is-open .primary-nav {
        margin-top: 0.3rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
    }

    .page-shell--mockup .site-header.is-open .primary-nav a {
        display: block;
        width: 100%;
        padding: 0.68rem 0.8rem;
        border-radius: 0.72rem;
    }

    .page-shell--mockup .site-header.is-open .header-actions {
        margin-top: 0.55rem;
        flex-direction: column;
        align-items: stretch;
    }

    .page-shell--mockup .site-header.is-open .header-actions .button {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .hero__grid,
    .split,
    .contact-layout,
    .footer-grid,
    .grid-2,
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .split--reverse > :first-child,
    .split--reverse > :last-child {
        order: initial;
    }

    .trust-strip__grid,
    .cards--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        gap: 2rem;
    }

    .hero__visual {
        justify-content: center;
    }

    .hero-card {
        max-width: 28rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 900px) {
    .brand__text strong {
        font-size: 1.3rem;
    }

    .brand__text span {
        font-size: 0.92rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.65rem);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(221, 231, 235, 0.98);
        box-shadow: var(--shadow);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        width: 100%;
    }

    .site-nav .btn {
        width: 100%;
    }

    .topbar__inner,
    .nav-wrap,
    .cta-band__inner,
    .footer-bottom,
    .footer-legal-bar--mockup {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }

    .hero {
        padding-top: 4.5rem;
    }

    .page-hero {
        padding-top: 4rem;
    }

    .breadcrumbs ol,
    .blog-meta,
    .hub-meta {
        gap: 0.6rem;
    }

    .wizard-service-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {
    .section {
        padding: 4rem 0;
    }

    .topbar {
        display: none;
    }

    .brand img {
        width: 6rem;
        height: 4rem;
    }

    .brand__text strong {
        font-size: 1.1rem;
    }

    .trust-strip__grid,
    .cards--3,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-points,
    .hero__actions,
    .section-actions,
    .cta-band__actions,
    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .btn,
    .section-actions .btn,
    .cta-band__actions .btn,
    .form-actions .btn {
        width: 100%;
    }

    .contact-form-block,
    .prose,
    .cta-band__inner,
    .consent-banner,
    .service-card,
    .info-panel,
    .contact-card,
    .service-detail {
        padding: 1.35rem;
    }

    body {
        padding-bottom: calc(5.7rem + env(safe-area-inset-bottom, 0px));
    }

    .mobile-cta-bar {
        position: fixed;
        left: 0.7rem;
        right: 0.7rem;
        bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
        z-index: 65;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        padding: 0.6rem;
        border: 1px solid rgba(221, 231, 235, 0.98);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
        box-shadow: 0 16px 30px rgba(18, 38, 52, 0.14);
    }

    .mobile-cta-bar .btn {
        min-height: 2.9rem;
        font-size: 0.93rem;
        padding: 0.62rem 0.85rem;
    }

    .mobile-cta-bar .btn--ghost {
        background: rgba(255, 255, 255, 0.98);
    }

    .consent-banner {
        left: 0.7rem;
        right: 0.7rem;
        bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
    }

    .consent-banner__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .consent-banner__actions .btn {
        width: 100%;
    }
}
