/*
Theme Name: OPTIMUM Pflegeberatung
Theme URI: https://optimum-pflege.de
Description: Ein modernes WordPress Block-Theme fuer die OPTIMUM Pflegeberatung.
Author: OPTIMUM Pflegeberatung
Version: 1.1.0
Text Domain: optimum-pflege
*/

:root {
    --op-base: #0f172a;
    --op-ink: #182337;
    --op-muted: #607086;
    --op-line: #dce5ee;
    --op-soft: #f5f8fb;
    --op-red: #e21e26;
    --op-orange: #f39200;
    --op-yellow: #ffd100;
    --op-green: #009640;
    --op-cyan: #00aeef;
    --op-blue: #0054a6;
    --op-magenta: #e5007e;
    --op-radius: 32px;
    --op-shadow: 0 18px 45px rgba(16, 32, 51, 0.11);
    --op-section: clamp(64px, 9vw, 118px);
    --op-gutter: clamp(20px, 4vw, 48px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--op-ink);
    background: linear-gradient(180deg, #ffffff 0, var(--op-soft) 440px, #ffffff 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea {
    font-family: var(--wp--preset--font-family--inter), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
    animation: op-fade-in 0.45s ease-out both;
}

@keyframes op-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.fixed-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 76px;
    backdrop-filter: blur(16px);
    background-color: rgba(255, 255, 255, 0.88) !important;
    box-shadow: 0 1px 0 rgba(16, 32, 51, 0.08);
}

.op-legal-page {
    width: min(100% - 32px, 920px);
    margin: 0 auto;
    padding: clamp(56px, 8vw, 96px) 0;
}

.op-legal-document {
    color: var(--op-ink);
}

