:root {
    --om-red: #BC0D0D;
    --om-red-dark: #8F0808;
    --om-red-soft: #fff0f0;

    --om-black: #101010;
    --om-white: #ffffff;

    --om-grey-25: #fbfbfb;
    --om-grey-50: #f6f6f6;
    --om-grey-100: #eeeeee;
    --om-grey-200: #dddddd;
    --om-grey-400: #999999;
    --om-grey-600: #5f5f5f;
    --om-grey-800: #2a2a2a;

    --om-radius-sm: 10px;
    --om-radius-md: 16px;
    --om-radius-lg: 24px;

    --om-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
    --om-shadow-md: 0 12px 36px rgba(0, 0, 0, 0.10);

    --om-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Libre Franklin", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(188, 13, 13, 0.08), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    color: var(--om-black);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* Header */

.om-public-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--om-grey-100);
    backdrop-filter: blur(12px);
}

.om-public-header-inner {
    max-width: var(--om-container);
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.om-logo {
    width: 74px;
    height: 74px;
    object-fit: contain;
    display: block;
}

.om-header-actions,
.om-account-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Layout */

.om-container {
    max-width: var(--om-container);
    margin: 0 auto;
    padding: 34px 22px;
}

.om-page-narrow {
    max-width: 720px;
}

.om-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--om-grey-100);
    border-radius: var(--om-radius-lg);
    box-shadow: var(--om-shadow-sm);
    padding: 28px;
}

.om-card + .om-card,
.om-section + .om-section {
    margin-top: 24px;
}

.om-hero {
    padding: clamp(30px, 5vw, 56px);
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(16, 16, 16, 0.96), rgba(45, 45, 45, 0.94)),
        radial-gradient(circle at 85% 10%, rgba(188, 13, 13, 0.38), transparent 26rem);
    color: var(--om-white);
    box-shadow: var(--om-shadow-md);
    overflow: hidden;
}

.om-hero .om-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

.om-title {
    margin: 0 0 14px;
    font-size: clamp(2.1rem, 5vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.om-page-title {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.om-subtitle {
    margin: 0 0 24px;
    color: var(--om-grey-600);
    font-size: clamp(1rem, 2vw, 1.18rem);
    max-width: 780px;
}

.om-muted {
    color: var(--om-grey-600);
}

.om-divider {
    border: 0;
    border-top: 1px solid var(--om-grey-200);
    margin: 28px 0;
}

/* Buttons */

.om-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 800;
    line-height: 1.1;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.om-btn:hover {
    transform: translateY(-1px);
}

.om-btn-primary {
    background: var(--om-red);
    color: var(--om-white);
    box-shadow: 0 10px 22px rgba(188, 13, 13, 0.22);
}

.om-btn-primary:hover {
    background: var(--om-red-dark);
}

.om-btn-secondary {
    background: var(--om-white);
    color: var(--om-black);
    border-color: var(--om-grey-200);
    box-shadow: var(--om-shadow-sm);
}

.om-btn-secondary:hover {
    border-color: var(--om-grey-400);
}

.om-btn-dark {
    background: var(--om-black);
    color: var(--om-white);
}

.om-btn-full {
    width: 100%;
}

/* Forms */

.om-form {
    width: 100%;
    max-width: 640px;
}

.om-form-wide {
    max-width: 860px;
}

.om-form-section {
    padding: 22px;
    background: var(--om-grey-25);
    border: 1px solid var(--om-grey-100);
    border-radius: var(--om-radius-md);
    margin-bottom: 22px;
}

.om-form-section-title {
    margin: 0 0 16px;
    font-size: 1.28rem;
}

.om-field {
    margin-bottom: 18px;
}

.om-field label {
    display: block;
    margin-bottom: 7px;
    font-weight: 800;
}

.om-field input,
.om-field select,
.om-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid var(--om-grey-200);
    border-radius: var(--om-radius-sm);
    background: var(--om-white);
    color: var(--om-black);
    font: inherit;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.om-field input:focus,
.om-field select:focus,
.om-field textarea:focus {
    border-color: var(--om-red);
    box-shadow: 0 0 0 4px rgba(188, 13, 13, 0.10);
}

.om-field textarea {
    min-height: 130px;
    resize: vertical;
}

.om-help {
    margin-top: 6px;
    color: var(--om-grey-600);
    font-size: 0.92rem;
}

/* Alerts */

.om-alert {
    padding: 15px 16px;
    border-radius: var(--om-radius-sm);
    margin: 16px 0 20px;
    background: var(--om-red-soft);
    border: 1px solid #ffcaca;
    color: var(--om-red-dark);
}

.om-alert-success {
    background: #eefaf3;
    border-color: #c8eed8;
    color: #126437;
}

/* Account cards */

.om-account-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.om-account-card {
    padding: 22px;
    border-radius: var(--om-radius-md);
    background: var(--om-white);
    border: 1px solid var(--om-grey-100);
    box-shadow: var(--om-shadow-sm);
}

.om-account-card h2 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.om-account-card p {
    margin: 0 0 18px;
    color: var(--om-grey-600);
}

/* Listing future */

.om-platform-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.om-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.om-bike-card {
    background: var(--om-white);
    border: 1px solid var(--om-grey-100);
    border-radius: var(--om-radius-md);
    overflow: hidden;
    box-shadow: var(--om-shadow-sm);
}

/* Responsive */

@media (max-width: 1024px) {
    .om-platform-layout {
        grid-template-columns: 1fr;
    }

    .om-listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .om-account-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .om-public-header-inner {
        padding: 12px 16px;
    }

    .om-logo {
        width: 58px;
        height: 58px;
    }

    .om-container {
        padding: 22px 14px;
    }

    .om-card {
        padding: 20px;
        border-radius: 20px;
    }

    .om-title,
    .om-page-title {
        letter-spacing: -0.035em;
    }

    .om-header-actions,
    .om-account-topbar {
        gap: 8px;
    }

    .om-account-topbar span {
        display: none;
    }

    .om-btn {
        min-height: 42px;
        padding: 9px 14px;
        font-size: 0.95rem;
    }

    .om-listing-grid {
        grid-template-columns: 1fr;
    }
}

/* Auth pages */

.om-auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.om-auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 18px;
}

.om-auth-card {
    width: 100%;
    max-width: 520px;
}

.om-auth-card .om-title,
.om-auth-card .om-subtitle {
    text-align: center;
}

.om-auth-card .om-btn {
    width: 100%;
}

.om-auth-footer {
    margin-top: 22px;
    text-align: center;
    color: var(--om-grey-600);
}

.om-auth-footer a {
    color: var(--om-red);
    font-weight: 700;
}

.om-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.om-table {
    width: 100%;
    border-collapse: collapse;
}

.om-table th,
.om-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--om-grey-100);
    text-align: left;
    vertical-align: top;
}

