/* Notifica unified header — public / client / admin (legacy themev1) */

:root {
    --notifica-primary: #073578;
    --notifica-primary-hover: #208fff;
    --notifica-primary-soft: #7cc9e2;
    --notifica-gray: #727c89;
    --notifica-text: #2a2b33;
    --notifica-muted: #697386;
    --notifica-border: #dfe7ef;
    --notifica-surface: #ffffff;
    --notifica-bg: #f6f6f6;

    --notifica-gray-dark: #5f6878;
    --notifica-gutter-x: clamp(1rem, 4vw, 1.5rem);
}

.notifica-site-body {
    min-height: 100vh;
    color: var(--notifica-text);
    background: var(--notifica-surface);
    font-family: Arial, Helvetica, sans-serif;
}

.notifica-site-container {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--notifica-gutter-x);
    padding-right: var(--notifica-gutter-x);
}

/* —— Header wrapper —— */
.notifica-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--notifica-surface);
    box-shadow: 0 1px 4px rgba(47, 55, 66, 0.08);
}

/* —— Top bar (welcome + language) —— */
.notifica-site-topbar {
    background: var(--notifica-surface);
    border-bottom: 1px solid var(--notifica-border);
    font-size: 12px;
    color: var(--notifica-muted);
}

.notifica-site-topbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 32px;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.notifica-site-topbar-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.notifica-site-topbar-meta strong {
    color: var(--notifica-text);
}

.notifica-site-topbar-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    margin-left: auto;
}

.notifica-site-topbar-link {
    padding: 0;
    border: 0;
    color: var(--notifica-muted);
    font-size: 15px;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
}

.notifica-site-topbar-link:hover {
    color: var(--notifica-primary);
}

.notifica-site-topbar .btn-logout:hover {
    color: var(--notifica-primary);
}

/* —— Language dropdown (legacy #lang_popup) —— */
.notifica-lang-dropdown {
    position: relative;
}

.notifica-lang-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 28px;
    padding: 0.15rem 0.35rem 0.15rem 0.25rem;
    border: 0;
    border-radius: 0;
    color: var(--notifica-muted);
    background: transparent;
    box-shadow: none !important;
}

.notifica-lang-dropdown__toggle::after {
    display: none;
}

.notifica-lang-dropdown__toggle:hover,
.notifica-lang-dropdown__toggle:focus,
.notifica-lang-dropdown__toggle.show {
    color: var(--notifica-text);
    background: transparent;
}

.notifica-lang-dropdown__flag {
    display: block;
    width: 24px;
    height: 16px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.notifica-lang-dropdown__caret {
    width: 17px;
    height: 28px;
    background: url("../images/img_arrow.png") no-repeat center center transparent;
}

.notifica-lang-dropdown__menu {
    min-width: 150px;
    margin-top: 0.15rem;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 0;
    box-shadow: 3px 3px 10px rgba(50, 50, 50, 0.25);
}

.notifica-lang-dropdown__menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 32px;
    padding: 0 10px;
    color: #626262 !important;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
}

.notifica-lang-dropdown__menu .dropdown-item:hover,
.notifica-lang-dropdown__menu .dropdown-item:focus {
    color: #000 !important;
    background: #efefef;
}

.notifica-lang-dropdown__menu .dropdown-item.active {
    color: #000 !important;
    background: #efefef;
}

/* —— Logo + main nav (#nav) —— */
.notifica-site-header {
    background: #f6f6f6;
    border-bottom: 1px solid var(--notifica-border);
}

.notifica-site-header__inner {
    align-items: stretch;
    min-height: 88px;
}

.notifica-site-header__inner.navbar {
    flex-wrap: nowrap;
}

@media (min-width: 992px) {
    .notifica-site-header .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        visibility: visible;
    }

    .notifica-site-navbar-toggler {
        display: none;
    }

    /* Submeniuri la hover (desktop) — ca themev1 #nav */
    .notifica-site-nav .nav-item.dropdown {
        position: relative;
    }

    .notifica-site-nav .nav-item.dropdown:hover > .dropdown-menu,
    .notifica-site-nav .nav-item.dropdown:focus-within > .dropdown-menu {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1050;
    }

    .notifica-site-nav .nav-item.dropdown:hover > .nav-link,
    .notifica-site-nav .nav-item.dropdown:focus-within > .nav-link {
        color: var(--notifica-gray) !important;
        background: #ffffff;
    }
}

.notifica-site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.85rem 0;
    margin-right: 0.75rem;
    text-decoration: none;
}

.notifica-site-header .navbar-brand {
    padding: 0.85rem 0;
}

.notifica-site-logo img {
    width: auto;
    max-height: 75px;
    object-fit: contain;
    margin-right: 0.5rem;
}

.notifica-site-navbar-toggler {
    align-self: center;
    margin-left: auto;
    border-color: var(--notifica-border);
}

.notifica-site-nav {
    flex-grow: 1;
    align-self: stretch;
}