.op-legal-document h1 {
    margin: 0 0 28px;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.op-legal-document h2 {
    margin: 44px 0 14px;
    color: var(--op-base);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.2;
}

.op-legal-document p {
    margin: 0 0 18px;
    color: var(--op-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.op-legal-document a {
    color: var(--op-blue);
    font-weight: 700;
}

.op-legal-note {
    padding: 18px 20px;
    border-left: 5px solid var(--op-orange);
    border-radius: 0 8px 8px 0;
    background: #fff7e8;
}

.op-cookie-banner {
    position: fixed;
    inset: auto 18px 18px;
    z-index: 1000;
}

.op-cookie-panel {
    width: min(100%, 920px);
    margin-left: auto;
    padding: 22px;
    border: 1px solid rgba(16, 32, 51, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 70px rgba(16, 32, 51, 0.24);
}

.op-cookie-main h2 {
    margin: 0 0 10px;
    color: var(--op-base);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.1;
}

.op-cookie-main p:not(.op-kicker) {
    margin: 0 0 18px;
    color: var(--op-muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

.op-cookie-settings {
    display: grid;
    gap: 10px;
    margin: 16px 0 18px;
}

.op-cookie-choice {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid var(--op-line);
    border-radius: 8px;
    background: var(--op-soft);
}

.op-cookie-choice input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--op-blue);
}

.op-cookie-choice strong,
.op-cookie-choice small {
    display: block;
}

.op-cookie-choice strong {
    color: var(--op-base);
    font-size: 0.95rem;
}

.op-cookie-choice small {
    margin-top: 4px;
    color: var(--op-muted);
    font-size: 0.83rem;
    line-height: 1.45;
}

.op-cookie-choice-required {
    background: #eef8f3;
}

.op-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.op-cookie-button,
.op-cookie-link {
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid var(--op-line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--op-base);
    font-weight: 800;
    cursor: pointer;
}

.op-cookie-button-primary {
    border-color: var(--op-blue);
    background: var(--op-blue);
    color: #ffffff;
}

.op-cookie-link {
    border-color: transparent;
    background: transparent;
    color: var(--op-blue);
}

.op-cookie-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
    font-size: 0.82rem;
}

.op-cookie-links a {
    color: var(--op-muted);
    font-weight: 700;
}

.op-consent-placeholder {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(0, 84, 166, 0.18);
    border-radius: 8px;
    background: #f5f8fb;
    color: var(--op-ink);
}

.op-consent-placeholder span {
    color: var(--op-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.op-consent-placeholder button {
    width: fit-content;
    min-height: 38px;
    padding: 8px 13px;
    border: 0;
    border-radius: 8px;
    background: var(--op-blue);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 640px) {
    .op-cookie-banner {
        inset: auto 10px 10px;
    }

    .op-cookie-panel {
        max-height: calc(100vh - 20px);
        overflow: auto;
        padding: 18px;
    }

    .op-cookie-actions {
        display: grid;
    }
}

.fixed-header > * {
    min-width: 0;
}

.logo-container {
    gap: 12px;
}

.wp-block-site-title a {
    color: var(--op-base);
}

.wp-block-site-title,
.wp-block-site-title a {
    letter-spacing: 0;
}

.wp-block-site-tagline {
    color: var(--op-muted);
}

.wp-block-navigation a {
    color: var(--op-ink);
}

.wp-block-navigation a:hover,
.wp-block-navigation .current-menu-item > a {
    color: var(--op-blue);
}

.op-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: clamp(14px, 2vw, 28px);
    font-size: 14px;
    font-weight: 800;
    min-width: 0;
}

.op-nav a,
.op-footer-nav a {
    color: var(--op-ink);
    text-decoration: none;
}

.op-nav a:hover,
.op-footer-nav a:hover {
    color: var(--op-blue);
}

.op-brand {
    color: var(--op-base);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    min-width: 0;
}

.op-brand-logo {
    display: inline-flex;
    width: min(190px, 28vw);
    max-width: 100%;
}

.op-brand-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.op-brand-logo-footer {
    width: min(250px, 70vw);
}

.op-brand strong {
    font-size: 24px;
    font-weight: 900;
}

.op-brand span {
    margin-top: 2px;
    color: var(--op-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.op-footer-nav {
    display: grid;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
}

.op-page-shell {
    background: #f8fafc;
}

.op-page-shell > section.op-section,
.op-page-shell > section.op-dark-section {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.op-page-shell > .op-page-heading {
    max-width: 760px !important;
}

.op-page-shell > .op-services-grid {
    width: min(100%, 1340px) !important;
    max-width: 1340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.op-page-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.op-page-heading h1,
.op-page-heading h2 {
    margin: 0;
    color: var(--op-base);
    font-size: clamp(2.8rem, 5.4vw, 5.1rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.op-page-heading p {
    color: #334155;
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    line-height: 1.35;
}

.op-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 36px);
    margin-top: 72px;
}

.op-service-tile {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--op-line);
    border-radius: 32px;
    background: #ffffff;
    padding: clamp(28px, 3vw, 38px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.09);
    min-width: 0;
}

.op-service-tile.is-blue {
    border-color: var(--op-blue);
}

.op-icon {
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    margin-bottom: 36px;
}

.op-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.op-icon-blue {
    color: var(--op-blue);
    background: rgba(0, 84, 166, 0.11);
}

.op-icon-green {
    color: var(--op-green);
    background: rgba(0, 150, 64, 0.11);
}

.op-icon-orange {
    color: var(--op-orange);
    background: rgba(243, 146, 0, 0.13);
}

.op-icon-magenta {
    color: var(--op-magenta);
    background: rgba(229, 0, 126, 0.12);
}

.op-icon-red {
    color: var(--op-red);
    background: rgba(226, 30, 38, 0.12);
}

.op-service-tile h2,
.op-service-tile h3 {
    margin: 0 0 22px;
    color: #020617;
    font-size: clamp(1.45rem, 1.95vw, 1.95rem);
    font-weight: 900;
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.op-service-tile p {
    color: #334155;
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.45;
}

.op-service-tile .op-pill-button {
    min-height: 58px;
    font-size: clamp(0.95rem, 1.25vw, 1.08rem);
    white-space: normal;
    text-align: center;
}

.op-package-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 34px);
    margin-top: 64px;
}

.op-package-comparison-card {
    display: flex;
    min-width: 0;
    min-height: 610px;
    flex-direction: column;
    border: 1px solid var(--op-line);
    border-radius: 30px;
    background: #ffffff;
    padding: clamp(26px, 3vw, 34px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.op-package-comparison-card.op-package-orange { border-top: 6px solid var(--op-orange); }
.op-package-comparison-card.op-package-blue { border-top: 6px solid var(--op-blue); }
.op-package-comparison-card.op-package-magenta { border-top: 6px solid var(--op-magenta); }

.op-package-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.op-package-card-head .op-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    margin: 0;
}

.op-package-card-head .op-icon svg {
    width: 34px;
    height: 34px;
}

.op-package-price {
    text-align: right;
}

.op-package-price span {
    display: block;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-package-price strong {
    display: block;
    color: var(--op-base);
    font-size: clamp(2rem, 3vw, 2.65rem);
    font-weight: 900;
    line-height: 1;
}

.op-package-comparison-card h2 {
    margin: 0 0 18px;
    color: #020617;
    font-size: clamp(1.65rem, 2vw, 2.15rem);
    font-weight: 900;
    line-height: 1.04;
}

.op-package-comparison-card > p {
    color: #334155;
    line-height: 1.55;
}

.op-package-comparison-card .op-mini-list {
    margin-top: 24px;
}

.op-package-comparison-card .op-mini-list li {
    font-size: 0.92rem;
}

.op-package-footnote {
    margin-top: 24px;
    border-top: 1px solid var(--op-line);
    padding-top: 18px;
    color: #64748b !important;
    font-size: 0.86rem;
}

.op-package-card-actions {
    display: grid;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
}

.op-package-card-actions .op-pill-button {
    min-height: 58px;
    font-size: 1.05rem;
}

.op-package-card-actions .op-text-link {
    justify-content: center;
    text-align: center;
}

.op-feature-list {
    list-style: none;
    margin: 34px 0;
    padding: 0;
    display: grid;
    gap: 20px;
}

.op-feature-list li {
    position: relative;
    padding-left: 34px;
    color: #10203c;
    font-size: 1.07rem;
    font-weight: 700;
}

.op-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.16em;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.op-feature-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 0.48em;
    width: 6px;
    height: 3px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

.op-feature-blue li { color: var(--op-blue); }
.op-feature-green li { color: var(--op-green); }
.op-feature-orange li { color: var(--op-orange); }
.op-feature-magenta li { color: var(--op-magenta); }

.op-feature-list span {
    color: #10203c;
}

.op-dark-section .op-feature-list span,
.op-booking-dark .op-feature-list span {
    color: #dbe7f6;
}

.op-pill-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    border-radius: 16px;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.16);
}

.op-bg-blue { background: var(--op-blue); }
.op-bg-green { background: var(--op-green); }
.op-bg-orange { background: var(--op-orange); }
.op-bg-magenta { background: var(--op-magenta); }

.op-dark-section {
    background: #0f172a;
    color: #ffffff;
}

.op-dark-section .op-page-heading h2,
.op-dark-section .op-page-heading p {
    color: #ffffff;
}

.op-dark-section .op-page-heading p {
    color: #b7c5d8;
}

.op-pgm-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 58px;
}

.op-pgm-intro-card {
    min-width: 0;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 28px;
    background: rgba(30, 41, 59, 0.72);
    padding: clamp(26px, 3vw, 34px);
}

.op-pgm-intro-card span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--op-base);
    font-size: 0.78rem;
    font-weight: 900;
}

.op-pgm-intro-card h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    font-weight: 900;
    line-height: 1.12;
    text-transform: uppercase;
}

.op-pgm-intro-card p {
    margin: 0;
    color: #b7c5d8;
    line-height: 1.65;
}

.op-pgm-check-banner {
    max-width: 1180px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    border: 1px solid rgba(0, 150, 64, 0.22);
    border-left: 8px solid var(--op-green);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(0, 150, 64, 0.09), rgba(0, 84, 166, 0.05)),
        #ffffff;
    padding: clamp(26px, 4vw, 42px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.op-pgm-check-banner h2 {
    margin: 8px 0 14px;
    color: var(--op-base);
    font-size: clamp(1.85rem, 3.5vw, 3rem);
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.op-pgm-check-banner p {
    margin: 0;
    max-width: 780px;
    color: #334155;
    line-height: 1.65;
}

.op-pgm-check-banner-actions {
    display: grid;
    gap: 14px;
    justify-items: start;
    min-width: 220px;
}

.op-level-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 58px;
}

.op-level-card {
    min-height: 410px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 28px;
    background: rgba(30, 41, 59, 0.72);
    padding: 34px;
    position: relative;
    min-width: 0;
}

.op-level-card.is-featured {
    border-color: var(--op-magenta);
    box-shadow: inset 0 5px 0 var(--op-magenta);
}

.op-level-card h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.op-level-card p {
    color: #aebbd0;
}

.op-level-card .op-level-label {
    color: var(--op-green);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-level-card.is-featured .op-level-label {
    color: var(--op-magenta);
}

.op-badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 5px 10px;
    margin-bottom: 16px;
    background: var(--op-magenta);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-badge-green {
    background: var(--op-green);
}

.op-level-card hr {
    border: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    margin: 28px 0 18px;
}

.op-level-grid-focus {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
}

.op-check-card {
    border-color: rgba(0, 150, 64, 0.45);
}

.op-check-card .op-pill-button {
    margin-top: 20px;
}

.op-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 64px);
    align-items: center;
}

.op-photo-card {
    min-height: 320px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(0, 84, 166, 0.16), rgba(0, 150, 64, 0.2)),
        #e8eef5;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.op-photo-card::before {
    content: "";
    position: absolute;
    inset: 18% -12% auto 12%;
    height: 48%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    transform: rotate(-8deg);
}

.op-stat-card {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 240px;
    border-radius: 22px;
    background: #ffffff;
    padding: 24px;
    color: var(--op-base);
    box-shadow: var(--op-shadow);
}

.op-stat-card strong {
    color: var(--op-green);
    font-size: 2.4rem;
    font-weight: 900;
}

.op-stat-card span {
    display: block;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.op-process-card {
    position: relative;
    border: 1px solid var(--op-line);
    border-radius: 24px;
    background: #ffffff;
    padding: 34px 28px 28px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.op-process-number {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--op-base);
    color: #ffffff;
    font-weight: 900;
}

.op-process-card h3 {
    font-size: 1.05rem;
    font-weight: 900;
}

.op-booking-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.14);
}

.op-booking-dark,
.op-booking-light {
    padding: clamp(40px, 6vw, 68px);
}

.op-booking-dark {
    background: var(--op-base);
    color: #ffffff;
}