.om-table th {
    color: var(--om-grey-600);
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.om-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
}

.om-badge-pending {
    background: #fff3cd;
    color: #7a5700;
}

.om-badge-valid {
    background: #d1e7dd;
    color: #0f5132;
}

.om-badge-muted {
    background: var(--om-grey-100);
    color: var(--om-grey-600);
}

.om-badge-danger {
    background: #f8d7da;
    color: #842029;
}

/* Public motorcycle listing */

.om-section {
    margin-top: 26px;
}

.om-filter-panel {
    position: sticky;
    top: 110px;
    align-self: start;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--om-grey-100);
    border-radius: var(--om-radius-lg);
    box-shadow: var(--om-shadow-sm);
    padding: 22px;
}

.om-filter-panel h2 {
    margin: 0 0 18px;
    font-size: 1.35rem;
}

.om-filter-form .om-btn + .om-btn {
    margin-top: 10px;
}

.om-listing-area {
    min-width: 0;
}

.om-listing-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.om-listing-head h2 {
    margin: 0 0 4px;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    letter-spacing: -0.035em;
}

.om-bike-card {
    background: var(--om-white);
    border: 1px solid var(--om-grey-100);
    border-radius: var(--om-radius-lg);
    overflow: hidden;
    box-shadow: var(--om-shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.om-bike-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--om-shadow-md);
}

.om-bike-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190px;
    background:
        radial-gradient(circle at 70% 20%, rgba(188, 13, 13, 0.22), transparent 12rem),
        linear-gradient(135deg, #171717, #343434);
    color: var(--om-white);
}

.om-bike-visual-placeholder {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 2.4rem;
    font-weight: 900;
}

.om-bike-verified {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--om-red);
    color: var(--om-white);
    font-size: 0.78rem;
    font-weight: 900;
}

.om-bike-content {
    padding: 18px;
}

.om-bike-meta {
    color: var(--om-grey-600);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.om-bike-content h3 {
    margin: 0 0 12px;
    font-size: 1.22rem;
    line-height: 1.15;
}

.om-bike-price {
    margin-bottom: 14px;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--om-red);
}

.om-bike-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.om-bike-specs span {
    padding: 8px 9px;
    border-radius: var(--om-radius-sm);
    background: var(--om-grey-50);
    color: var(--om-grey-800);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
}