.notifica-site-nav__list {
    align-items: stretch;
    width: 100%;
}

.notifica-site-nav .nav-item {
    display: flex;
    align-items: stretch;
}

.notifica-site-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 1.65rem 1.25rem !important;
    border-bottom: 3px solid transparent;
    color: #333 !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.notifica-site-nav .nav-link:hover,
.notifica-site-nav .nav-link:focus,
.notifica-site-nav .nav-link.show {
    color: var(--notifica-gray) !important;
    background: #ffffff;
}

.notifica-site-nav .nav-link.active {
    color: var(--notifica-gray) !important;
    background: #ffffff;
    border-bottom-color: var(--notifica-primary);
}

.notifica-site-nav .dropdown-menu {
    margin-top: 0;
    min-width: 200px;
    padding: 6px 0;
    border: 4px solid #eeeeee;
    border-radius: 0;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

.notifica-site-nav .dropdown-item {
    padding: 11px 15px;
    color: #777 !important;
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
}

.notifica-site-nav .dropdown-item:hover,
.notifica-site-nav .dropdown-item:focus {
    color: var(--notifica-text) !important;
    background: #f7f8fa;
}

/* —— Main content —— */
.notifica-site-main {
    min-height: 40vh;
    background: var(--notifica-surface);
}

.notifica-site-body--public .notifica-site-main {
    background: var(--notifica-bg);
}

.notifica-site-body--public .notifica-site-main > .notifica-site-container {
    padding-top: 0;
    padding-bottom: 0;
}

/* Pagini publice — aceeași latime ca header/footer (max 1180px) */
.public-page-shell {
    padding: 2.5rem 0 3rem;
    background: var(--notifica-bg);
}

.public-page-shell--centered {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 220px);
}

.public-page-shell--centered > .notifica-site-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.notifica-site-body--public .notifica-site-main .legacy-page {
    width: 100%;
}

.public-page-shell .notifica-site-container {
    padding-left: var(--notifica-gutter-x);
    padding-right: var(--notifica-gutter-x);
}

/* —— Footer —— */
.notifica-site-footer {
    margin-top: 2rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--notifica-border);
    background: #fafbfc;
    color: var(--notifica-muted);
    font-size: 13px;
}

.notifica-site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.notifica-site-footer-nav a {
    color: var(--notifica-muted);
    text-decoration: none;
}

.notifica-site-footer-nav a:hover {
    color: var(--notifica-primary);
}

/* Dashboard / admin content helpers */
.notifica-site-main .page-heading {
    margin-bottom: 1.75rem;
    border-bottom: 1px solid var(--notifica-border);
}

.notifica-site-main .page-heading h1 {
    display: inline-block;
    margin: 0;
    padding: 0 0 0.5rem;
    border-bottom: 1px solid #9aaabc;
    color: #3d4652;
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.2;
}

.notifica-site-main .page-heading__desc {
    margin: 0.5rem 0 0;
    color: var(--notifica-muted);
    font-size: 0.95rem;
}

.notifica-site-main .account-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: -0.5rem 0 1.25rem;
    border-bottom: 1px solid var(--notifica-border);
}