.op-booking-dark h2,
.op-booking-light h2 {
    margin: 0 0 24px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.op-booking-dark h2 span {
    color: var(--op-green);
}

.op-booking-light {
    display: grid;
    place-items: center;
    text-align: center;
}

.op-package-hero {
    color: #ffffff;
    padding: 68px var(--op-gutter);
}

.op-package-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.op-back-link {
    display: inline-flex;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.op-package-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(3.3rem, 7vw, 6.3rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.op-package-hero p {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 800;
}

.op-package-intro {
    max-width: 760px;
    margin: 0 auto;
    padding: 54px 20px 34px;
    text-align: center;
}

.op-package-intro h2 {
    margin: 0 0 20px;
    color: var(--op-base);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 900;
    text-transform: uppercase;
}

.op-package-intro p {
    color: #334155;
    line-height: 1.7;
}

.op-package-intro-split {
    max-width: 1180px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
    gap: clamp(30px, 5vw, 64px);
    align-items: center;
    text-align: left;
}

.op-package-cover {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.14);
    min-height: 340px;
}

.op-package-cover img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    object-position: top center;
}

.op-package-cover-placeholder {
    min-height: 340px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 30px;
    color: #ffffff;
    text-align: center;
}

.op-package-cover-placeholder .op-icon {
    margin: 0;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.op-package-cover-placeholder strong {
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    font-weight: 900;
    text-transform: uppercase;
}

.op-package-cover-placeholder span {
    font-weight: 900;
}

.op-check-offer {
    max-width: 1180px;
    margin: 30px auto 0;
    padding: clamp(28px, 4vw, 42px);
    border-radius: 28px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.op-check-offer h2 {
    margin: 8px 0 12px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.op-check-offer p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
}

.op-tier-grid {
    max-width: 1180px;
    margin: 36px auto 0;
    padding: 0 var(--op-gutter);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.op-tier-grid-single {
    max-width: 860px;
    grid-template-columns: 1fr;
}

.op-tier-card {
    display: flex;
    min-height: 650px;
    flex-direction: column;
    border: 1px solid var(--op-line);
    border-radius: 28px;
    background: #ffffff;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    min-width: 0;
}

.op-tier-card.is-featured {
    border-width: 2px;
    transform: translateY(-18px);
}

.op-tier-grid-single .op-tier-card.is-featured {
    transform: none;
}

.op-tier-card-wide {
    min-height: auto;
}

.op-tier-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.op-price {
    text-align: right;
}

.op-price span {
    display: block;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 800;
}

.op-price strong {
    color: var(--op-base);
    font-size: 1.8rem;
    font-weight: 900;
}

.op-tier-card h3 {
    margin: 0 0 16px;
    color: #020617;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.op-tier-card p {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
}

.op-tier-section {
    margin-top: 24px;
}

.op-tier-section h4 {
    margin: 0 0 12px;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-mini-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.op-mini-list li {
    position: relative;
    padding-left: 25px;
    color: #334155;
    font-size: 0.82rem;
    line-height: 1.45;
}

.op-mini-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 14px;
    height: 14px;
    border: 1.6px solid currentColor;
    border-radius: 50%;
}

.op-mini-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0.52em;
    width: 5px;
    height: 2px;
    border-left: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(-45deg);
}

.op-note-box {
    border-radius: 14px;
    background: #f8fafc;
    padding: 16px;
}

.op-material-list {
    margin: 0;
    padding-left: 14px;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.65;
}

.op-tier-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: auto;
    border-radius: 999px;
    background: var(--op-base);
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.op-package-notice {
    max-width: 760px;
    margin: 76px auto 90px;
    border-radius: 28px;
    background: var(--op-base);
    color: #ffffff;
    padding: clamp(32px, 5vw, 54px);
}

.op-package-notice h2 {
    margin: 0 0 22px;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-package-notice p {
    color: #d9e3ef;
}

.op-notice-inline {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    padding: 18px;
}

.op-c-orange { color: var(--op-orange); }
.op-c-blue { color: var(--op-blue); }
.op-c-green { color: var(--op-green); }
.op-c-magenta { color: var(--op-magenta); }
.op-b-orange { background: var(--op-orange); }
.op-b-blue { background: var(--op-blue); }
.op-b-green { background: var(--op-green); }
.op-b-magenta { background: var(--op-magenta); }
.op-soft-orange { background: rgba(243, 146, 0, 0.12); }
.op-soft-blue { background: rgba(0, 84, 166, 0.11); }
.op-soft-section { background: #eef6f1; }
.op-soft-magenta { background: rgba(229, 0, 126, 0.11); }

.op-service-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(86px, 10vw, 142px) var(--op-gutter);
    background: var(--op-base);
    color: #ffffff;
}

.op-service-hero::after {
    content: "";
    position: absolute;
    right: 10%;
    top: 10%;
    width: 300px;
    height: 300px;
    border: 32px solid rgba(0, 84, 166, 0.18);
    border-radius: 44px;
    transform: rotate(12deg);
}

.op-service-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.op-hero-badge {
    display: inline-flex;
    margin-bottom: 28px;
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(0, 84, 166, 0.28);
    color: var(--op-blue);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-service-hero h1 {
    margin: 0 0 30px;
    max-width: 760px;
    font-size: clamp(3.2rem, 7vw, 6.7rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.op-service-hero h1 span,
.op-blue-word {
    color: var(--op-blue);
}

.op-service-hero p {
    max-width: 660px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.op-service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 34px;
}

.op-service-hero-actions .op-pill-button {
    min-height: 58px;
    padding: 0 28px;
}

.op-text-link-light {
    color: #ffffff !important;
}

.op-pgm-check-hero::after {
    border-color: rgba(0, 150, 64, 0.2);
}

.op-check-intro-grid,
.op-check-split,
.op-check-doc-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: clamp(32px, 6vw, 68px);
    align-items: center;
}

.op-check-intro-grid h2,
.op-check-doc-grid h2,
.op-check-content-card h2 {
    margin: 0 0 22px;
    color: var(--op-base);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.op-check-intro-grid p,
.op-check-doc-grid p {
    color: #334155;
    font-size: 1.08rem;
    line-height: 1.7;
}

.op-check-price-card {
    border: 1px solid rgba(0, 150, 64, 0.22);
    border-radius: 30px;
    background: #ffffff;
    padding: clamp(28px, 4vw, 42px);
    box-shadow: var(--op-shadow);
}

.op-check-price-card span {
    color: var(--op-green);
    font-weight: 900;
    text-transform: uppercase;
}

.op-check-price-card strong {
    display: block;
    margin: 12px 0;
    color: var(--op-base);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    font-weight: 900;
}

.op-check-price-card .op-pill-button {
    margin-top: 24px;
}

.op-check-assessment-grid,
.op-check-fullservice-grid {
    max-width: 1180px;
    margin: 54px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.op-check-assessment-grid article,
.op-check-content-card,
.op-check-fullservice-card {
    min-width: 0;
    border: 1px solid var(--op-line);
    border-radius: 28px;
    background: #ffffff;
    padding: clamp(24px, 3vw, 34px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.op-check-assessment-grid strong,
.op-check-fullservice-card h3 {
    display: block;
    margin: 0 0 12px;
    color: var(--op-base);
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-check-assessment-grid p,
.op-check-content-card p,
.op-check-fullservice-card p {
    color: #475569;
    line-height: 1.65;
}

.op-check-split {
    align-items: stretch;
}

.op-check-negative-list {
    columns: 2;
    column-gap: 28px;
}

.op-check-flow {
    max-width: 1180px;
    margin: 0 auto;
}

.op-check-doc-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
}

.op-check-doc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
}

.op-check-doc-list li {
    border: 1px solid var(--op-line);
    border-radius: 18px;
    background: #ffffff;
    padding: 18px;
    color: var(--op-base);
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.op-check-fullservice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.op-check-fullservice-card strong {
    display: block;
    margin-bottom: 18px;
    color: var(--op-green);
    font-weight: 900;
}

.op-why-service {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.op-info-stack {
    display: grid;
    gap: 22px;
}

.op-info-card,
.op-frequency-card {
    border: 1px solid var(--op-line);
    border-radius: 24px;
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.op-info-card h3,
.op-frequency-card h3 {
    margin: 0 0 12px;
    color: var(--op-base);
    font-weight: 900;
}

.op-frequency-grid {
    max-width: 980px;
    margin: 46px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.op-frequency-card {
    min-height: 190px;
    text-align: center;
    border-top: 6px solid #d9e8f7;
}

.op-frequency-card strong {
    display: block;
    color: var(--op-blue);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
}

.op-service-explain-grid {
    max-width: 1120px;
    margin: 46px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.op-service-copy-card,
.op-area-card {
    min-width: 0;
    border: 1px solid var(--op-line);
    border-radius: 24px;
    background: #ffffff;
    padding: clamp(26px, 4vw, 38px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.op-service-copy-card h3,
.op-area-card h2 {
    margin: 0 0 16px;
    color: var(--op-base);
    font-weight: 900;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.op-service-copy-card h3 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.op-service-copy-card p,
.op-area-card p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.op-service-flow-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
}

.op-service-step-list {
    display: grid;
    gap: 16px;
}

.op-service-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    border: 1px solid var(--op-line);
    border-radius: 18px;
    background: #ffffff;
    padding: 22px;
}

.op-service-step span {
    color: var(--op-blue);
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
}

.op-service-step.is-orange span,
.op-training-word {
    color: var(--op-orange);
}

.op-service-step p {
    margin: 0;
    color: #334155;
    line-height: 1.65;
}

.op-service-area-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.op-area-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.op-area-card.is-local {
    border-top: 6px solid var(--op-blue);
}

.op-area-card.is-network {
    border-top: 6px solid var(--op-magenta);
}

.op-area-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    border-radius: 999px;
    padding: 7px 12px;
    background: #edf4fb;
    color: var(--op-blue);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-area-card.is-network .op-area-kicker {
    background: rgba(229, 0, 126, 0.1);
    color: var(--op-magenta);
}

.op-area-card .op-pill-button {
    margin-top: auto;
}

.op-page-footnote {
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.55;
}

.op-benefits {
    max-width: 760px;
    margin: 46px auto 0;
}

.op-benefit-item {
    border: 1px solid var(--op-line);
    border-radius: 18px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #ffffff;
}

.op-benefit-item summary {
    cursor: pointer;
    padding: 24px 30px;
    color: var(--op-base);
    font-size: 1.18rem;
    font-weight: 900;
    list-style: none;
}

.op-benefit-item summary::-webkit-details-marker {
    display: none;
}

.op-benefit-item summary::after {
    content: "›";
    float: right;
    color: #7691b0;
    font-size: 1.7rem;
    line-height: 0.7;
}

.op-benefit-item[open] summary {
    background: var(--op-base);
    color: #ffffff;
}

.op-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 28px 30px 30px;
    background: #f8fafc;
}

.op-benefit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--op-line);
    border-radius: 12px;
    background: #ffffff;
    padding: 16px 18px;
    color: #315170;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.op-benefit-row strong {
    color: var(--op-base);
    white-space: nowrap;
}

.op-cta-blue {
    max-width: 920px;
    margin: 84px auto 0;
    border-radius: 44px;
    background: var(--op-blue);
    color: #ffffff;
    padding: clamp(44px, 7vw, 72px);
    text-align: center;
}

.op-cta-blue h2 {
    margin: 0 0 24px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.op-training-hero .op-hero-badge {
    color: var(--op-orange);
    background: rgba(243, 146, 0, 0.18);
}

.op-training-hero h1 span {
    color: var(--op-orange);
}

.op-training-hero::after {
    border-color: rgba(243, 146, 0, 0.17);
    border-radius: 48px 48px 12px 12px;
    transform: rotate(18deg);
}

.op-training-split {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    gap: clamp(44px, 7vw, 86px);
    align-items: center;
}

.op-training-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.op-mosaic-tile {
    min-height: 145px;
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(243, 146, 0, 0.18)),
        #eef3f7;
    padding: 24px;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 900;
}

.op-mosaic-tile.is-blue {
    background: var(--op-blue);
    align-items: flex-start;
}

.op-mosaic-tile.is-orange {
    background: var(--op-orange);
}

.op-focus-grid {
    max-width: 980px;
    margin: 46px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.op-focus-card {
    min-height: 150px;
    border: 1px solid var(--op-line);
    border-radius: 14px;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.op-focus-card h3 {
    margin: 18px 0 10px;
    color: var(--op-base);
    font-size: 0.98rem;
    font-weight: 900;
}

.op-focus-card p {
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.45;
}

.op-cta-orange {
    max-width: 760px;
    margin: 84px auto 0;
    border-radius: 36px;
    background: var(--op-orange);
    color: #ffffff;
    padding: clamp(44px, 7vw, 68px);
    text-align: center;
}

.op-cta-orange h2 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.op-cta-orange p {
    max-width: 560px;
    margin: 0 auto 34px;
    line-height: 1.6;
}

.op-shop-categories {
    max-width: 1180px;
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.op-shop-category {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    border: 4px solid #ffffff;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.92)),
        linear-gradient(135deg, rgba(0, 84, 166, 0.22), rgba(229, 0, 126, 0.26)),
        #dbe7f2;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
    display: flex;
    align-items: flex-end;
    padding: 34px;
    color: #ffffff;
}

.op-shop-category.is-merch {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.9)),
        linear-gradient(135deg, rgba(243, 146, 0, 0.24), rgba(229, 0, 126, 0.24)),
        #e9eef5;
}

.op-shop-category h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.op-shop-category p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
}

.op-divider-label {
    max-width: 1180px;
    margin: 64px auto 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-divider-label::before,
.op-divider-label::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--op-line);
}

.op-shop-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.op-shop-card {
    overflow: hidden;
    border: 1px solid var(--op-line);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
}

.op-shop-card .op-product-media {
    border-radius: 0;
    min-height: 210px;
    aspect-ratio: 4 / 3;
}

.op-shop-card-body {
    padding: 28px;
}

.op-shop-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-shop-card h3 {
    margin: 16px 0 12px;
    color: var(--op-base);
    font-size: 1.5rem;
    font-weight: 900;
}

.op-shop-card p {
    color: #64748b;
    line-height: 1.55;
}

.op-shop-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
}

.op-shop-price {
    color: var(--op-base);
    font-size: 1.7rem;
    font-weight: 900;
}

.op-cart-button {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--op-base);
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
}

.op-academy-page {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.op-academy-hero {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
}

.op-academy-hero h1 {
    margin: 12px 0 22px;
    color: var(--op-base);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.op-academy-hero p {
    color: #475569;
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.6;
}

.op-academy-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
}

.op-academy-panel {
    display: grid;
    gap: 18px;
}

.op-academy-panel article {
    border: 1px solid var(--op-line);
    border-radius: 24px;
    background: #ffffff;
    padding: 26px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.op-academy-panel span {
    color: var(--op-magenta);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-academy-panel strong {
    display: block;
    margin-top: 8px;
    color: var(--op-base);
    font-size: 1.18rem;
    font-weight: 900;
}

.op-academy-panel p {
    margin-bottom: 0;
    font-size: 0.98rem;
}

.op-academy-note {
    max-width: 780px;
    margin: 76px auto 0;
    border: 1px solid var(--op-line);
    border-radius: 24px;
    background: #ffffff;
    padding: clamp(28px, 4vw, 42px);
    text-align: center;
}

.op-academy-note h2 {
    margin: 0 0 12px;
    color: var(--op-base);
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-academy-note p {
    color: #475569;
}

.op-academy-note a {
    color: var(--op-magenta);
    font-weight: 900;
}

.op-booking-layout {
    max-width: 1180px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.op-booking-info,
.op-booking-embed {
    border: 1px solid var(--op-line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.op-booking-info {
    padding: 30px;
}

.op-booking-info h2 {
    margin: 0 0 16px;
    color: var(--op-base);
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.op-booking-info p {
    color: #475569;
    line-height: 1.6;
}

.op-booking-embed {
    overflow: hidden;
    padding: clamp(12px, 2vw, 24px);
}

.op-account-shell,
.op-account-login-card,
.op-account-auth-card {
    max-width: 980px;
    margin: 48px auto 0;
}

.op-account-toolbar,
.op-account-panel,
.op-account-login-card,
.op-account-auth-card {
    border: 1px solid var(--op-line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.op-account-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
    padding: 22px 26px;
}

.op-account-toolbar span {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-account-toolbar strong {
    color: var(--op-base);
    font-size: 1.2rem;
    font-weight: 900;
}

.op-account-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 12px;
    background: var(--op-base);
    color: #ffffff;
    font-weight: 900;
    padding: 0 20px;
    text-decoration: none;
}

.op-account-panel {
    overflow: hidden;
    padding: clamp(14px, 2vw, 24px);
}

.op-account-empty,
.op-account-login-card {
    text-align: center;
}

.op-account-empty {
    padding: clamp(28px, 4vw, 48px);
}

.op-account-login-card {
    padding: clamp(34px, 5vw, 58px);
}

.op-account-auth-card {
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: clamp(18px, 4vw, 40px);
}

.op-account-login-card .op-icon {
    margin-left: auto;
    margin-right: auto;
}

.op-account-login-card h2,
.op-account-empty h2 {
    margin: 0 0 16px;
    color: var(--op-base);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.op-account-login-card p,
.op-account-empty p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: #475569;
    line-height: 1.65;
}

.op-account-setup ol {
    max-width: 660px;
    margin: 24px auto 0;
    padding-left: 22px;
    color: #334155;
    text-align: left;
    line-height: 1.7;
}

.op-account-setup li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.op-account-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.op-account-actions .op-pill-button {
    min-height: 56px;
    padding-left: 30px;
    padding-right: 30px;
}

.op-contact-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
    gap: clamp(48px, 7vw, 82px);
    align-items: start;
}

.op-contact-kicker {
    color: var(--op-blue);
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.op-contact-title {
    margin: 24px 0 32px;
    color: var(--op-base);
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 900;
    line-height: 0.95;
}

.op-contact-title span {
    color: var(--op-blue);
}

.op-contact-lead {
    max-width: 560px;
    color: #334155;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.45;
}

.op-contact-list {
    display: grid;
    gap: 28px;
    margin-top: 48px;
}

.op-contact-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
}

.op-contact-item .op-icon {
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.op-contact-item h3 {
    margin: 0 0 4px;
    color: var(--op-base);
    font-size: 1.05rem;
    font-weight: 900;
}

.op-contact-item p {
    margin: 0;
    color: #315170;
    line-height: 1.5;
}

.op-contact-item small {
    display: block;
    margin-top: 4px;
    color: #94a3b8;
}

.op-privacy-box {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: center;
    margin-top: 58px;
    border: 1px solid var(--op-line);
    border-radius: 20px;
    background: #ffffff;
    padding: 26px;
    box-shadow: 0 7px 20px rgba(15, 23, 42, 0.07);
}

.op-contact-form-card {
    border-radius: 40px;
    background: #ffffff;
    padding: clamp(34px, 5vw, 48px);
    box-shadow: 0 26px 68px rgba(15, 23, 42, 0.12);
}

.op-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.op-field {
    display: grid;
    gap: 8px;
}

.op-field.is-full {
    grid-column: 1 / -1;
}

.op-field label {
    color: var(--op-base);
    font-size: 0.9rem;
    font-weight: 900;
}

.op-field input,
.op-field select,
.op-field textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    color: var(--op-base);
    font: inherit;
    padding: 18px 20px;
    outline: none;
}

.op-field textarea {
    min-height: 150px;
    resize: vertical;
}

.op-consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
    align-items: start;
    margin: 30px 0;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.55;
}

.op-submit-button {
    width: 100%;
    min-height: 62px;
    border: 0;
    border-radius: 14px;
    background: var(--op-base);
    color: #ffffff;
    font: inherit;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.op-faq-hero {
    max-width: 880px;
    margin: 0 auto 54px;
    text-align: center;
}

.op-faq-hero .op-icon {
    margin-left: auto;
    margin-right: auto;
}

.op-faq-hero h1 {
    margin: 24px 0 20px;
    color: var(--op-base);
    font-size: clamp(2.8rem, 5.2vw, 5rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.op-faq-hero h1 span {
    color: var(--op-blue);
}

.op-faq-hero p {
    color: #64748b;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.55;
}

.op-faq-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
}

.op-faq-section {
    overflow: hidden;
    border: 1px solid var(--op-line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.op-faq-section-head {
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid #eef2f7;
    background: #f8fafc;
    padding: 26px 30px;
}

.op-faq-section-head .op-icon {
    width: 52px;
    height: 52px;
    margin: 0;
}

.op-faq-section h2 {
    margin: 0;
    color: var(--op-base);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
}

.op-faq-list {
    padding: 0 30px;
}

.op-faq-item {
    border-bottom: 1px solid #eef2f7;
}

.op-faq-item:last-child {
    border-bottom: 0;
}

.op-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 24px 0;
    color: var(--op-base);
    font-size: 1.08rem;
    font-weight: 900;
}

.op-faq-item summary::-webkit-details-marker {
    display: none;
}

.op-faq-item summary::after {
    content: "+";
    float: right;
    color: var(--op-blue);
    font-size: 1.4rem;
    font-weight: 900;
}

.op-faq-item[open] summary::after {
    content: "-";
}

.op-faq-item p {
    margin: 0;
    padding: 0 0 24px;
    color: #475569;
    line-height: 1.7;
}

.op-faq-cta {
    max-width: 920px;
    margin: 72px auto 0;
    border-radius: 36px;
    background:
        radial-gradient(circle at 12% 20%, rgba(0, 174, 239, 0.18), transparent 34%),
        radial-gradient(circle at 86% 85%, rgba(229, 0, 126, 0.15), transparent 34%),
        var(--op-base);
    color: #ffffff;
    padding: clamp(42px, 6vw, 68px);
    text-align: center;
}

.op-faq-cta h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 900;
    text-transform: uppercase;
}

.op-faq-cta p {
    max-width: 620px;
    margin: 0 auto 30px;
    color: #cbd5e1;
    line-height: 1.65;
}

.op-kicker {
    margin: 0 0 18px;
    color: var(--op-green);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.op-kicker-orange {
    color: var(--op-orange);
}

.op-home-pgm {
    background:
        radial-gradient(circle at 8% 12%, rgba(0, 150, 64, 0.11), transparent 32%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.op-home-pgm > .wp-block-group__inner-container,
.op-home-services > .wp-block-group__inner-container,
.op-home-pgm .wp-block-group__inner-container,
.op-home-services .wp-block-group__inner-container {
    width: min(100%, 1180px);
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.op-home-pgm-grid {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(42px, 6vw, 86px);
    align-items: center;
}

.op-home-pgm-copy h2,
.op-home-service-copy h2 {
    margin: 0 0 24px;
    color: var(--op-base);
    font-size: clamp(2.2rem, 3.35vw, 3.35rem);
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
}

.op-home-pgm-copy h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    max-width: 560px;
}

.op-home-pgm-copy p,
.op-home-service-copy p {
    color: #475569;
    font-size: clamp(1.05rem, 1.7vw, 1.24rem);
    line-height: 1.65;
}

.op-home-pgm-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
}

.op-home-pgm-actions .op-pill-button,
.op-home-service-copy .op-pill-button {
    display: inline-flex;
    width: auto;
    min-height: 56px;
    padding: 0 28px;
    font-size: 1rem;
}

.op-text-link {
    color: var(--op-base);
    font-weight: 900;
    text-decoration: none;
}

.op-text-link:hover {
    color: var(--op-blue);
}

.op-gotcha-stack {
    display: grid;
    gap: 18px;
}

.op-gotcha-stack article {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--op-line);
    border-radius: 26px;
    background: #ffffff;
    padding: clamp(24px, 4vw, 34px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.op-gotcha-stack article::after {
    content: "?";
    position: absolute;
    right: 22px;
    bottom: -24px;
    color: rgba(0, 84, 166, 0.07);
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
}

.op-gotcha-stack span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(0, 150, 64, 0.1);
    color: var(--op-green);
    font-size: 0.78rem;
    font-weight: 900;
}

.op-gotcha-stack h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: var(--op-base);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 900;
    line-height: 1.15;
}

.op-gotcha-stack p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #64748b;
    line-height: 1.55;
}

.op-home-services {
    width: 100%;
    display: grid;
    gap: 52px;
}

.op-home-service-row {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 70px);
    align-items: center;
    border-radius: 36px;
    padding: clamp(28px, 5vw, 54px);
    background: #f8fafc;
}

.op-home-service-row.is-orange {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
}

.op-home-service-mark {
    min-height: 280px;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.26), transparent 32%),
        var(--op-blue);
    box-shadow: 0 18px 40px rgba(0, 84, 166, 0.2);
}

.op-home-service-row.is-orange .op-home-service-mark {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.26), transparent 32%),
        var(--op-orange);
    box-shadow: 0 18px 40px rgba(243, 146, 0, 0.22);
}

.op-home-service-mark span {
    max-width: 100%;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
}

.op-home-service-mark small {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.op-home-service-copy {
    min-width: 0;
}

.op-home-service-copy .op-feature-list {
    margin: 28px 0;
    gap: 14px;
}

.op-home-service-copy .op-feature-list li {
    font-size: 0.98rem;
}

.op-booking-page {
    min-height: 760px;
    background: #f8fafc;
    padding: clamp(68px, 9vw, 120px) var(--op-gutter);
}

.op-booking-shell {
    width: min(100%, 1080px);
    min-height: 430px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #eef2f7;
    border-radius: 40px;
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.13);
}

.op-booking-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--op-base);
    color: #ffffff;
    padding: clamp(34px, 5vw, 52px);
}

.op-booking-brand {
    color: #ffffff;
}

.op-booking-brand span {
    color: #aebbd0;
}

.op-booking-meta {
    display: grid;
    gap: 28px;
    margin: 52px 0;
}

.op-booking-meta-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.op-booking-mini-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.07);
}

.op-booking-mini-icon svg,
.op-booking-service svg,
.op-booking-back svg,
.op-booking-check svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.op-booking-meta-item span,
.op-booking-field label,
.op-booking-times label,
.op-booking-summary span,
.op-booking-calendar-label {
    display: block;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.op-booking-meta-item strong {
    color: #ffffff;
    font-size: 1.12rem;
    line-height: 1.25;
}

.op-booking-help {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 42px;
}

.op-booking-help p {
    margin: 0 0 4px;
    color: #b7c5d8;
}

.op-booking-help a {
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.op-booking-main {
    padding: clamp(42px, 7vw, 70px);
    display: grid;
    align-items: center;
}

.op-booking-step {
    display: none;
}

.op-booking-step.is-active {
    display: block;
    animation: op-fade-in 0.28s ease both;
}

.op-booking-step h1 {
    margin: 0 0 32px;
    color: var(--op-base);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.op-booking-step-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.op-booking-step-title h1 {
    margin: 0;
}

.op-booking-back {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--op-base);
    cursor: pointer;
}

.op-booking-back:hover {
    background: #f1f5f9;
}

.op-booking-service {
    width: 100%;
    min-height: 134px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid #e5edf5;
    border-radius: 26px;
    background: #ffffff;
    padding: 28px 30px;
    color: var(--op-base);
    text-align: left;
    cursor: pointer;
}

.op-booking-service:hover {
    border-color: rgba(0, 84, 166, 0.35);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.op-booking-service strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.35;
}

.op-booking-service small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 1rem;
}

.op-booking-service small svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.op-booking-service > svg {
    color: var(--op-blue);
    flex: 0 0 auto;
}

.op-booking-date-grid,
.op-booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.op-booking-field {
    display: grid;
    gap: 10px;
}

.op-booking-field input {
    width: 100%;
    min-height: 62px;
    border: 1px solid #e5edf5;
    border-radius: 18px;
    background: #f8fafc;
    padding: 0 20px;
    color: var(--op-base);
    font: inherit;
    font-weight: 700;
}

.op-booking-field input:focus {
    border-color: var(--op-blue);
    outline: none;
    background: #ffffff;
}

.op-booking-times {
    display: grid;
    gap: 10px;
}

.op-booking-time-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.op-booking-time-grid button {
    min-height: 62px;
    border: 0;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
    font: inherit;
    font-size: 1.08rem;
    font-weight: 900;
    cursor: pointer;
}

.op-booking-time-grid button:hover,
.op-booking-time-grid button.is-selected {
    background: var(--op-blue);
    color: #ffffff;
}

.op-booking-submit {
    width: 100%;
    min-height: 70px;
    margin-top: 28px;
    border: 0;
    border-radius: 18px;
    background: var(--op-base);
    color: #ffffff;
    font: inherit;
    font-size: 1.25rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
}

.op-booking-submit:hover {
    background: var(--op-blue);
}

.op-booking-confirm {
    text-align: center;
}

.op-booking-check {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    border-radius: 50%;
    color: var(--op-green);
    background: rgba(0, 150, 64, 0.1);
}

.op-booking-check svg {
    width: 46px;
    height: 46px;
}

.op-booking-confirm p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.55;
}

.op-booking-summary {
    max-width: 460px;
    margin: 34px auto;
    display: grid;
    gap: 14px;
    border: 1px solid #eef2f7;
    border-radius: 24px;
    background: #f8fafc;
    padding: 24px;
    text-align: left;
}

.op-booking-summary div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.op-booking-summary strong {
    color: var(--op-base);
    text-align: right;
}

.op-booking-calendar-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.op-booking-calendar-links a,
.op-booking-calendar-links button,
.op-booking-reset {
    min-height: 46px;
    border: 1px solid #dce5ee;
    border-radius: 14px;
    background: #ffffff;
    color: var(--op-base);
    padding: 0 18px;
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.op-booking-calendar-links a {
    display: inline-flex;
    align-items: center;
}

.op-booking-reset {
    margin-top: 32px;
    border: 0;
    color: var(--op-blue);
}

.op-cta-blue p {
    max-width: 560px;
    margin: 0 auto 34px;
    font-size: 1.12rem;
    line-height: 1.6;
}

.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
    border: 1px solid var(--op-line);
    border-radius: var(--op-radius);
    padding: 8px;
}

.wp-block-button__link,
.wp-element-button {
    border-radius: var(--op-radius) !important;
    box-shadow: none;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.wp-block-button__link:hover,
.wp-element-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(29, 117, 216, 0.18);
    filter: none;
}

.is-style-outline > .wp-block-button__link {
    background: transparent;
}

.op-hero {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.op-hero-grid {
    width: min(100%, 1180px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    min-height: 760px;
    display: block;
}

.op-hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 620px;
}

.op-brand-bars {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}

.op-brand-bars span {
    width: 32px;
    height: 8px;
    border-radius: 999px;
    display: block;
}

.op-brand-bars span:nth-child(1) { background: var(--op-red); }
.op-brand-bars span:nth-child(2) { background: var(--op-orange); }
.op-brand-bars span:nth-child(3) { background: var(--op-yellow); }
.op-brand-bars span:nth-child(4) { background: var(--op-green); }
.op-brand-bars span:nth-child(5) { background: var(--op-cyan); }
.op-brand-bars span:nth-child(6) { background: var(--op-blue); }
.op-brand-bars span:nth-child(7) { background: var(--op-magenta); }

.op-hero h1,
.op-hero h2 {
    margin: 0;
    color: var(--op-base);
    letter-spacing: 0 !important;
    max-width: 620px;
    font-weight: 900;
    text-transform: uppercase;
}

.op-hero-title {
    margin-bottom: 12px !important;
    font-size: clamp(3rem, 6vw, 5.9rem) !important;
    line-height: 0.9 !important;
}

.op-hero-tagline {
    margin-bottom: 24px !important;
    color: var(--op-blue);
    font-size: clamp(2.35rem, 4.8vw, 4.8rem) !important;
    line-height: 0.95 !important;
}

.op-hero h1 mark {
    color: var(--op-blue);
    background: transparent;
}

.op-hero-media {
    position: absolute;
    z-index: 1;
    top: clamp(98px, 9vw, 136px);
    right: clamp(-240px, -11vw, -96px);
    width: min(58vw, 640px);
    min-height: 360px;
    pointer-events: none;
}

.op-hero-image {
    aspect-ratio: 2.06 / 1;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
    opacity: 0.82;
}

.op-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.op-hero-subcopy {
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
    padding: 16px 18px;
    backdrop-filter: blur(10px);
}

.op-rating-card {
    position: absolute;
    right: -10px;
    bottom: -34px;
    width: min(310px, 82%);
    padding: 20px;
    border: 1px solid var(--op-line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--op-shadow);
    z-index: 3;
    pointer-events: auto;
}

.op-elfsight-rating-card {
    position: absolute;
    right: -10px;
    bottom: -34px;
    width: min(340px, 86%);
    min-height: 148px;
    border: 1px solid var(--op-line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--op-shadow);
    z-index: 3;
    pointer-events: auto;
    overflow: hidden;
}

.op-elfsight-rating-card .elfsight-app-f8046b20-766e-471c-a596-a6a98f890faa {
    min-height: 148px;
}

.op-elfsight-rating-card iframe,
.elfsight-app-f8046b20-766e-471c-a596-a6a98f890faa iframe {
    max-width: 100%;
}

body .elfsight-app-f8046b20-766e-471c-a596-a6a98f890faa [class*="Floating"],
body .elfsight-app-f8046b20-766e-471c-a596-a6a98f890faa [class*="floating"],
body .elfsight-app-f8046b20-766e-471c-a596-a6a98f890faa [class*="Badge"],
body .elfsight-app-f8046b20-766e-471c-a596-a6a98f890faa [class*="badge"] {
    position: static !important;
    inset: auto !important;
    transform: none !important;
}

.op-rating-card strong {
    display: block;
    color: var(--op-base);
}

.op-rating-card p {
    margin: 8px 0 0;
    color: var(--op-muted);
    font-size: 14px;
    line-height: 1.45;
}

.op-rating-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.op-rating-meta span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.op-rating-meta a,
.op-rating-link {
    color: var(--op-blue);
    font-weight: 900;
    text-decoration: none;
}

.op-rating-debug {
    display: block;
    margin-top: 12px;
    border-top: 1px solid #e2e8f0;
    padding-top: 10px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.35;
}

.op-rating-debug a {
    color: var(--op-blue);
    font-weight: 900;
}

.op-kicker {
    width: fit-content;
    border-radius: 999px;
    padding: 8px 14px;
    color: #dff8e8;
    background: rgba(0, 150, 64, 0.16);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.op-home-pgm .op-kicker,
.op-home-service-copy .op-kicker {
    margin: 0 0 18px;
    color: var(--op-green) !important;
    background: rgba(0, 150, 64, 0.12);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.op-home-service-copy .op-kicker {
    color: var(--op-blue) !important;
    background: rgba(0, 84, 166, 0.1);
}

.op-home-service-copy .op-kicker-orange {
    color: var(--op-orange) !important;
    background: rgba(243, 146, 0, 0.12);
}

.op-page-hero h1 {
    max-width: 860px;
    letter-spacing: 0 !important;
}

.op-section,
.wp-block-group.alignwide {
    padding-left: var(--op-gutter);
    padding-right: var(--op-gutter);
}

.op-section-title {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.op-card,
.op-service-card,
.op-product-card,
.op-contact-card,
.op-value-card,
.op-testimonial-card {
    border: 1px solid var(--op-line) !important;
    border-radius: var(--op-radius) !important;
    box-shadow: 0 1px 0 rgba(16, 32, 51, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.op-card:hover,
.op-service-card:hover,
.op-product-card:hover,
.op-contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 117, 216, 0.28) !important;
    box-shadow: var(--op-shadow);
}

.op-service-card h3::before,
.op-value-card h4::before {
    content: "";
    display: block;
    width: 38px;
    height: 4px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--op-blue), var(--op-cyan), var(--op-green));
}

.op-step-number {
    letter-spacing: 0;
}

.op-page-hero {
    background:
        radial-gradient(circle at 12% 18%, rgba(21, 167, 160, 0.25), transparent 34%),
        linear-gradient(135deg, #102033, #17324c 58%, #1b5f89);
}

.op-product-card figure,
.op-team-card figure {
    overflow: hidden;
    border-radius: 24px;
}

.op-product-card img,
.op-team-card img {
    width: 100%;
    transition: transform 0.35s ease;
}

.op-product-card:hover img,
.op-team-card:hover img {
    transform: scale(1.04);
}

.op-product-media {
    aspect-ratio: 1 / 1;
    border-radius: var(--op-radius);
    background:
        linear-gradient(135deg, rgba(29, 117, 216, 0.14), rgba(21, 167, 160, 0.18)),
        #eef6f9;
    display: grid;
    place-items: center;
    min-height: 190px;
}

.op-product-media strong {
    color: var(--op-base);
    font-size: clamp(28px, 6vw, 54px);
    line-height: 1;
}

.op-academy-preview {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.op-academy-preview-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: end;
    max-width: 1180px;
    margin: 0 auto;
}

.op-academy-preview-head .op-kicker {
    margin: 0 0 18px;
    color: var(--op-magenta) !important;
    background: rgba(230, 0, 126, 0.1);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.op-academy-preview-head h2 {
    margin: 0;
    color: var(--op-base);
    font-size: clamp(2.45rem, 5vw, 4.6rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.98;
    text-transform: uppercase;
}

.op-academy-preview-head p {
    margin: 0;
    color: #475569;
    font-size: 1.06rem;
    line-height: 1.7;
}

.op-academy-format-row {
    max-width: 1180px;
    margin: 30px auto 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.op-academy-format-row span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border: 1px solid #dbe7f1;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    padding: 0 14px;
    font-size: 0.84rem;
    font-weight: 900;
}

.op-academy-product-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.op-academy-product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--op-line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.op-academy-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 0, 126, 0.25);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.op-academy-product-card a {
    display: block;
    background: #edf5f8;
}

.op-academy-product-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.op-academy-product-card div {
    padding: 20px;
}

.op-academy-product-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--op-magenta);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.op-academy-product-card h3 {
    margin: 0 0 12px;
    color: var(--op-base);
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.op-academy-product-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.55;
}

.op-academy-preview-cta {
    max-width: 1180px;
    margin: 34px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #dbe7f1;
    border-radius: 22px;
    background: #ffffff;
    padding: 20px 22px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.op-academy-preview-cta p {
    margin: 0;
    color: #475569;
    font-weight: 800;
}

.op-home-final-cta {
    background:
        linear-gradient(135deg, rgba(0, 84, 166, 0.08), rgba(0, 150, 64, 0.08)),
        #ffffff;
}

.op-home-final-shell {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: center;
    border: 1px solid #dbe7f1;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.11);
    padding: clamp(30px, 5vw, 58px);
}

.op-home-final-copy .op-kicker {
    margin: 0 0 18px;
    color: var(--op-green) !important;
    background: rgba(0, 150, 64, 0.12);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.op-home-final-copy h2 {
    max-width: 720px;
    margin: 0 0 24px;
    color: var(--op-base);
    font-size: clamp(2.35rem, 5vw, 4.7rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.98;
    text-transform: uppercase;
}

.op-home-final-copy p {
    max-width: 680px;
    margin: 0;
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.72;
}

.op-home-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.op-pill-button-light {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: var(--op-base) !important;
}

.op-home-final-panel {
    display: grid;
    gap: 14px;
}

.op-home-final-panel div {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #f8fafc;
    padding: 20px;
}

.op-home-final-panel span {
    display: block;
    margin-bottom: 8px;
    color: var(--op-blue);
    font-size: 0.86rem;
    font-weight: 900;
}

.op-home-final-panel strong {
    display: block;
    color: var(--op-base);
    font-size: 1rem;
    font-weight: 900;
}

.op-home-final-panel p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.55;
}

.wp-block-details {
    border: 1px solid var(--op-line);
    border-radius: var(--op-radius);
    background: #ffffff;
    padding: 20px 22px;
    box-shadow: 0 1px 0 rgba(16, 32, 51, 0.04);
}

.wp-block-details summary {
    cursor: pointer;
    font-weight: 800;
}

.wp-block-details p {
    color: var(--op-muted);
}

footer.wp-block-group {
    box-shadow: 0 -1px 0 rgba(16, 32, 51, 0.06);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #edf3f8;
}

::-webkit-scrollbar-thumb {
    background: #98a9ba;
    border-radius: 999px;
}

@media (max-width: 900px) {
    .fixed-header {
        flex-wrap: wrap !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .op-hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .op-hero-copy {
        max-width: none;
    }

    .op-hero-media {
        position: relative;
        top: auto;
        right: auto;
        width: min(100%, 620px);
        min-height: auto;
        margin: 24px auto 0;
        pointer-events: auto;
    }

    .op-hero-subcopy {
        width: auto;
    }

    .op-rating-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        max-width: none;
    }

    .op-elfsight-rating-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }

    .op-hero h1,
    .op-hero h2,
    .op-page-hero h1 {
        font-size: clamp(42px, 12vw, 74px) !important;
    }

    .op-hero-tagline {
        font-size: clamp(36px, 10vw, 64px) !important;
    }

    .wp-block-columns {
        gap: 24px;
    }

    .op-services-grid,
    .op-package-comparison-grid,
    .op-pgm-check-banner,
    .op-pgm-intro-grid,
    .op-level-grid,
    .op-level-grid-focus,
    .op-process-grid,
    .op-why-grid,
    .op-home-pgm-grid,
    .op-home-service-row,
    .op-home-service-row.is-orange,
    .op-booking-panel,
    .op-tier-grid,
    .op-why-service,
    .op-check-intro-grid,
    .op-check-split,
    .op-check-doc-grid,
    .op-check-assessment-grid,
    .op-check-fullservice-grid,
    .op-frequency-grid,
    .op-benefit-grid,
    .op-service-explain-grid,
    .op-service-flow-grid,
    .op-service-area-grid {
        grid-template-columns: 1fr;
    }

    .op-package-intro-split,
    .op-academy-preview-head,
    .op-home-final-shell,
    .op-academy-hero,
    .op-booking-layout {
        grid-template-columns: 1fr;
    }

    .op-check-offer {
        align-items: flex-start;
        flex-direction: column;
    }

    .op-pgm-check-banner-actions {
        width: 100%;
    }

    .op-pgm-check-banner-actions .op-pill-button {
        width: 100%;
    }

    .op-check-negative-list {
        columns: 1;
    }

    .op-check-doc-list {
        grid-template-columns: 1fr;
    }

    .op-training-split,
    .op-focus-grid,
    .op-academy-product-grid,
    .op-shop-categories,
    .op-shop-grid,
    .op-contact-layout {
        grid-template-columns: 1fr;
    }

    .op-academy-preview-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .op-home-final-actions .op-pill-button {
        width: 100%;
    }

    .op-form-grid {
        grid-template-columns: 1fr;
    }

    .op-service-tile {
        min-height: auto;
    }

    .op-package-comparison-card {
        min-height: auto;
    }

    .op-tier-card,
    .op-tier-card.is-featured {
        min-height: auto;
        transform: none;
    }

    .op-home-service-row.is-orange .op-home-service-mark {
        order: -1;
    }

    .op-home-service-mark {
        min-height: 190px;
    }

    .op-home-pgm-copy h2,
    .op-home-service-copy h2 {
        font-size: clamp(2rem, 7vw, 2.75rem);
        word-break: normal;
        overflow-wrap: normal;
    }
}

@media (min-width: 901px) and (max-width: 1180px) {
    .op-academy-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .op-home-pgm-grid {
        grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
    }

    .op-home-service-row,
    .op-home-service-row.is-orange {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .op-home-service-row.is-orange .op-home-service-mark {
        order: -1;
    }

    .op-home-service-mark {
        min-height: 190px;
    }

    .op-home-pgm-copy h2,
    .op-home-service-copy h2 {
        font-size: clamp(2.05rem, 4vw, 2.8rem);
    }
}

@media (max-width: 640px) {
    .fixed-header {
        align-items: center;
        gap: 12px;
        min-height: 68px;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .logo-container .wp-block-site-tagline {
        display: none;
    }

    .op-brand strong {
        font-size: 19px;
    }

    .op-brand-logo {
        width: 148px;
    }

    .op-brand span {
        display: none;
    }

    .op-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
        font-size: 13px;
    }

    .op-hero,
    .op-page-hero {
        padding: 72px 20px !important;
    }

    .op-hero-media {
        width: min(100%, 620px);
        min-height: auto;
        margin-top: 0;
        justify-self: center;
    }

    .op-rating-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 16px;
        max-width: none;
    }

    .op-elfsight-rating-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }

    .op-section,
    .wp-block-group.alignwide {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wp-block-buttons {
        width: 100%;
    }

    .wp-block-button,
    .wp-block-button__link {
        width: 100%;
    }

    footer.wp-block-group {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}