.om-bike-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.om-bike-tags span {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--om-red-soft);
    color: var(--om-red-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .om-filter-panel {
        position: static;
    }

    .om-filter-form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .om-filter-form .om-field {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .om-filter-form {
        grid-template-columns: 1fr;
    }

    .om-listing-head {
        display: block;
    }

    .om-bike-visual {
        height: 170px;
    }

    .om-bike-specs {
        grid-template-columns: 1fr;
    }
}

.om-bike-detail {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}

.om-bike-detail-main,
.om-bike-detail-side {
    min-width: 0;
}

.om-bike-detail-visual {
    position: relative;
    height: 420px;
    border-radius: var(--om-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 70% 20%, rgba(188, 13, 13, 0.24), transparent 15rem),
        linear-gradient(135deg, #171717, #343434);
    color: var(--om-white);
    box-shadow: var(--om-shadow-md);
    overflow: hidden;
}

.om-spec-list {
    display: grid;
    gap: 12px;
}

.om-spec-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--om-grey-100);
}

.om-spec-list span {
    color: var(--om-grey-600);
}

.om-spec-list strong {
    text-align: right;
}

@media (max-width: 1024px) {
    .om-bike-detail {
        grid-template-columns: 1fr;
    }

    .om-bike-detail-visual {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .om-bike-detail-visual {
        height: 240px;
    }

    .om-spec-list div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .om-spec-list strong {
        text-align: left;
    }
}

.om-upload-zone {
    padding: 24px;
    border: 2px dashed var(--om-grey-200);
    border-radius: var(--om-radius-md);
    background: var(--om-grey-25);
    text-align: center;
    transition: border-color 0.16s ease, background 0.16s ease;
}

.om-upload-zone.is-dragover {
    border-color: var(--om-red);
    background: var(--om-red-soft);
}

.om-photo-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.om-photo-card {
    position: relative;
    border-radius: var(--om-radius-md);
    overflow: hidden;
    background: var(--om-grey-50);
    border: 1px solid var(--om-grey-100);
    box-shadow: var(--om-shadow-sm);
}

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

.om-photo-main-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--om-red);
    color: var(--om-white);
    font-size: 0.78rem;
    font-weight: 900;
}

.om-photo-actions {
    display: grid;
    gap: 8px;
    padding: 10px;
}

.om-photo-actions .om-btn {
    width: 100%;
    min-height: 36px;
    font-size: 0.82rem;
}

@media (max-width: 1024px) {
    .om-photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .om-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.om-bike-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.om-bike-gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.om-bike-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--om-radius-sm);
    border: 1px solid var(--om-grey-100);
    box-shadow: var(--om-shadow-sm);
}

@media (max-width: 768px) {
    .om-bike-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.om-bike-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.om-lightbox-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.om-lightbox-main {
    width: 100%;
    height: 100%;
}

.om-gallery-thumb {
    display: block;
    width: 100%;
}

.om-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.92);
    padding: 24px;
}

.om-lightbox[hidden] {
    display: none;
}

.om-lightbox-image {
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    border-radius: var(--om-radius-md);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

.om-lightbox-close,
.om-lightbox-nav {
    position: fixed;
    border: 0;
    color: var(--om-white);
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
    transition: background 0.16s ease;
}

.om-lightbox-close:hover,
.om-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.24);
}

.om-lightbox-close {
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    font-size: 2rem;
    line-height: 1;
}

.om-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 72px;
    border-radius: 999px;
    font-size: 3rem;
    line-height: 1;
}

.om-lightbox-prev {
    left: 18px;
}

.om-lightbox-next {
    right: 18px;
}

.om-no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .om-lightbox {
        padding: 14px;
    }

    .om-lightbox-nav {
        width: 42px;
        height: 58px;
        font-size: 2.4rem;
    }

    .om-lightbox-close {
        width: 42px;
        height: 42px;
    }
}



/* Mes annonces - liste responsive sans scroll horizontal */

.om-annonces-list {
    display: grid;
    gap: 16px;
}

.om-annonce-row {
    padding: 18px;
    border: 1px solid var(--om-grey-100);
    border-radius: var(--om-radius-md);
    background: var(--om-white);
    box-shadow: var(--om-shadow-sm);
}

.om-annonce-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.om-annonce-title {
    margin: 0 0 5px;
    font-size: 1.18rem;
    line-height: 1.2;
}

.om-annonce-meta {
    margin: 0;
    color: var(--om-grey-600);
    font-weight: 700;
}