.notifica-site-main .account-tabs a {
    padding: 0.65rem 0.85rem;
    border-bottom: 3px solid transparent;
    color: #526071;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.notifica-site-main .account-tabs a.active,
.notifica-site-main .account-tabs a:hover {
    color: var(--notifica-text);
    border-bottom-color: var(--notifica-primary);
}

/* Admin content panel (fără navbar gri separat) */
.notifica-admin-main .admin-module,
.notifica-admin-main .admin-placeholder {
    background: var(--notifica-surface);
    border: 1px solid var(--notifica-border);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
    .notifica-site-header__inner.navbar {
        flex-wrap: wrap;
        align-items: center;
        min-height: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .notifica-site-logo {
        flex: 1 1 auto;
        min-width: 0;
        margin-right: 0;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .notifica-site-logo img {
        max-height: 44px;
    }

    .notifica-site-navbar-toggler {
        flex: 0 0 auto;
        margin-left: 0.5rem;
        order: 2;
    }

    .notifica-site-nav {
        flex-grow: 0;
    }

    .notifica-site-header .navbar-collapse {
        flex: 1 1 100%;
        order: 3;
        width: 100%;
        align-self: stretch;
    }

    .notifica-site-header .navbar-collapse:not(.show) {
        display: none !important;
    }

    .notifica-site-header .navbar-collapse.show,
    .notifica-site-header .navbar-collapse.collapsing {
        display: block !important;
    }

    .notifica-site-nav__list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-left: 0 !important;
        padding: 0.35rem 0 0.75rem;
    }

    .notifica-site-nav .nav-item {
        width: 100%;
    }

    .notifica-site-nav .nav-link {
        width: 100%;
        padding: 0.75rem 0.5rem !important;
        border-bottom-width: 0;
        white-space: normal;
    }

    .notifica-site-nav .nav-link.active {
        border-left: 3px solid var(--notifica-primary);
        border-bottom-color: transparent;
    }

    .notifica-site-topbar__inner {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .notifica-site-topbar-actions {
        margin-left: 0;
    }

    .public-page-shell {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .legacy-page .row {
        flex-direction: column;
        gap: 1.25rem;
    }

    .legacy-page .grid_3,
    .legacy-page .grid_4,
    .legacy-page .grid_5,
    .legacy-page .grid_6,
    .legacy-page .grid_9,
    .legacy-page .grid_12 {
        flex: 1 1 100%;
        min-width: 0;
    }

    .legacy-page > .page-content,
    .legacy-page .page-content {
        padding: 1.25rem var(--notifica-gutter-x);
    }

    .legacy-page .container {
        padding-left: 0;
        padding-right: 0;
    }

    .legacy-page .triggerAnimation[style*="margin-right"] {
        margin-right: 0 !important;
    }

    .legacy-page img {
        max-width: 100%;
    }
}

/* —— Pricing (public) —— */
/* Pagina preturi — 3 coloane (pachete) */

.pricing-plans-row {
    align-items: stretch;
}

.pricing-plan-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--notifica-surface);
    border: 1px solid var(--notifica-border);
    border-top: 4px solid var(--notifica-primary);
    box-shadow: 0 4px 14px rgba(47, 55, 66, 0.08);
}

.pricing-plan-card__head {
    padding: 1.25rem 1.35rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid var(--notifica-border);
    background: linear-gradient(180deg, var(--notifica-bg) 0%, var(--notifica-surface) 100%);
}

.pricing-plan-card__head h3 {
    margin: 0;
    color: var(--notifica-text);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pricing-plan-card__prices {
    margin: 0;
    padding: 1rem 1.35rem;
    border-bottom: 1px solid var(--notifica-border);
}

.pricing-plan-card__prices > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.45rem 0;
    border-bottom: 1px dashed var(--notifica-border);
}

.pricing-plan-card__prices > div:last-child {
    border-bottom: 0;
}

.pricing-plan-card__prices dt {
    margin: 0;
    color: var(--notifica-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.pricing-plan-card__prices dd {
    margin: 0;
    color: var(--notifica-text);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: right;
    max-width: 55%;
}

.pricing-plan-card__hint {
    display: block;
    margin-top: 0.2rem;
    color: var(--notifica-muted);
    font-size: 0.72rem;
    font-weight: 400;
    line-height: 1.3;
}

.pricing-plan-card__section {
    padding: 0.85rem 1.35rem;
    flex: 1 1 auto;
}

.pricing-plan-card__section h4 {
    margin: 0 0 0.65rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid var(--notifica-primary);
    color: var(--notifica-text);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-plan-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-plan-card__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.82rem;
    color: var(--notifica-muted);
    border-bottom: 1px solid #f3f5f8;
}

.pricing-plan-card__list li span:first-child {
    flex: 1 1 auto;
    line-height: 1.35;
}

.pricing-cell {
    flex-shrink: 0;
    min-width: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.pricing-cell--yes {
    color: #1f6b3f;
}

.pricing-cell--no {
    color: #9aa3b2;
}

.pricing-cell--highlight {
    color: var(--notifica-primary);
    font-weight: 600;
    font-size: 0.78rem;
}

.pricing-plan-card__footer {
    padding: 1rem 1.35rem 1.35rem;
    margin-top: auto;
    text-align: center;
    border-top: 1px solid var(--notifica-border);
}

.btn-notifica-plan {
    display: inline-block;
    min-width: 10rem;
    padding: 0.55rem 1.25rem;
    border: 0;
    border-radius: 3px;
    color: var(--notifica-surface) !important;
    background: var(--notifica-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: 0.04em;
}

.btn-notifica-plan:hover {
    color: var(--notifica-surface) !important;
    background: var(--notifica-primary-hover);
}

.pricing-footnotes {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--notifica-surface);
    border: 1px solid var(--notifica-border);
    color: var(--notifica-muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

.pricing-footnotes p {
    margin: 0 0 0.35rem;
}

.pricing-footnotes p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .public-page-shell.pricing-page {
        padding: 1.5rem 0 2rem;
    }
}


/* —— Public pages (legacy + auth + account) —— */
* {
    box-sizing: border-box;
}

html {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--notifica-text);
    background: var(--notifica-surface);
    letter-spacing: 0;
}

body {
    margin: 0;
    min-height: 100vh;
}

a {
    color: var(--notifica-primary);
    text-decoration: none;
}

a:hover {
    color: var(--notifica-primary);
    text-decoration: underline;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

.site-shell {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--notifica-border);
    background: rgba(255, 255, 255, .96);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--notifica-text);
    font-weight: 800;
    font-size: 18px;
}

.brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.main-nav,
.header-actions,
.locale-switcher,
.footer-inner,
.site-footer nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.main-nav a,
.locale-switcher a,
.quiet-button,
.icon-button {
    color: #344054;
    font-size: 14px;
    font-weight: 600;
}

.locale-switcher {
    gap: 4px;
    padding: 3px;
    border: 1px solid var(--notifica-border);
    border-radius: 8px;
    background: #f8fafc;
}

.locale-switcher a {
    padding: 5px 8px;
    border-radius: 6px;
}

.locale-switcher a.active {
    color: var(--notifica-surface);
    background: #0f766e;
}

.primary-button,
.quiet-button,
.icon-button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.primary-button {
    color: var(--notifica-surface);
    background: var(--notifica-primary);
}

.primary-button:hover {
    color: var(--notifica-surface);
    background:  var(--notifica-primary-hover);
    text-decoration: none;
}

.quiet-button,
.icon-button {
    background: var(--notifica-surface);
    border-color: var(--notifica-border);
}

.icon-button {
    color: #8a2c2c;
}

.wide {
    width: 100%;
}

.flash {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 650;
}

.flash.success {
    color: #14532d;
    background: #dcfce7;
    border: 1px solid #86efac;
}

.flash.error {
    color: #7f1d1d;
    background: #fee2e2;
    border: 1px solid #fecaca;
}

.public-page-home > .page-content,
.legacy-page > .page-content {
    margin-bottom: 1.25rem;
    padding: 1.5rem 1.25rem;
    background: var(--notifica-surface);
    border: 1px solid var(--notifica-border);
    border-radius: 4px;
}

.public-page-home__hero-tagline {
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 400;
}

.public-page-home__lead {
    text-align: justify;
    margin-bottom: 1rem;
}

.public-page-home__section-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.public-page-home__icon-list {
    margin: 0;
    padding-left: 1.25rem;
}

.public-page-home__icon-list li {
    margin-bottom: 0.35rem;
}

.public-page-home__service-card {
    height: 100%;
    padding: 1rem;
    background: var(--notifica-surface-muted, #f8fafc);
    border: 1px solid var(--notifica-border);
    border-radius: 4px;
}

.public-page-home__service-card ul {
    margin: 0 0 0.75rem;
    padding-left: 1.1rem;
}

.public-page-home__read-more {
    font-weight: 600;
}

.public-page-home__hero--emesaj .public-page-home__hero-title {
    color: var(--notifica-primary, #eb247b);
}

.public-page-home__hero--emesaj {
    overflow: hidden;
    padding: clamp(2rem, 4vw, 4.5rem) clamp(1rem, 3vw, 3.75rem) !important;
    border: 0 !important;
    background:
        radial-gradient(circle at 28% 26%, rgba(32, 106, 231, 0.09) 0 15%, transparent 34%),
        #ffffff !important;
}

.emesaj-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
    gap: clamp(1.4rem, 2.8vw, 3.5rem);
    align-items: flex-start;
}

.emesaj-hero__visual {
    min-width: 0;
}

.emesaj-hero__figure {
    margin: 0;
}

.emesaj-hero__figure img {
    display: block;
    width: min(100%, 760px);
    height: auto;
    margin: 0 auto;
}

.emesaj-hero__content {
    min-width: 0;
    color: #10224a;
}

.emesaj-hero__brand {
    margin: 0;
    color: #061b64;
    font-size: clamp(3.15rem, 5vw, 5.35rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0;
    white-space: nowrap;
}

.emesaj-hero__subtitle {
    margin: 1rem 0 1.8rem;
    color: #25385f;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.25;
}

.emesaj-hero__headline {
    max-width: 720px;
    margin: 0 0 2.25rem;
    color: #1766df;
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 850;
    line-height: 1.18;
    letter-spacing: 0;
}

.emesaj-hero__features {
    display: grid;
    gap: 1.55rem;
}

.emesaj-hero-feature {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 1.35rem;
    align-items: center;
}

.emesaj-hero-feature__icon {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border: 1px solid #dbe5f3;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(13, 36, 81, 0.06);
}

.emesaj-hero-feature__icon svg {
    width: 58px;
    height: 58px;
}

.emesaj-hero-feature__icon--chat svg path:first-child {
    fill: #1e68e7;
}

.emesaj-hero-feature__icon--chat svg circle {
    fill: #ffffff;
}

.emesaj-hero-feature__icon--growth svg {
    fill: none;
    stroke: #20ba57;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 5;
}

.emesaj-hero-feature__icon--integration svg path {
    fill: #5946c7;
}

.emesaj-hero-feature h2 {
    margin: 0 0 0.4rem;
    color: #061b64;
    font-size: clamp(1.35rem, 2.1vw, 1.75rem);
    font-weight: 850;
    line-height: 1.12;
}

.emesaj-hero-feature p {
    max-width: 610px;
    margin: 0;
    color: #25385f;
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    line-height: 1.45;
}

.emesaj-hero__trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: center;
    margin-top: clamp(2.25rem, 4vw, 4rem);
}

.emesaj-hero-trust {
    display: grid;
    grid-template-columns: 40px minmax(0, max-content);
    gap: 0.55rem;
    align-items: center;
    min-height: 54px;
    padding: 0 0.7rem;
    color: #10224a;
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.2;
}

.emesaj-hero-trust + .emesaj-hero-trust {
    border-left: 1px solid #d8e1ee;
}

.emesaj-hero-trust:first-child {
    padding-left: 0;
}

.emesaj-hero-trust__icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #145bd7;
}

.emesaj-hero-trust__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.6;
}

@media (max-width: 1199.98px) {
    .emesaj-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .emesaj-hero__figure img {
        width: min(100%, 820px);
    }

    .emesaj-hero__content {
        max-width: 860px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .public-page-home__hero--emesaj {
        padding: 1.4rem 1rem 1.8rem !important;
    }

    .emesaj-hero {
        gap: 1.6rem;
    }

    .emesaj-hero-feature {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 1rem;
    }

    .emesaj-hero-feature__icon {
        width: 72px;
        height: 72px;
        border-radius: 12px;
    }

    .emesaj-hero-feature__icon svg {
        width: 46px;
        height: 46px;
    }

    .emesaj-hero__trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 1rem;
    }

    .emesaj-hero-trust,
    .emesaj-hero-trust:first-child {
        padding: 0;
    }

    .emesaj-hero-trust + .emesaj-hero-trust {
        border-left: 0;
    }
}

@media (max-width: 479.98px) {
    .emesaj-hero-feature {
        grid-template-columns: 1fr;
    }

    .emesaj-hero__trust {
        grid-template-columns: 1fr;
    }
}

.legacy-page > .page-content:first-child,
.public-page-home > .page-content:first-child {
    margin-top: 0;
}

.legacy-page .background-black {
    color: var(--notifica-surface);
    background: #172033;
}

.legacy-page .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.legacy-page .row {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
}

.legacy-page .grid_12 {
    flex: 1 1 100%;
}

.legacy-page .grid_9 {
    flex: 1 1 650px;
}

.legacy-page .grid_6 {
    flex: 1 1 430px;
}

.legacy-page .grid_5 {
    flex: 1 1 520px;
}

.legacy-page .grid_4 {
    flex: 1 1 310px;
}

.legacy-page .grid_3 {
    flex: 1 1 240px;
}

.legacy-page h2,
.legacy-page h3,
.legacy-page h4,
.legacy-page h5 {
    margin: 0 0 16px;
    line-height: 1.15;
    color: var(--notifica-text);
}

.legacy-page .background-black h2,
.legacy-page .background-black h3,
.legacy-page .background-black h4,
.legacy-page .background-black h5 {
    color: var(--notifica-surface);
}

.legacy-page h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.legacy-page h3 {
    font-size: 26px;
}

.legacy-page h4 {
    font-size: 22px;
}

.legacy-page h5 {
    font-size: 20px;
}

.legacy-page p,
.legacy-page section {
    color: #475467;
    font-size: 16px;
    line-height: 1.72;
}

.legacy-page > section:not(.page-content) {
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
}

.legacy-page > section.widget {
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--notifica-border);
    border-radius: 4px;
    background: var(--notifica-surface);
}

.legacy-page > section.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.legacy-page .triggerAnimation::after,
.legacy-page .row::after {
    content: "";
    display: table;
    clear: both;
}

.legacy-page .background-black p,
.legacy-page .background-black section {
    color: var(--notifica-border);
}

.legacy-page ul {
    margin: 10px 0 0;
    padding-left: 0;
}

.legacy-page li {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    column-gap: 10px;
    align-items: start;
    margin: 9px 0;
    list-style: none;
}

.legacy-page li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    margin-top: 0.62em;
    border-radius: 50%;
    background: var(--notifica-primary);
}

.legacy-page li > p {
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: 1.55;
}

.legacy-page .triggerAnimation > .grid_4[style*="float"] {
    width: calc(50% - 14px);
    max-width: none;
}

.legacy-page .dropcap.colored {
    /*float: left;*/
    margin: 0 8px 0 0;
    padding: 0 6px;
    color: var(--notifica-surface);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    background: var(--notifica-primary);
}

.legacy-page .heading-bordered {
    margin: 0 0 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--notifica-primary);
}