.om-annonce-details {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.om-annonce-detail {
    padding: 11px 12px;
    border-radius: var(--om-radius-sm);
    background: var(--om-grey-25);
    border: 1px solid var(--om-grey-100);
}

.om-annonce-detail span,
.om-annonce-detail small {
    display: block;
    color: var(--om-grey-600);
    font-size: 0.82rem;
}

.om-annonce-detail span {
    margin-bottom: 3px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.om-annonce-detail strong {
    display: block;
    font-size: 0.98rem;
}

.om-annonce-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

@media (max-width: 1024px) {
    .om-annonce-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .om-annonce-row {
        padding: 15px;
    }

    .om-annonce-main {
        display: grid;
        gap: 10px;
    }

    .om-annonce-details {
        grid-template-columns: 1fr;
    }

    .om-annonce-actions {
        display: grid;
    }

    .om-annonce-actions .om-btn {
        width: 100%;
    }
}

input[type="checkbox"] {
    width: auto;
    min-height: auto;
    padding: 0;
    margin-right: 8px;
    accent-color: #BC0D0D;
}

#contactWhatsappField label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}


.om-equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.om-equipment-card {
    background: var(--om-white);
    border: 1px solid var(--om-grey-100);
    border-radius: var(--om-radius-md);
    overflow: hidden;
    box-shadow: var(--om-shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.om-equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--om-shadow-md);
}

.om-equipment-image {
    height: 170px;
    background: var(--om-grey-50);
}

.om-equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.om-equipment-content {
    padding: 14px;
}

.om-equipment-content h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.2;
}

.om-equipment-meta {
    min-height: 22px;
    margin: 0 0 10px;
    color: var(--om-grey-600);
    font-size: 0.88rem;
}

.om-equipment-price {
    color: var(--om-red);
    font-size: 1.15rem;
    font-weight: 900;
}

@media (max-width: 1024px) {
    .om-equipment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .om-equipment-grid {
        grid-template-columns: 1fr;
    }
}

.om-home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    align-items: center;
}

.om-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(188, 13, 13, 0.2);
    color: var(--om-white);
    font-weight: 900;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.om-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.om-hero-notice {
    padding: 24px;
    border-radius: var(--om-radius-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.om-hero-notice strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.om-hero-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.om-pricing-grid,
.om-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.om-price-card {
    padding: 28px;
    border-radius: var(--om-radius-lg);
    background: var(--om-white);
    border: 1px solid var(--om-grey-100);
    box-shadow: var(--om-shadow-sm);
}

.om-price-card-featured {
    border-color: rgba(188, 13, 13, 0.35);
    background: linear-gradient(180deg, #fff, var(--om-red-soft));
}

.om-price-card span {
    color: var(--om-grey-600);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}

.om-price-card h2 {
    margin: 10px 0 0;
    color: var(--om-red);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
}

.om-price-card p {
    margin: 4px 0 16px;
    color: var(--om-grey-600);
    font-weight: 800;
}

.om-price-card strong {
    display: block;
    font-size: 1.05rem;
}

.om-alert-info {
    border-left: 7px solid var(--om-red);
}

.om-clean-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.om-clean-list li {
    position: relative;
    padding-left: 28px;
    color: var(--om-grey-800);
    font-weight: 700;
}

.om-clean-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--om-red);
    font-weight: 900;
}

.om-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.om-steps-grid div {
    padding: 20px;
    border-radius: var(--om-radius-md);
    background: var(--om-grey-25);
    border: 1px solid var(--om-grey-100);
}

.om-steps-grid span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--om-red);
    color: var(--om-white);
    font-weight: 900;
}

.om-steps-grid h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.om-steps-grid p {
    margin: 0;
    color: var(--om-grey-600);
}

.om-final-cta {
    padding: clamp(30px, 5vw, 54px);
    border-radius: var(--om-radius-lg);
    background:
        radial-gradient(circle at top right, rgba(188, 13, 13, 0.14), transparent 24rem),
        var(--om-white);
    border: 1px solid var(--om-grey-100);
    box-shadow: var(--om-shadow-md);
    text-align: center;
}

.om-final-cta h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.om-final-cta p {
    max-width: 720px;
    margin: 0 auto 22px;
    color: var(--om-grey-600);
    font-size: 1.08rem;
}

.om-final-cta .om-home-actions {
    justify-content: center;
}

@media (max-width: 1024px) {
    .om-home-hero,
    .om-pricing-grid,
    .om-benefit-grid,
    .om-steps-grid {
        grid-template-columns: 1fr;
    }
}