.legacy-page .heading-bordered h3 {
    margin: 0;
    color: var(--notifica-text);
    font-size: 22px;
    font-weight: 400;
}

.legacy-page .btn-medium,
.legacy-page a.btn-medium {
    display: inline-block;
    padding: 10px 18px;
    border: 0;
    border-radius: 3px;
    color: var(--notifica-surface) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: uppercase;
    cursor: pointer;
}

.legacy-page .btn-medium.purple,
.legacy-page a.btn-medium.purple {
    background: var(--notifica-primary);
}

.legacy-page .btn-medium.purple:hover,
.legacy-page a.btn-medium.purple:hover {
    background: var(--notifica-primary-hover);
}

.legacy-page .btn-medium.grey,
.legacy-page a.btn-medium.grey {
    background: var(--notifica-gray);
}

.legacy-page .note {
    padding: 24px;
    border-left: 4px solid var(--notifica-primary);
    background: var(--notifica-surface);
}

.legacy-page .background-black .note {
    border-color: #f59e0b;
    background: transparent;
}

.legacy-page .service-box-2 {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--notifica-border);
    border-radius: 8px;
    background: var(--notifica-surface);
}

.legacy-page .service-box-2 h5,
.legacy-page .service-box-2 p,
.legacy-page .service-box-2 ul {
    text-align: left !important;
}

.legacy-page .service-box-2 ul {
    width: 100%;
    margin-top: 0.75rem;
}

.legacy-page .service-box-2 .read-more {
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
}

.legacy-page .accordion .title {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 8px 8px 0 0;
    background: #eef6f8;
    font-weight: 700;
}

.legacy-page .accordion .content {
    padding: 14px;
    border: 1px solid var(--notifica-border);
    border-top: 0;
}

.account-section {
    min-height: calc(100vh - 146px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 16px;
    background: var(--notifica-bg);
}

.auth-panel {
    width: min(460px, 100%);
    padding: 28px;
    border: 1px solid var(--notifica-border);
    border-radius: 8px;
    background: var(--notifica-surface);
}

.register-panel {
    width: min(540px, 100%);
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--notifica-primary);
    border-bottom: 3px solid transparent;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.auth-panel h1,
.account-layout h1 {
    margin: 0 0 22px;
    color: var(--notifica-text);
    font-size: 32px;
    line-height: 1.1;
}

.auth-form {
    display: grid;
    gap: 10px;
}

.auth-form label {
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--notifica-border);
    border-radius: 8px;
    background: var(--notifica-surface);
}

.auth-form input:focus {
    outline: 3px solid var(--notifica-primary-soft);
    border-color: var(--notifica-primary);
}

.field-note,
.auth-alt {
    margin: 0;
    color: var(--notifica-muted);
    font-size: 14px;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.auth-alt {
    margin-top: 18px;
    text-align: center;
}

.account-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 28px;
    align-items: start;
}

.account-summary {
    margin: 0;
    padding: 22px;
    border: 1px solid var(--notifica-border);
    border-radius: 8px;
    background: var(--notifica-surface);
}

.account-summary div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--notifica-border);
}

.account-summary div:last-child {
    border-bottom: 0;
}

.account-summary dt {
    color: var(--notifica-muted);
    font-weight: 700;
}

.account-summary dd {
    margin: 0;
    color: var(--notifica-text);
    font-weight: 800;
}

/* Campanii publicitare — carduri exemple + public tinta */
.legacy-page-ad-campaigns .ad-campaigns-intro {
    text-align: center;
}

.legacy-page-ad-campaigns .ad-campaigns-intro__visual {
    margin: 1.25rem 0 0;
}

.legacy-page-ad-campaigns .ad-campaigns-intro__visual img {
    max-width: min(420px, 100%);
    margin: 0 auto;
}

.legacy-page-ad-campaigns > .ad-campaigns-section {
    margin-top: 1.75rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.legacy-page-ad-campaigns .ad-campaigns-section > h3 {
    margin: 0 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--notifica-primary);
    color: var(--notifica-text);
    font-size: 1.35rem;
    font-weight: 700;
}

.legacy-page-ad-campaigns .ad-campaigns-examples {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.legacy-page-ad-campaigns .ad-campaign-example-card {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 1.15rem;
    border: 1px solid var(--notifica-border);
    border-radius: 4px;
    background: var(--notifica-surface);
}

.legacy-page-ad-campaigns .ad-campaign-example-card h6 {
    margin: 0 0 0.75rem;
    color: var(--notifica-text);
    font-size: 1rem;
    font-weight: 700;
}

.legacy-page-ad-campaigns .ad-campaign-example-card__image {
    display: block;
    margin-bottom: 0.85rem;
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
}

.legacy-page-ad-campaigns .ad-campaign-example-card__image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.legacy-page-ad-campaigns .ad-campaign-example-card p {
    margin: 0;
    flex: 1;
    color: #475467;
    font-size: 0.9rem;
    line-height: 1.55;
}

.legacy-page-ad-campaigns .ad-campaigns-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.legacy-page-ad-campaigns .ad-campaign-audience-card {
    padding: 1rem 1.1rem;
    border: 1px solid var(--notifica-border);
    border-radius: 4px;
    background: var(--notifica-surface);
}

.legacy-page-ad-campaigns .ad-campaign-audience-card h6 {
    margin: 0 0 0.65rem;
    color: var(--notifica-primary);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

.legacy-page-ad-campaigns .ad-campaign-audience-card ul {
    margin: 0;
    padding: 0;
}

.legacy-page-ad-campaigns .ad-campaign-audience-card li {
    margin: 0.35rem 0;
    font-size: 0.875rem;
    line-height: 1.45;
}

.legacy-page-ad-campaigns .ad-campaigns-footnote {
    margin: 1.25rem 0 0;
    padding: 1rem 1.15rem;
    border-left: 4px solid var(--notifica-primary);
    background: var(--notifica-surface);
    color: #475467;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .legacy-page-ad-campaigns .ad-campaigns-examples {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legacy-page-ad-campaigns .ad-campaigns-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .legacy-page-ad-campaigns .ad-campaigns-examples,
    .legacy-page-ad-campaigns .ad-campaigns-audience-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    border-top: 1px solid var(--notifica-border);
    background: var(--notifica-surface);
}

.footer-inner {
    min-height: 74px;
    justify-content: space-between;
    color: var(--notifica-muted);
    font-size: 14px;
}

@media (max-width: 920px) {
    .header-inner,
    .main-nav,
    .header-actions,
    .footer-inner,
    .site-footer nav {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

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

@media (max-width: 620px) {
    .site-shell {
        width: min(100% - 24px, 1160px);
    }

    .header-actions {
        width: 100%;
    }

    .legacy-page .page-content {
        padding: 1.25rem var(--notifica-gutter-x);
    }

    .legacy-page .triggerAnimation > .grid_4[style*="float"] {
        width: 100%;
        float: none !important;
    }

    .auth-panel {
        padding: 22px;
    }
}

.public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
    gap: clamp(1.4rem, 2.8vw, 3.5rem);
    align-items: flex-start;
}

.public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero__figure img {
    width: min(100%, 760px);
    max-width: none;
    margin: 0 auto;
}

.public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero__brand {
    margin: 0;
    color: #061b64;
    font-size: clamp(3.15rem, 5vw, 5.35rem);
    font-weight: 900;
    line-height: 0.95;
    white-space: nowrap;
}

.public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero__subtitle {
    margin: 1rem 0 1.8rem;
    color: #25385f;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.25;
}

.public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero__headline {
    max-width: 720px;
    margin: 0 0 2.25rem;
    color: #1766df;
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 850;
    line-height: 1.18;
}

.public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero-feature h2 {
    margin: 0 0 0.4rem;
    color: #061b64;
    font-size: clamp(1.35rem, 2.1vw, 1.75rem);
    font-weight: 850;
    line-height: 1.12;
}

.public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero-feature p {
    max-width: 610px;
    margin: 0;
    color: #25385f;
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    line-height: 1.45;
    text-align: left;
}

.public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero-trust {
    color: #10224a;
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.2;
}

@media (max-width: 1199.98px) {
    .public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero {
        grid-template-columns: 1fr;
    }

    .public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero__figure img {
        width: min(100%, 820px);
    }

    .public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero__content {
        max-width: 860px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero__brand {
        font-size: clamp(2.65rem, 13vw, 3.4rem);
    }

    .public-page-home.legacy-page .public-page-home__hero--emesaj .emesaj-hero__headline {
        font-size: clamp(1.65rem, 8vw, 2.1rem);
    }
}

.public-page-home.legacy-page .emesaj-feature-panel {
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem) !important;
    border: 0 !important;
    background: #ffffff !important;
}

.emesaj-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.35fr) minmax(300px, 0.9fr);
    gap: clamp(1.6rem, 3vw, 2.6rem);
    align-items: stretch;
}

.emesaj-feature-block {
    min-width: 0;
}

.emesaj-section-title {
    position: relative;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
    padding-bottom: 0.7rem;
    color: #061b64;
    font-size: clamp(1.85rem, 2.8vw, 2.35rem);
    font-weight: 850;
    line-height: 1.1;
}

.emesaj-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 3px;
    border-radius: 999px;
    background: #1766df;
}

.emesaj-feature-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.35rem, 2.2vw, 2rem) clamp(0.9rem, 1.5vw, 1.3rem);
}

.emesaj-mini-card,
.emesaj-benefit-card,
.emesaj-proof-item {
    display: grid;
    min-width: 0;
    color: #10224a;
}

.emesaj-mini-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: flex-start;
}

.emesaj-mini-card__icon,
.emesaj-benefit-card__icon {
    display: grid;
    place-items: center;
    border: 1px solid #dbe5f3;
    background: linear-gradient(145deg, #f7fbff, #ffffff);
    box-shadow: 0 10px 26px rgba(13, 36, 81, 0.05);
}

.emesaj-mini-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 13px;
}

.emesaj-mini-card__icon svg {
    width: 34px;
    height: 34px;
}

.emesaj-mini-card strong,
.emesaj-benefit-card strong,
.emesaj-proof-item strong {
    display: block;
    margin: 0 0 0.45rem;
    color: #061b64;
    font-size: clamp(0.92rem, 1.05vw, 1.05rem);
    font-weight: 850;
    line-height: 1.35;
}

.emesaj-mini-card span span,
.emesaj-benefit-card span span,
.emesaj-proof-item span span {
    display: block;
    color: #10224a;
    font-size: clamp(0.8rem, 0.92vw, 0.92rem);
    line-height: 1.45;
}

.emesaj-mini-card__icon svg,
.emesaj-benefit-card__icon svg,
.emesaj-proof-item__icon svg {
    fill: none;
    stroke: #1766df;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3.4;
}

.emesaj-mini-card__icon--message svg path:first-child {
    fill: #1766df;
    stroke: none;
}

.emesaj-mini-card__icon--message svg circle {
    fill: #ffffff;
    stroke: none;
}

.emesaj-mini-card__icon--whatsapp svg path:first-child,
.emesaj-mini-card__icon--whatsapp svg path:nth-child(2) {
    fill: #20ba57;
    stroke: none;
}

.emesaj-mini-card__icon--puzzle svg path {
    fill: #5946c7;
    stroke: none;
}

.emesaj-feature-block--benefits {
    position: relative;
    overflow: hidden;
}

.emesaj-benefits-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
    min-height: 410px;
}

.emesaj-benefit-list {
    display: grid;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.emesaj-benefit-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: flex-start;
}

.emesaj-benefit-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    background: #edfff4;
    border: 0;
}

.emesaj-benefit-card__icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #20ba57;
    stroke-width: 3.8;
}

.emesaj-benefit-card__icon--bolt svg,
.emesaj-benefit-card__icon--gear svg path:first-child {
    fill: #20ba57;
    stroke: none;
}

.emesaj-benefit-card__icon--gear svg circle {
    fill: none;
    stroke: #20ba57;
}

.emesaj-benefit-card__icon--eye svg path,
.emesaj-benefit-card__icon--coins svg path,
.emesaj-benefit-card__icon--coins svg ellipse {
    stroke: #20ba57;
}

.emesaj-benefits-visual {
    position: absolute;
    right: -2.2rem;
    bottom: -0.6rem;
    z-index: 1;
    width: min(42%, 220px);
    height: 200px;
    opacity: 0.34;
    pointer-events: none;
}

.emesaj-benefits-visual::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 18%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(23, 102, 223, 0.1), rgba(23, 102, 223, 0.03));
}

.emesaj-benefits-visual__arrow {
    position: absolute;
    top: 36px;
    left: 18px;
    width: 154px;
    height: 64px;
    border-top: 11px solid #1766df;
    border-radius: 50% 50% 0 0;
    transform: rotate(-24deg);
}

.emesaj-benefits-visual__arrow::after {
    content: "";
    position: absolute;
    right: -10px;
    top: -24px;
    border-left: 29px solid #1766df;
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
    transform: rotate(25deg);
}

.emesaj-benefits-visual__bars {
    position: absolute;
    right: 20px;
    bottom: 28px;
    display: flex;
    gap: 14px;
    align-items: flex-end;
}

.emesaj-benefits-visual__bars span {
    display: block;
    width: 28px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #1d73f0, #0d4bd0);
    box-shadow: 0 14px 24px rgba(23, 102, 223, 0.18);
}

.emesaj-benefits-visual__bars span:nth-child(1) {
    height: 72px;
    opacity: 0.18;
}

.emesaj-benefits-visual__bars span:nth-child(2) {
    height: 94px;
    opacity: 0.42;
}

.emesaj-benefits-visual__bars span:nth-child(3) {
    height: 132px;
}

.emesaj-benefits-visual__check {
    position: absolute;
    right: 56px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2f87ff, #0d55d7);
    box-shadow: 0 16px 30px rgba(23, 102, 223, 0.32);
}

.emesaj-benefits-visual__check svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
}

.public-page-home.legacy-page .emesaj-proof-strip {
    padding: 1.1rem clamp(1rem, 2.5vw, 1.6rem) !important;
    border: 1px solid #dbe5f3 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 14px 40px rgba(13, 36, 81, 0.04);
}

.emesaj-proof-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.emesaj-proof-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    min-height: 80px;
    padding: 0 1.6rem;
}

.emesaj-proof-item + .emesaj-proof-item {
    border-left: 1px solid #d1dbea;
}

.emesaj-proof-item__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #1766df;
}

.emesaj-proof-item__icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 3.2;
}

.emesaj-proof-item__icon--pin svg path:first-child {
    fill: #1766df;
    stroke: #ffffff;
}

@media (max-width: 1199.98px) {
    .emesaj-feature-grid {
        grid-template-columns: 1fr;
    }

    .emesaj-feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .emesaj-benefits-visual {
        width: min(38%, 260px);
    }

    .emesaj-proof-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 1.2rem;
    }

    .emesaj-proof-item:nth-child(odd) {
        border-left: 0;
    }
}

@media (max-width: 767.98px) {
    .emesaj-feature-list,
    .emesaj-proof-strip__inner {
        grid-template-columns: 1fr;
    }

    .emesaj-benefits-layout {
        min-height: 0;
    }

    .emesaj-benefits-visual {
        display: none;
    }

    .emesaj-proof-item,
    .emesaj-proof-item:first-child {
        padding: 0;
        border-left: 0;
    }
}
