
:root {
    --navy: #082f67;
    --blue: #0b63b6;
    --blue-2: #1d72c9;
    --orange: #ff6500;
    --orange-soft: #fff3ea;
    --ink: #102a52;
    --muted: #5e6c7f;
    --line: #dce7f2;
    --soft: #f5f9fd;
    --white: #ffffff;
    --green: #005893;
    --purple: #7a3fc0;
    --shadow: 0 16px 42px rgba(10, 48, 97, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: "cbk_font", Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.45;
}

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

a {
    color: inherit;
}

.shell {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    left: 10px;
    top: -80px;
    z-index: 5000;
    padding: 10px 14px;
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}

.skip-link:focus {
    top: 10px;
}

/* Header */
.site-header {
    position: relative;
    z-index: 100;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #eef2f7;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 230px;
    height: auto;
    display: block;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: clamp(26px, 3vw, 54px);
    font-weight: 750;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 46px;
    text-decoration: none;
    color: #0b234a;
    white-space: nowrap;
}

.main-nav a:not(.nav-cancel)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 2px;
    transform: scaleX(0);
    background: var(--orange);
    transition: transform .18s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-separator {
    width: 1px;
    height: 34px;
    background: #becce0;
    margin-left: 4px;
}

.main-nav .nav-cancel {
    color: var(--orange);
    font-weight: 800;
}

.nav-cancel-icon {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    padding: 9px;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 3px;
    margin: 5px 0;
    border-radius: 4px;
    background: var(--navy);
}

/* Hero */
.home-hero {
    position: relative;
    min-height: 530px;
    overflow: hidden;
    background: #eaf7ff;
}

.hero-photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}

.hero-wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(240,248,255,.99) 0%,
            rgba(240,248,255,.97) 25%,
            rgba(240,248,255,.80) 39%,
            rgba(240,248,255,.18) 57%,
            rgba(240,248,255,0) 72%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 530px;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: 48%;
    max-width: 610px;
    padding: 42px 0 60px 12px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(223,240,255,.88);
    color: #17375f;
    font-size: .92rem;
    font-weight: 700;
}

.kicker-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-copy h1 {
    margin: 0;
    color: #0b2b59;
    font-size: clamp(3.25rem, 4.25vw, 4.75rem);
    line-height: .98;
    letter-spacing: -.035em;
    font-weight: 800;
}

.hero-copy h1 strong {
    color: var(--blue);
    font-weight: 800;
}

.hero-subtitle {
    margin: 22px 0 8px;
    font-size: 1.25rem;
    font-weight: 750;
    color: #142a4b;
}

.hero-lead {
    max-width: 570px;
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.5;
    color: #17355d;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: .93rem;
    color: #5d6b7d;
}

.hero-note-icon {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Benefit row */
.hero-benefits-shell {
    position: relative;
    z-index: 5;
    margin-top: -34px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 108px;
    padding: 12px 20px;
    background: rgba(255,255,255,.98);
    border: 1px solid #edf2f7;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 20px;
    border-right: 1px solid var(--line);
    text-align: left;
    font-weight: 800;
    color: #0d2d59;
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
}

.benefit-item:hover,
.benefit-item:focus-visible {
    background: #f5faff;
    color: #005893;
}

.benefit-item:last-child {
    border-right: 0;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #edf6ff;
    color: var(--blue);
}

.benefit-svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-label-mobile {
    display: none;
}

/* 3 main cards */
.travel-types {
    padding: 32px 0 34px;
}

.travel-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.travel-card {
    position: relative;
    min-height: 254px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 56% 44%;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(8,48,103,.06);
}

.travel-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.98) 45%, rgba(255,255,255,.35) 72%, rgba(255,255,255,0) 100%);
}

.travel-card-copy {
    position: relative;
    z-index: 2;
    padding: 22px 8px 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.travel-card-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    margin-bottom: 10px;
}

.travel-card-icon-blue { background: #0b69c7; }
.travel-card-icon-green { background: var(--green); }
.travel-card-icon-purple { background: var(--purple); }

.travel-card-svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.travel-card h3 {
    margin: 0 0 10px;
    color: #0b2a55;
    font-size: 1.28rem;
    line-height: 1.13;
}

.travel-card p {
    margin: 0 0 14px;
    color: #30435f;
    font-size: .92rem;
    line-height: 1.45;
}

.travel-card a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0061c5;
    font-weight: 800;
    text-decoration: none;
}

.link-arrow {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.travel-card > img {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    width: 54%;
    height: 100%;
    object-fit: cover;
}

/* Trust */
.trust-strip {
    margin-top: 18px;
    min-height: 94px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #f7fbff);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 16px 22px;
    border-right: 1px solid var(--line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    color: var(--blue);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item span {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: #0a2a55;
    font-size: .98rem;
}

.trust-item small {
    margin-top: 2px;
    color: #66758a;
    font-size: .77rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    right: 8px;
    bottom: 53%;
    z-index: 1200;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 21px;
    border-radius: 12px;
    background: #e85b00;
    color: #fff;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 11px 26px rgba(255,101,0,.28);
    transition: opacity .2s ease, transform .2s ease;
}

.floating-cta:hover {
    background: #FFFFFF;
     color: #005893;
}

.floating-cta-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Footer */
.site-footer {
    margin-top: 10px;
    padding: 44px 0 20px;
    background: #062a5a;
    color: #eaf3ff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .9fr 1fr;
    gap: 52px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 850;
    text-decoration: none;
}

.footer-grid p {
    margin: 0 0 8px;
    color: #c7d8ed;
    font-size: .9rem;
}

.footer-grid h2 {
    margin: 0 0 12px;
    font-size: 1rem;
    color: #fff;
}

.footer-grid nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.footer-grid nav a {
    color: #dbe9fa;
    text-decoration: none;
    font-size: .88rem;
}

.footer-grid nav a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    border-top: 1px solid rgba(255,255,255,.14);
    color: #b6c9df;
    font-size: .76rem;
}

/* Tablet */
@media (max-width: 1100px) {
    .shell {
        width: min(100% - 32px, 1040px);
    }

    .header-inner {
        gap: 20px;
    }

    .brand img {
        width: 200px;
    }

    .main-nav {
        gap: 24px;
        font-size: .92rem;
    }

    .hero-copy {
        width: 53%;
    }

    .travel-card {
        grid-template-columns: 61% 39%;
    }
}

/* Mobile */
@media (max-width: 760px) {
    body {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .shell {
        width: calc(100% - 28px);
    }

    .site-header {
        position: relative;
    }

    .header-inner {
        min-height: 78px;
        gap: 12px;
    }

    .brand img {
        width: 148px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 10px;
        right: 10px;
        top: calc(100% + 1px);
        z-index: 1000;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 0 0 16px 16px;
        background: #fff;
        box-shadow: 0 18px 35px rgba(7,43,89,.15);
    }

    .main-nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav a {
        min-height: 50px;
        padding: 0 12px;
        white-space: normal;
        border-bottom: 1px solid #edf2f6;
    }

    .main-nav a:not(.nav-cancel)::after {
        display: none;
    }

    .nav-separator {
        width: 100%;
        height: 8px;
        margin: 0;
        border-bottom: 1px solid #e8edf4;
        background: transparent;
    }

    .main-nav .nav-cancel {
        margin-top: 2px;
        border-bottom: 0;
        background: #fff8f2;
        border-radius: 10px;
    }

    .nav-cancel-icon {
        width: 22px;
        height: 22px;
    }

    .home-hero {
        min-height: 570px;
    }

    .hero-photo {
        width: 156vw;
        height: auto;
        top: auto;
        right: auto;
        bottom: 0;
        left: -18.7vw;
        object-fit: contain;
        object-position: initial;
    }

    .hero-wash {
        background:
            linear-gradient(180deg,
                rgba(239,248,255,.99) 0%,
                rgba(239,248,255,.98) 38%,
                rgba(239,248,255,.88) 49%,
                rgba(239,248,255,.22) 65%,
                rgba(239,248,255,0) 78%);
    }

    .hero-content {
        min-height: 570px;
        align-items: flex-start;
    }

    .hero-copy {
        width: 100%;
        max-width: none;
        padding: 24px 0 0;
    }

    .hero-kicker {
        margin-bottom: 13px;
        padding: 6px 10px;
        font-size: .72rem;
    }

    .kicker-icon {
        width: 15px;
        height: 15px;
    }

    .hero-copy h1 {
        max-width: 290px;
        font-size: clamp(2rem, 9.2vw, 2.55rem);
        line-height: 1.02;
    }

    .hero-subtitle {
        max-width: 286px;
        margin-top: 14px;
        font-size: 1rem;
        line-height: 1.32;
    }

    .hero-lead {
        max-width: 292px;
        margin-top: 8px;
        font-size: .88rem;
        line-height: 1.43;
    }

    .hero-note {
        display: none;
    }

    .hero-benefits-shell {
        margin-top: -22px;
    }

    .hero-benefits {
        min-height: 90px;
        padding: 8px 4px;
        border-radius: 17px;
    }

    .benefit-item {
        flex-direction: column;
        gap: 5px;
        padding: 5px 2px;
        text-align: center;
        font-size: .68rem;
        line-height: 1.05;
    }

    .benefit-icon {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
    }

    .benefit-svg {
        width: 20px;
        height: 20px;
    }

    .benefit-label-desktop {
        display: none;
    }

    .benefit-label-mobile {
        display: inline;
    }

    .travel-types {
        padding-top: 22px;
    }

    .travel-card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .travel-card {
        min-height: 164px;
        grid-template-columns: 1fr 116px;
        border-radius: 15px;
    }

    .travel-card::after {
        background: linear-gradient(90deg, #fff 0%, #fff 57%, rgba(255,255,255,.77) 70%, rgba(255,255,255,.08) 100%);
    }

    .travel-card-copy {
        padding: 15px 4px 13px 15px;
    }

    .travel-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .travel-card-svg {
        width: 23px;
        height: 23px;
    }

    .travel-card h3 {
        max-width: 195px;
        margin-bottom: 6px;
        font-size: 1.05rem;
    }

    .travel-card p {
        max-width: 205px;
        margin-bottom: 7px;
        font-size: .78rem;
        line-height: 1.34;
    }

    .travel-card a {
        font-size: .87rem;
    }

    .travel-card > img {
        width: 45%;
    }

    .trust-strip {
        margin-top: 15px;
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 6px 14px;
    }

    .trust-item {
        justify-content: flex-start;
        min-height: 60px;
        padding: 8px 6px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .trust-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .trust-item strong {
        font-size: .9rem;
    }

    .trust-item small {
        font-size: .72rem;
    }

    .floating-cta {
        left: 8px;
        right: 8px;
        bottom: 8px;
        min-height: 54px;
        padding: 0 16px;
        border-radius: 12px;
        font-size: 1rem;
    }

    .site-footer {
        padding-bottom: 88px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 340px) {
    .shell {
        width: calc(100% - 20px);
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        width: 136px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
        padding: 7px;
    }

    .home-hero,
    .hero-content {
        min-height: 548px;
    }

    .hero-photo {
        width: 156vw;
        left: -18.7vw;
    }

    .hero-copy {
        padding-top: 18px;
    }

    .hero-kicker {
        margin-bottom: 9px;
        font-size: .65rem;
    }

    .hero-copy h1 {
        max-width: 280px;
        font-size: 1.82rem;
    }

    .hero-subtitle {
        max-width: 270px;
        margin-top: 10px;
        font-size: .91rem;
    }

    .hero-lead {
        max-width: 280px;
        margin-top: 6px;
        font-size: .80rem;
        line-height: 1.38;
    }

    .hero-benefits-shell {
        margin-top: -18px;
    }

    .hero-benefits {
        min-height: 82px;
    }

    .benefit-icon {
        width: 33px;
        height: 33px;
        flex-basis: 33px;
    }

    .benefit-svg {
        width: 18px;
        height: 18px;
    }

    .benefit-item {
        font-size: .62rem;
    }

    .travel-card {
        min-height: 158px;
        grid-template-columns: 1fr 96px;
    }

    .travel-card h3 {
        font-size: .98rem;
    }

    .travel-card p {
        font-size: .73rem;
    }

    .travel-card > img {
        width: 43%;
    }
}


/* v20 — imagini carduri aliniate cu designul aprobat */
.travel-card > img {
    object-position: center center;
    background: #fff;
}

@media (min-width: 761px) {
    .travel-card > img {
        width: 49%;
        object-fit: cover;
    }
}

@media (max-width: 760px) {
    .travel-card > img {
        width: 44%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 340px) {
    .travel-card > img {
        width: 41%;
    }
}

@media (max-width: 760px) {
    html,
    body {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .site-footer {
        margin-bottom: 0;
    }
}


/* =========================================================
   HERO – încadrare foto
   Desktop: se vede mai mult din familie, grupul este mutat spre dreapta.
   Mobil: fotografia urcă în spatele textului, cu gradient pentru lizibilitate.
   ========================================================= */

@media (min-width: 761px) {
    .home-hero,
    .hero-content {
        min-height: 540px;
    }

    .hero-photo {
        top: 0;
        right: -12px;
        bottom: auto;
        left: auto;

        /* Nu mai întindem fotografia pe tot hero-ul.
           Astfel nu mai este tăiată masiv sus/jos. */
        width: min(64vw, 980px);
        height: 100%;
        max-width: none;

        object-fit: cover;
        object-position: center 52%;
    }

    .hero-wash {
        background:
            linear-gradient(90deg,
                rgba(240,248,255,1) 0%,
                rgba(240,248,255,.99) 27%,
                rgba(240,248,255,.91) 38%,
                rgba(240,248,255,.52) 49%,
                rgba(240,248,255,.12) 59%,
                rgba(240,248,255,0) 68%);
    }
}

@media (max-width: 760px) {
    .home-hero,
    .hero-content {
        min-height: 520px;
    }

    .hero-photo {
        /* Fotografia începe mai sus și intră în spatele textului. */
        width: auto;
        height: 400px;
        max-width: none;

        top: auto;
        right: auto;
        bottom: 0;
        left: -30vw;

        object-fit: contain;
        object-position: initial;
    }

    .hero-wash {
        /* Text lizibil sus, imagine vizibilă progresiv dedesubt. */
        background:
            linear-gradient(180deg,
                rgba(239,248,255,1) 0%,
                rgba(239,248,255,.98) 27%,
                rgba(239,248,255,.89) 40%,
                rgba(239,248,255,.55) 52%,
                rgba(239,248,255,.16) 66%,
                rgba(239,248,255,0) 80%),
            linear-gradient(90deg,
                rgba(239,248,255,.58) 0%,
                rgba(239,248,255,.24) 58%,
                rgba(239,248,255,0) 100%);
    }

    .hero-copy {
        padding-top: 18px;
    }

    .hero-benefits-shell {
        margin-top: -24px;
    }
}

@media (max-width: 340px) {
    .home-hero,
    .hero-content {
        min-height: 500px;
    }

    .hero-photo {
        height: 385px;
        left: -30vw;
    }

    .hero-copy {
        padding-top: 15px;
    }
}


/* =========================================================
   PAGINĂ: Asigurare medicală vacanță
   ========================================================= */
.medical-page {
    background: #fff;
}

.medical-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 24%, rgba(31,120,207,.16), transparent 28%),
        linear-gradient(135deg, #eef8ff 0%, #f8fbff 56%, #ffffff 100%);
    border-bottom: 1px solid #e5edf6;
}

.medical-hero::before,
.medical-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.medical-hero::before {
    width: 420px;
    height: 420px;
    right: -170px;
    top: -180px;
    background: rgba(11,99,182,.055);
}

.medical-hero::after {
    width: 260px;
    height: 260px;
    right: 24%;
    bottom: -180px;
    background: rgba(255,101,0,.045);
}

.medical-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 505px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: clamp(32px, 5vw, 86px);
    padding-top: 54px;
    padding-bottom: 58px;
}

.medical-hero-copy {
    max-width: 720px;
}

.medical-eyebrow,
.section-kicker {
    margin: 0;
    color: var(--blue);
    font-size: .83rem;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.medical-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #e3f2ff;
    letter-spacing: .02em;
    text-transform: none;
}

.medical-eyebrow-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.medical-hero h1 {
    margin: 20px 0 18px;
    color: #0b2b59;
    font-size: clamp(3.1rem, 4.4vw, 5rem);
    line-height: .98;
    letter-spacing: -.04em;
    font-weight: 790;
}

.medical-hero h1 strong {
    color: var(--blue);
    font-weight: 820;
}

.medical-hero-lead {
    max-width: 690px;
    margin: 0;
    color: #314863;
    font-size: 1.16rem;
    line-height: 1.55;
}

.medical-hero-points {
    margin-top: 27px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px 18px;
}

.medical-hero-points span {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 7px 10px;
    border: 1px solid #dceaf6;
    border-radius: 11px;
    background: rgba(255,255,255,.75);
    color: #17385f;
    font-size: .91rem;
    font-weight: 750;
}

.medical-point-icon {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    color: var(--blue);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.medical-hero-visual {
    position: relative;
    min-height: 380px;
    display: grid;
    place-items: center;
}

.medical-visual-orbit {
    position: absolute;
    border: 1px solid rgba(11,99,182,.13);
    border-radius: 50%;
}

.medical-visual-orbit-one {
    width: 355px;
    height: 355px;
}

.medical-visual-orbit-two {
    width: 470px;
    height: 470px;
    border-style: dashed;
}

.medical-visual-card {
    position: relative;
    z-index: 2;
    width: min(390px, 88%);
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 34px 64px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 34px;
    background: rgba(255,255,255,.83);
    box-shadow: 0 30px 70px rgba(8,48,103,.14);
    backdrop-filter: blur(8px);
    transform: rotate(1.5deg);
}

.medical-visual-card img {
    width: 265px;
    max-width: 90%;
    image-rendering: auto;
    filter: drop-shadow(0 18px 20px rgba(17,61,107,.14));
}

.medical-visual-badge {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: -25px;
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(8,48,103,.13);
}

.medical-visual-badge-icon {
    width: 39px;
    height: 39px;
    padding: 8px;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.medical-visual-badge span {
    display: flex;
    flex-direction: column;
}

.medical-visual-badge strong {
    color: #0b2b59;
    font-size: 1rem;
}

.medical-visual-badge small {
    color: #6c798a;
    font-size: .78rem;
}

.section-space {
    padding: 68px 0;
}

.section-heading {
    max-width: 790px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading-left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.medical-action-intro h2,
.medical-check-copy h2,
.medical-faq-intro h2 {
    margin: 9px 0 12px;
    color: #0b2b59;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
    letter-spacing: -.025em;
}

.section-heading > p:last-child,
.medical-action-intro > p:last-child,
.medical-check-copy > p:last-child,
.medical-faq-intro > p:last-child {
    margin: 0;
    color: #5c6d82;
    font-size: 1rem;
    line-height: 1.55;
}

.medical-coverages {
    background: #fff;
}

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

.medical-cover-card {
    min-height: 245px;
    padding: 25px 23px;
    border: 1px solid #dfeaf5;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #f9fcff 100%);
    box-shadow: 0 12px 28px rgba(8,48,103,.055);
}

.medical-cover-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 15px;
    color: var(--blue);
    background: #eaf5ff;
}

.medical-cover-svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.medical-cover-card h3 {
    margin: 0 0 9px;
    color: #0c2e5c;
    font-size: 1.13rem;
    line-height: 1.18;
}

.medical-cover-card p {
    margin: 0;
    color: #53657a;
    font-size: .91rem;
    line-height: 1.5;
}

.medical-action-section {
    background: #f3f9ff;
    border-top: 1px solid #e5eff8;
    border-bottom: 1px solid #e5eff8;
}

.medical-action-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(34px, 6vw, 90px);
    align-items: center;
}

.medical-action-intro {
    max-width: 510px;
}

.medical-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.medical-steps li {
    min-height: 105px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 17px;
    padding: 18px 21px;
    border: 1px solid #dce8f4;
    border-radius: 16px;
    background: #fff;
}

.medical-step-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 850;
}

.medical-steps h3 {
    margin: 1px 0 5px;
    color: #0b2b59;
    font-size: 1.05rem;
}

.medical-steps p {
    margin: 0;
    color: #5b6e83;
    font-size: .9rem;
    line-height: 1.45;
}

.medical-check-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(34px, 5vw, 78px);
    align-items: center;
    padding: 38px 44px;
    border: 1px solid #dfeaf5;
    border-radius: 24px;
    background:
        radial-gradient(circle at 8% 100%, rgba(11,99,182,.08), transparent 30%),
        #fff;
    box-shadow: 0 18px 45px rgba(8,48,103,.07);
}

.medical-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.medical-check-list li {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 59px;
    padding: 10px 13px;
    border-radius: 12px;
    background: #f6faff;
    color: #41536a;
    font-size: .9rem;
}

.medical-check-icon {
    width: 28px;
    height: 28px;
    color: var(--blue);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.medical-check-list strong {
    color: #0d315f;
}

.medical-cancel-section {
    padding: 0 0 68px;
}

.medical-cancel-card {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 27px 30px;
    border: 1px solid #ffd7bb;
    border-radius: 20px;
    background: linear-gradient(110deg, #fff7f0 0%, #fff 72%);
}

.medical-cancel-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--orange);
    background: #fff0e4;
}

.medical-cancel-svg {
    width: 37px;
    height: 37px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.medical-cancel-kicker {
    margin: 0 0 4px;
    color: var(--orange);
    font-size: .74rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.medical-cancel-copy h2 {
    margin: 0 0 5px;
    color: #b94600;
    font-size: 1.6rem;
    line-height: 1.05;
}

.medical-cancel-copy p:last-child {
    margin: 0;
    max-width: 800px;
    color: #6d584a;
    font-size: .9rem;
    line-height: 1.45;
}

.medical-cancel-card > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 15px;
    border-radius: 10px;
    color: #c34b00;
    background: #fff;
    border: 1px solid #ffcda9;
    font-size: .88rem;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

.medical-faq {
    background: #f8fbfe;
    border-top: 1px solid #e7eef6;
}

.medical-faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(34px, 6vw, 90px);
    align-items: start;
}

.medical-faq-intro {
    position: sticky;
    top: 30px;
}

.medical-faq-list {
    display: grid;
    gap: 10px;
}

.medical-faq-list details {
    overflow: hidden;
    border: 1px solid #dce8f4;
    border-radius: 14px;
    background: #fff;
}

.medical-faq-list summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 18px 52px 18px 20px;
    color: #0d315f;
    font-weight: 800;
}

.medical-faq-list summary::-webkit-details-marker {
    display: none;
}

.medical-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
    font-size: 1.45rem;
    font-weight: 600;
}

.medical-faq-list details[open] summary::after {
    content: "−";
}

.medical-faq-list details p {
    margin: 0;
    padding: 0 20px 18px;
    color: #5b6d81;
    font-size: .92rem;
    line-height: 1.55;
}

.medical-final-cta {
    padding: 38px 0;
    background: #062d61;
    color: #fff;
}

.medical-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.medical-final-cta p {
    margin: 0 0 3px;
    color: #bcd6f4;
    font-size: .9rem;
}

.medical-final-cta h2 {
    margin: 0;
    color: #fff;
    font-size: 1.7rem;
}

.medical-final-cta a {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 21px;
    border-radius: 12px;
    background: #005893;
    color: #fff;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

.medical-final-cta-icon {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 980px) {
    .medical-hero-grid {
        grid-template-columns: 1fr .75fr;
        gap: 25px;
    }

    .medical-cover-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .medical-action-layout,
    .medical-check-card,
    .medical-faq-layout {
        grid-template-columns: 1fr;
    }

    .medical-action-intro,
    .medical-faq-intro {
        max-width: 720px;
    }

    .medical-faq-intro {
        position: static;
    }
}

@media (max-width: 760px) {
    .medical-hero-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 28px;
        padding-bottom: 42px;
    }

    .medical-hero h1 {
        margin-top: 15px;
        font-size: clamp(2.35rem, 11vw, 3rem);
        line-height: 1;
    }

    .medical-hero-lead {
        font-size: .95rem;
        line-height: 1.48;
    }

    .medical-hero-points {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
        margin-top: 19px;
    }

    .medical-hero-points span {
        min-height: 48px;
        padding: 7px 8px;
        font-size: .73rem;
        line-height: 1.12;
    }

    .medical-point-icon {
        width: 19px;
        height: 19px;
        flex-basis: 19px;
    }

    .medical-hero-visual {
        min-height: 226px;
    }

    .medical-visual-orbit-one {
        width: 220px;
        height: 220px;
    }

    .medical-visual-orbit-two {
        width: 285px;
        height: 285px;
    }

    .medical-visual-card {
        width: min(275px, 88%);
        min-height: 190px;
        padding: 18px 20px 45px;
        border-radius: 24px;
    }

    .medical-visual-card img {
        width: 185px;
    }

    .medical-visual-badge {
        left: 18px;
        right: 18px;
        bottom: -20px;
        min-height: 57px;
        padding: 8px 12px;
        border-radius: 14px;
    }

    .medical-visual-badge-icon {
        width: 33px;
        height: 33px;
    }

    .section-space {
        padding: 46px 0;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .section-heading h2,
    .medical-action-intro h2,
    .medical-check-copy h2,
    .medical-faq-intro h2 {
        font-size: 2rem;
    }

    .medical-cover-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .medical-cover-card {
        min-height: 0;
        padding: 18px 17px;
        display: grid;
        grid-template-columns: 47px 1fr;
        grid-template-areas:
            "icon title"
            "icon text";
        column-gap: 13px;
    }

    .medical-cover-icon {
        grid-area: icon;
        width: 45px;
        height: 45px;
        margin: 0;
        border-radius: 13px;
    }

    .medical-cover-svg {
        width: 24px;
        height: 24px;
    }

    .medical-cover-card h3 {
        grid-area: title;
        align-self: end;
        margin-bottom: 4px;
        font-size: 1rem;
    }

    .medical-cover-card p {
        grid-area: text;
        font-size: .82rem;
        line-height: 1.4;
    }

    .medical-action-layout {
        gap: 22px;
    }

    .medical-steps li {
        min-height: 0;
        grid-template-columns: 39px 1fr;
        gap: 12px;
        padding: 14px;
    }

    .medical-step-number {
        width: 36px;
        height: 36px;
    }

    .medical-check-card {
        gap: 22px;
        padding: 24px 18px;
        border-radius: 19px;
    }

    .medical-check-list li {
        grid-template-columns: 30px 1fr;
        min-height: 54px;
        padding: 9px 10px;
        font-size: .82rem;
    }

    .medical-check-icon {
        width: 25px;
        height: 25px;
    }

    .medical-cancel-section {
        padding-bottom: 48px;
    }

    .medical-cancel-card {
        grid-template-columns: 54px 1fr;
        gap: 13px;
        padding: 20px 17px;
    }

    .medical-cancel-icon {
        width: 52px;
        height: 52px;
        border-radius: 15px;
    }

    .medical-cancel-svg {
        width: 29px;
        height: 29px;
    }

    .medical-cancel-copy h2 {
        font-size: 1.35rem;
    }

    .medical-cancel-card > a {
        grid-column: 1 / -1;
        justify-content: center;
        width: 100%;
        white-space: normal;
    }

    .medical-faq-layout {
        gap: 24px;
    }

    .medical-faq-list summary {
        padding: 15px 44px 15px 15px;
        font-size: .9rem;
    }

    .medical-faq-list details p {
        padding: 0 15px 15px;
        font-size: .84rem;
    }

    .medical-final-cta {
        padding: 29px 0 92px;
    }

    .medical-final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .medical-final-cta h2 {
        font-size: 1.45rem;
    }

    .medical-final-cta a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 340px) {
    .medical-hero h1 {
        font-size: 2.1rem;
    }

    .medical-hero-points {
        grid-template-columns: 1fr;
    }

    .medical-hero-points span {
        min-height: 42px;
    }

    .medical-hero-visual {
        min-height: 205px;
    }

    .medical-visual-card {
        width: 250px;
    }

    .medical-visual-card img {
        width: 168px;
    }
}


/* =========================================================
   HERO medical — fotografie umană, fără mockup de produs
   ========================================================= */
.medical-hero-visual,
.medical-visual-orbit,
.medical-visual-card,
.medical-visual-badge {
    display: none !important;
}

.medical-human-visual {
    position: relative;
    margin: 0;
    min-height: 390px;
    overflow: visible;
}

.medical-human-visual > img {
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: 48% 54%;
    border-radius: 28px;
    box-shadow: 0 24px 58px rgba(8,48,103,.14);
}

.medical-human-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(255,255,255,0) 48%,
            rgba(7,39,78,.10) 100%);
}

.medical-human-caption {
    position: absolute;
    z-index: 3;
    left: 24px;
    right: 24px;
    bottom: -29px;
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 16px;
    border: 1px solid rgba(218,232,245,.95);
    border-radius: 17px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 16px 34px rgba(8,48,103,.13);
}

.medical-human-caption-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
}

.medical-human-caption-svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.medical-human-caption > span:last-child {
    display: flex;
    flex-direction: column;
}

.medical-human-caption strong {
    color: #0b2b59;
    font-size: .98rem;
}

.medical-human-caption small {
    margin-top: 2px;
    color: #69778a;
    font-size: .78rem;
    line-height: 1.25;
}

@media (max-width: 980px) {
    .medical-human-visual {
        min-height: 330px;
    }

    .medical-human-visual > img {
        height: 330px;
    }
}

@media (max-width: 760px) {
    .medical-human-visual {
        min-height: 248px;
        margin-top: 2px;
        margin-bottom: 24px;
    }

    .medical-human-visual > img {
        height: 235px;
        border-radius: 20px;
        object-position: 50% 52%;
    }

    .medical-human-visual::after {
        border-radius: 20px;
    }

    .medical-human-caption {
        left: 12px;
        right: 12px;
        bottom: -25px;
        min-height: 62px;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .medical-human-caption-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .medical-human-caption-svg {
        width: 21px;
        height: 21px;
    }

    .medical-human-caption strong {
        font-size: .84rem;
    }

    .medical-human-caption small {
        font-size: .69rem;
    }
}

@media (max-width: 340px) {
    .medical-human-visual {
        min-height: 225px;
    }

    .medical-human-visual > img {
        height: 212px;
        object-position: 50% 52%;
    }

    .medical-human-caption {
        left: 8px;
        right: 8px;
    }
}


/* =========================================================
   Medical v27 — design "peaceful", fotografie umană
   ========================================================= */

.medical-peace-hero {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background: #eaf7ff;
    border-bottom: 1px solid #e4edf6;
}

.medical-peace-photo {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    width: 67%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 50%;
}

.medical-peace-wash {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(246,251,255,1) 0%,
            rgba(246,251,255,.99) 30%,
            rgba(246,251,255,.93) 42%,
            rgba(246,251,255,.55) 52%,
            rgba(246,251,255,.10) 63%,
            rgba(246,251,255,0) 73%);
}

.medical-peace-inner {
    position: relative;
    z-index: 2;
    min-height: 590px;
    display: flex;
    align-items: center;
}

.medical-peace-copy {
    width: 54%;
    max-width: 690px;
    padding: 48px 0 42px;
}

.medical-peace-copy h1 {
    margin: 19px 0 18px;
    color: #0b2b59;
    font-size: clamp(3.15rem, 4.45vw, 5.1rem);
    line-height: .98;
    letter-spacing: -.042em;
    font-weight: 790;
}

.medical-peace-copy h1 strong {
    color: var(--blue);
    font-weight: 820;
}

.medical-peace-lead {
    max-width: 650px;
    margin: 0;
    color: #40536c;
    font-size: 1.08rem;
    line-height: 1.56;
}

.medical-peace-points {
    max-width: 760px;
    margin-top: 27px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.medical-peace-points > span {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border: 1px solid rgba(206,225,241,.95);
    border-radius: 12px;
    background: rgba(255,255,255,.84);
    color: #14355e;
    font-size: .88rem;
    line-height: 1.25;
    font-weight: 760;
    backdrop-filter: blur(5px);
}

.medical-help-note {
    width: fit-content;
    max-width: 530px;
    min-height: 70px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 17px;
    border: 1px solid #ffc96c;
    border-radius: 13px;
    background: rgba(255,249,228,.94);
    color: #5b4a21;
}

.medical-help-note-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    color: #ee9900;
}

.medical-help-note-svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.medical-help-note > span:last-child {
    display: flex;
    flex-direction: column;
}

.medical-help-note strong {
    color: #29405c;
    font-size: .91rem;
}

.medical-help-note small {
    margin-top: 2px;
    color: #8a6b26;
    font-size: .78rem;
}

/* servicii medicale — fără carduri "AI", mult aer */
.medical-services {
    background: #fff;
}

.medical-services-layout {
    display: grid;
    grid-template-columns: .72fr 1.78fr;
    gap: clamp(34px, 5vw, 82px);
    align-items: start;
}

.medical-services-intro {
    max-width: 420px;
}

.medical-services-intro h2 {
    margin: 10px 0 14px;
    color: #0b2b59;
    font-size: clamp(2.2rem, 3vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -.03em;
}

.medical-services-intro h2 strong {
    color: var(--blue);
}

.medical-services-intro > p:last-child {
    margin: 0;
    color: #647388;
    font-size: .96rem;
    line-height: 1.58;
}

.medical-service-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.medical-service-item {
    min-width: 0;
    padding: 4px 20px 8px;
    text-align: center;
    border-left: 1px solid #e2ebf4;
}

.medical-service-item:first-child {
    border-left: 0;
}

.medical-service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #edf6ff;
    color: var(--blue);
}

.medical-service-svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.medical-service-item h3 {
    min-height: 48px;
    margin: 0 0 9px;
    color: #0e315f;
    font-size: .98rem;
    line-height: 1.25;
}

.medical-service-item p {
    margin: 0;
    color: #65758a;
    font-size: .82rem;
    line-height: 1.48;
}

.medical-important {
    margin-top: 38px;
    min-height: 91px;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 22px;
    border: 1px solid #bcdcff;
    border-radius: 15px;
    background: linear-gradient(90deg, #f0f8ff, #f8fcff);
}

.medical-important-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
}

.medical-important-svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.medical-important strong {
    color: #0e315f;
    font-size: .94rem;
}

.medical-important p {
    margin: 3px 0 0;
    color: #5f7084;
    font-size: .84rem;
    line-height: 1.45;
}

@media (max-width: 1100px) {
    .medical-peace-photo {
        width: 64%;
    }

    .medical-peace-copy {
        width: 58%;
    }

    .medical-service-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px 0;
    }

    .medical-service-item:nth-child(4) {
        border-left: 0;
    }
}

@media (max-width: 760px) {
    .medical-peace-hero {
        min-height: 700px;
    }

    .medical-peace-photo {
        top: auto;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 345px;
        object-position: 58% 50%;
    }

    .medical-peace-wash {
        background:
            linear-gradient(180deg,
                rgba(246,251,255,1) 0%,
                rgba(246,251,255,.99) 43%,
                rgba(246,251,255,.91) 52%,
                rgba(246,251,255,.26) 68%,
                rgba(246,251,255,0) 82%);
    }

    .medical-peace-inner {
        min-height: 700px;
        align-items: flex-start;
    }

    .medical-peace-copy {
        width: 100%;
        max-width: none;
        padding: 25px 0 0;
    }

    .medical-peace-copy h1 {
        margin: 14px 0 12px;
        max-width: 305px;
        font-size: clamp(2.25rem, 11vw, 3.05rem);
    }

    .medical-peace-lead {
        max-width: 304px;
        font-size: .9rem;
        line-height: 1.47;
    }

    .medical-peace-points {
        max-width: 310px;
        margin-top: 16px;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .medical-peace-points > span {
        min-height: 53px;
        padding: 7px 8px;
        font-size: .68rem;
    }

    .medical-help-note {
        display: none;
    }

    .medical-services-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .medical-services-intro {
        max-width: none;
    }

    .medical-service-list {
        grid-template-columns: 1fr;
        gap: 0;
        border: 1px solid #e0eaf4;
        border-radius: 16px;
        overflow: hidden;
    }

    .medical-service-item,
    .medical-service-item:nth-child(4) {
        min-height: 92px;
        display: grid;
        grid-template-columns: 50px 1fr;
        grid-template-areas:
            "icon title"
            "icon text";
        gap: 2px 12px;
        align-items: center;
        padding: 13px 14px;
        text-align: left;
        border-left: 0;
        border-top: 1px solid #e4edf5;
    }

    .medical-service-item:first-child {
        border-top: 0;
    }

    .medical-service-icon {
        grid-area: icon;
        width: 46px;
        height: 46px;
        margin: 0;
    }

    .medical-service-svg {
        width: 24px;
        height: 24px;
    }

    .medical-service-item h3 {
        grid-area: title;
        min-height: 0;
        margin: 0;
        font-size: .92rem;
        align-self: end;
    }

    .medical-service-item p {
        grid-area: text;
        font-size: .76rem;
        line-height: 1.35;
        align-self: start;
    }

    .medical-important {
        margin-top: 18px;
        grid-template-columns: 42px 1fr;
        gap: 11px;
        padding: 13px 14px;
    }

    .medical-important-icon {
        width: 40px;
        height: 40px;
    }

    .medical-important-svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 340px) {
    .medical-peace-hero,
    .medical-peace-inner {
        min-height: 665px;
    }

    .medical-peace-photo {
        height: 315px;
    }

    .medical-peace-copy h1 {
        max-width: 286px;
        font-size: 2.08rem;
    }

    .medical-peace-lead {
        font-size: .82rem;
    }

    .medical-peace-points > span {
        font-size: .62rem;
    }
}


/* v28 — hero medical mai zoom-out */
.medical-peace-photo {
    object-position: center 50%;
}

@media (max-width: 760px) {
    .medical-peace-photo {
        object-position: 68% 50%;
    }
}

@media (max-width: 340px) {
    .medical-peace-photo {
        object-position: 70% 50%;
    }
}


/* =========================================================
   PAGINĂ: Familie și copii
   ========================================================= */
.family-hero {
    position: relative;
    min-height: 555px;
    overflow: hidden;
    background: #eff9ff;
    border-bottom: 1px solid #e2edf6;
}

.family-hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.family-hero-wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(244,251,255,1) 0%,
            rgba(244,251,255,.99) 35%,
            rgba(244,251,255,.90) 45%,
            rgba(244,251,255,.36) 56%,
            rgba(244,251,255,0) 69%);
}

.family-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 555px;
    display: flex;
    align-items: center;
}

.family-hero-copy {
    width: 55%;
    max-width: 700px;
    padding: 42px 0 46px;
}

.family-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 11px;
    border-radius: 999px;
    background: #eaf4fa;
    color: #005893;
    font-weight: 800;
    font-size: .82rem;
}

.family-eyebrow-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.family-hero h1 {
    margin: 19px 0 18px;
    color: #0b2b59;
    font-size: clamp(3rem,4.2vw,4.7rem);
    line-height: .99;
    letter-spacing: -.035em;
}

.family-hero h1 strong {
    color: #005893;
}

.family-hero-lead {
    max-width: 635px;
    margin: 0;
    color: #42566f;
    font-size: 1.08rem;
    line-height: 1.55;
}

.family-hero-points {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 9px;
    max-width: 690px;
}

.family-hero-points span {
    min-height: 57px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    border: 1px solid #d8e8f1;
    border-radius: 12px;
    background: rgba(255,255,255,.86);
    color: #25435f;
    font-size: .86rem;
    font-weight: 760;
}

.family-point-icon {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    color: #005893;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.family-heading {
    max-width: 760px;
}

.family-check-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 15px;
}

.family-check-grid article {
    min-height: 210px;
    padding: 23px 21px;
    border: 1px solid #dfeaf3;
    border-radius: 17px;
    background: linear-gradient(180deg,#fff,#f9fcff);
}

.family-check-grid article > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 50%;
    background: #005893;
    color: #fff;
    font-weight: 850;
}

.family-check-grid h3 {
    margin: 0 0 8px;
    color: #0d315f;
    font-size: 1.04rem;
}

.family-check-grid p {
    margin: 0;
    color: #617187;
    font-size: .87rem;
    line-height: 1.48;
}

.family-support {
    background: #f3f8fb;
    border-top: 1px solid #d9e8f1;
    border-bottom: 1px solid #d9e8f1;
}

.family-support-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(32px,5vw,78px);
    align-items: center;
}

.family-support-copy h2,
.family-age-card h2,
.family-faq-intro h2 {
    margin: 9px 0 13px;
    color: #0b2b59;
    font-size: clamp(2rem,3vw,3rem);
    line-height: 1.05;
}

.family-support-copy > p:last-of-type,
.family-age-card p:last-child,
.family-faq-intro > p:last-child {
    margin: 0;
    color: #5d7084;
    line-height: 1.55;
}

.family-inline-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    color: #1765b5;
    font-weight: 800;
    text-decoration: none;
}

.family-support-list {
    display: grid;
    gap: 10px;
}

.family-support-list > div {
    min-height: 86px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    padding: 13px 17px;
    border: 1px solid #d7e7f0;
    border-radius: 14px;
    background: #fff;
}

.family-support-icon {
    width: 39px;
    height: 39px;
    color: #005893;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.family-support-list span {
    display: flex;
    flex-direction: column;
}

.family-support-list strong {
    color: #0d315f;
}

.family-support-list small {
    margin-top: 2px;
    color: #6a7889;
}

.family-age-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
    align-items: center;
    padding: 30px 34px;
    border: 1px solid #dce9f5;
    border-radius: 21px;
    background: linear-gradient(110deg,#f7fbff,#fff);
}

.family-age-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #eaf4fa;
    color: #005893;
}

.family-age-svg {
    width: 37px;
    height: 37px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.family-age-card h2 {
    margin-top: 5px;
    font-size: 1.65rem;
}

.family-sport-section {
    padding: 0 0 16px;
}

.family-cancel-section {
    padding: 0 0 62px;
}

.family-topic-card {
    display: grid;
    grid-template-columns: 65px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 24px 28px;
    border-radius: 19px;
}

.family-topic-card-blue {
    border: 1px solid #d5e5fa;
    background: linear-gradient(110deg,#f4f9ff,#fff);
}

.family-topic-card-orange {
    border: 1px solid #ffd5b7;
    background: linear-gradient(110deg,#fff6ef,#fff);
}

.family-topic-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 17px;
}

.family-topic-card-blue .family-topic-icon {
    color: #1765b5;
    background: #e8f2ff;
}

.family-topic-card-orange .family-topic-icon {
    color: var(--orange);
    background: #fff0e5;
}

.family-topic-svg {
    width: 33px;
    height: 33px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.family-topic-kicker {
    margin: 0 0 3px;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.family-topic-card-blue .family-topic-kicker { color: #1765b5; }
.family-topic-card-orange .family-topic-kicker { color: var(--orange); }

.family-topic-card h2 {
    margin: 0 0 4px;
    color: #0d315f;
    font-size: 1.45rem;
}

.family-topic-card p:last-child {
    margin: 0;
    color: #607185;
    font-size: .9rem;
}

.family-topic-card > a {
    display: inline-flex;
    align-items: center;
    padding: 11px 14px;
    border-radius: 10px;
    background: #fff;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.family-topic-card-blue > a {
    color: #1765b5;
    border: 1px solid #cfe1f8;
}

.family-topic-card-orange > a {
    color: #c64d00;
    border: 1px solid #ffcba6;
}

.family-faq {
    background: #f8fbfe;
    border-top: 1px solid #e6eef6;
}

.family-faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(34px,6vw,90px);
    align-items: start;
}

.family-faq-intro {
    max-width: 450px;
}

@media (max-width:980px) {
    .family-hero-photo {
        width: 55%;
    }

    .family-check-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .family-support-layout,
    .family-faq-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width:760px) {
    .family-hero {
        min-height: 690px;
    }

    .family-hero-photo {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 340px;
        object-position: center center;
    }

    .family-hero-wash {
        background:
            linear-gradient(180deg,
                rgba(244,251,255,1) 0%,
                rgba(244,251,255,.99) 46%,
                rgba(244,251,255,.90) 56%,
                rgba(244,251,255,.25) 72%,
                rgba(244,251,255,0) 84%);
    }

    .family-hero-inner {
        min-height: 690px;
        align-items: flex-start;
    }

    .family-hero-copy {
        width: 100%;
        padding: 25px 0 0;
    }

    .family-hero h1 {
        margin: 14px 0 11px;
        max-width: 305px;
        font-size: clamp(2.3rem,11vw,3.05rem);
    }

    .family-hero-lead {
        max-width: 305px;
        font-size: .9rem;
        line-height: 1.46;
    }

    .family-hero-points {
        max-width: 310px;
        margin-top: 15px;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .family-hero-points span {
        min-height: 52px;
        padding: 7px 8px;
        font-size: .67rem;
        line-height: 1.15;
    }

    .family-check-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .family-check-grid article {
        min-height: 0;
        display: grid;
        grid-template-columns: 42px 1fr;
        grid-template-areas:
            "number title"
            "number text";
        gap: 2px 12px;
        padding: 15px;
    }

    .family-check-grid article > span {
        grid-area: number;
        width: 38px;
        height: 38px;
        margin: 0;
    }

    .family-check-grid h3 {
        grid-area: title;
        margin: 0 0 3px;
        font-size: .95rem;
    }

    .family-check-grid p {
        grid-area: text;
        font-size: .78rem;
    }

    .family-age-card {
        grid-template-columns: 52px 1fr;
        gap: 13px;
        padding: 20px 17px;
    }

    .family-age-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .family-age-svg {
        width: 29px;
        height: 29px;
    }

    .family-age-card h2 {
        font-size: 1.25rem;
    }

    .family-topic-card {
        grid-template-columns: 52px 1fr;
        gap: 13px;
        padding: 19px 16px;
    }

    .family-topic-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .family-topic-svg {
        width: 28px;
        height: 28px;
    }

    .family-topic-card h2 {
        font-size: 1.2rem;
    }

    .family-topic-card > a {
        grid-column: 1/-1;
        justify-content: center;
        width: 100%;
        white-space: normal;
    }

    .family-faq-layout {
        gap: 24px;
    }
}

@media (max-width:340px) {
    .family-hero,
    .family-hero-inner {
        min-height: 655px;
    }

    .family-hero-photo {
        height: 312px;
    }

    .family-hero h1 {
        font-size: 2.08rem;
    }

    .family-hero-lead {
        font-size: .82rem;
    }

    .family-hero-points span {
        font-size: .61rem;
    }
}


/* Font Awesome — caret pentru linkurile interne */
.link-caret-fa {
    margin-left: 5px;
    font-size: .9em;
    line-height: 1;
    vertical-align: -0.04em;
}


/* =========================================================
   Familie final — imagine clară + meniu Acasă + CTA #005893
   ========================================================= */
.family-page .family-hero {
    min-height: 575px;
}

.family-page .family-hero-photo {
    width: 61%;
    height: 100%;
    right: 0;
    object-fit: cover;
    object-position: 48% 52%;
    filter: none;
}

.family-page .family-hero-wash {
    background:
        linear-gradient(90deg,
            rgba(245,251,255,1) 0%,
            rgba(245,251,255,.99) 32%,
            rgba(245,251,255,.92) 42%,
            rgba(245,251,255,.55) 51%,
            rgba(245,251,255,.12) 60%,
            rgba(245,251,255,0) 69%);
}

.family-page .family-hero-inner {
    min-height: 575px;
}

.family-page .family-hero-copy {
    width: 53%;
}

@media (max-width: 760px) {
    .family-page .family-hero {
        min-height: 700px;
    }

    .family-page .family-hero-inner {
        min-height: 700px;
    }

    .family-page .family-hero-photo {
        width: 100%;
        height: 345px;
        top: auto;
        right: 0;
        bottom: 0;
        object-position: 54% 52%;
    }

    .family-page .family-hero-wash {
        background:
            linear-gradient(180deg,
                rgba(245,251,255,1) 0%,
                rgba(245,251,255,.99) 44%,
                rgba(245,251,255,.91) 54%,
                rgba(245,251,255,.30) 70%,
                rgba(245,251,255,0) 83%);
    }
}

@media (max-width: 340px) {
    .family-page .family-hero,
    .family-page .family-hero-inner {
        min-height: 665px;
    }

    .family-page .family-hero-photo {
        height: 315px;
        object-position: 55% 52%;
    }
}


/* v34 — Familie: CTA portocaliu + fotografie fără badge imprimat */
.family-page .medical-final-cta a {
    background: var(--orange);
    color: #fff;
}

.family-page .medical-final-cta a:hover {
    background: #e85b00;
}

/* Crop-ul nou mută familia puțin spre stânga în fișier;
   compensăm doar în încadrare, fără zoom suplimentar. */
.family-page .family-hero-photo {
    object-position: 52% 52%;
}

@media (max-width: 760px) {
    .family-page .family-hero-photo {
        object-position: 54% 52%;
    }
}


/* =========================================================
   PAGINĂ: Sport și Schi
   ========================================================= */
.sport-hero {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    background: #eef7ff;
    border-bottom: 1px solid #dfeaf4;
}

.sport-hero-photo {
    position: absolute;
    inset: 0 0 0 auto;
    width: 67%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 50%;
}

.sport-hero-wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(244,250,255,1) 0%,
            rgba(244,250,255,.99) 31%,
            rgba(244,250,255,.91) 42%,
            rgba(244,250,255,.50) 52%,
            rgba(244,250,255,.11) 61%,
            rgba(244,250,255,0) 70%);
}

.sport-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 570px;
    display: flex;
    align-items: center;
}

.sport-hero-copy {
    width: 53%;
    max-width: 700px;
    padding: 42px 0;
}

.sport-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 11px;
    border-radius: 999px;
    background: #edf4ff;
    color: #375a9d;
    font-size: .82rem;
    font-weight: 800;
}

.sport-eyebrow-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sport-hero h1 {
    margin: 18px 0 16px;
    color: #0b2b59;
    font-size: clamp(3rem,4.25vw,4.8rem);
    line-height: .98;
    letter-spacing: -.038em;
}

.sport-hero h1 strong {
    color: #005893;
}

.sport-hero-lead {
    max-width: 650px;
    margin: 0;
    color: #43566d;
    font-size: 1.06rem;
    line-height: 1.54;
}

.sport-hero-points {
    max-width: 700px;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 9px;
}

.sport-hero-points span {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    border: 1px solid #d9e7f4;
    border-radius: 12px;
    background: rgba(255,255,255,.88);
    color: #23415f;
    font-size: .83rem;
    font-weight: 760;
}

.sport-point-icon {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    color: #005893;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sport-intro-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(35px,5vw,80px);
    align-items: center;
}

.sport-intro-copy h2,
.ski-focus-copy h2 {
    margin: 9px 0 13px;
    color: #0b2b59;
    font-size: clamp(2.1rem,3vw,3.2rem);
    line-height: 1.04;
}

.sport-intro-copy > p:last-child,
.ski-focus-copy > p:last-of-type {
    margin: 0;
    color: #607287;
    line-height: 1.55;
}

.sport-intro-visual {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(8,48,103,.10);
}

.sport-intro-visual img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 45%;
}

.sport-intro-caption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    border-radius: 12px;
    background: rgba(255,255,255,.94);
    color: #0b2b59;
    box-shadow: 0 10px 25px rgba(8,48,103,.12);
}

.sport-intro-caption i {
    color: #005893;
    font-size: 1.4rem;
}

.sport-intro-caption span {
    display: flex;
    flex-direction: column;
}

.sport-intro-caption small {
    color: #66768a;
}

.sport-cover {
    background: #f7fbfe;
    border-top: 1px solid #e5edf5;
    border-bottom: 1px solid #e5edf5;
}

.sport-cover-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 15px;
}

.sport-cover-card {
    min-height: 245px;
    padding: 23px 21px;
    border: 1px solid #dbe7f2;
    border-radius: 17px;
    background: #fff;
}

.sport-cover-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 15px;
    background: #eaf4fa;
    color: #005893;
    font-size: 1.55rem;
}

.sport-cover-card h3 {
    margin: 0 0 8px;
    color: #0d315f;
    font-size: 1.05rem;
}

.sport-cover-card p {
    margin: 0;
    color: #607186;
    font-size: .87rem;
    line-height: 1.48;
}

.ski-focus {
    background: #fff;
}

.ski-focus-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(34px,5vw,78px);
    align-items: center;
}

.ski-check-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.ski-check-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 7px;
    align-items: start;
    color: #43566e;
}

.ski-check-list i {
    color: var(--orange);
    margin-top: 4px;
}

.ski-focus-note {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 17px;
    align-items: start;
    padding: 24px;
    border: 1px solid #ffd2b4;
    border-radius: 18px;
    background: linear-gradient(120deg,#fff5ed,#fff);
}

.ski-focus-note-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--orange);
    background: #fff0e5;
    font-size: 1.5rem;
}

.sport-note-kicker {
    margin: 0 0 3px;
    color: var(--orange);
    text-transform: uppercase;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
}

.ski-focus-note h3 {
    margin: 0 0 6px;
    color: #0d315f;
    font-size: 1.3rem;
}

.ski-focus-note p:last-child {
    margin: 0;
    color: #6b5a4f;
    font-size: .88rem;
    line-height: 1.48;
}

.sport-medical {
    padding-top: 0;
}

.sport-medical-card {
    display: grid;
    grid-template-columns: 68px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 27px 30px;
    border: 1px solid #dce8f3;
    border-radius: 20px;
    background: linear-gradient(110deg,#f4f9fd,#fff);
}

.sport-medical-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #005893;
    background: #eaf4fa;
}

.sport-medical-svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sport-medical-card h2 {
    margin: 4px 0 5px;
    color: #0d315f;
    font-size: 1.45rem;
}

.sport-medical-card p:last-child {
    margin: 0;
    color: #617287;
    font-size: .9rem;
}

.sport-medical-card > a {
    display: inline-flex;
    align-items: center;
    padding: 11px 14px;
    border: 1px solid #cfe0ed;
    border-radius: 10px;
    color: #005893;
    background: #fff;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.sport-cancel-section {
    padding: 0 0 62px;
}

.sport-faq {
    background: #f8fbfe;
    border-top: 1px solid #e5edf5;
}

/* CTA maxim rămâne portocaliu */
.sport-page .medical-final-cta a {
    background: var(--orange);
}

.sport-page .medical-final-cta a:hover {
    background: #e85b00;
}

@media (max-width:980px) {
    .sport-cover-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .sport-intro-layout,
    .ski-focus-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width:760px) {
    .sport-hero {
        min-height: 690px;
    }

    .sport-hero-photo {
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 340px;
        object-position: 64% 50%;
    }

    .sport-hero-wash {
        background:
            linear-gradient(180deg,
                rgba(244,250,255,1) 0%,
                rgba(244,250,255,.99) 45%,
                rgba(244,250,255,.90) 55%,
                rgba(244,250,255,.28) 71%,
                rgba(244,250,255,0) 84%);
    }

    .sport-hero-inner {
        min-height: 690px;
        align-items: flex-start;
    }

    .sport-hero-copy {
        width: 100%;
        padding: 25px 0 0;
    }

    .sport-hero h1 {
        margin: 14px 0 11px;
        max-width: 305px;
        font-size: clamp(2.3rem,11vw,3.05rem);
    }

    .sport-hero-lead {
        max-width: 305px;
        font-size: .9rem;
        line-height: 1.46;
    }

    .sport-hero-points {
        max-width: 310px;
        margin-top: 15px;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .sport-hero-points span {
        min-height: 51px;
        padding: 7px 8px;
        font-size: .66rem;
        line-height: 1.14;
    }

    .sport-intro-visual img {
        height: 220px;
    }

    .sport-cover-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sport-cover-card {
        min-height: 0;
        display: grid;
        grid-template-columns: 47px 1fr;
        grid-template-areas:
            "icon title"
            "icon text";
        column-gap: 12px;
        padding: 16px;
    }

    .sport-cover-icon {
        grid-area: icon;
        width: 45px;
        height: 45px;
        margin: 0;
        font-size: 1.25rem;
    }

    .sport-cover-card h3 {
        grid-area: title;
        align-self: end;
        margin-bottom: 3px;
        font-size: .96rem;
    }

    .sport-cover-card p {
        grid-area: text;
        font-size: .78rem;
    }

    .ski-focus-note {
        grid-template-columns: 50px 1fr;
        gap: 13px;
        padding: 18px 16px;
    }

    .ski-focus-note-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .sport-medical-card {
        grid-template-columns: 52px 1fr;
        gap: 13px;
        padding: 20px 17px;
    }

    .sport-medical-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .sport-medical-svg {
        width: 28px;
        height: 28px;
    }

    .sport-medical-card h2 {
        font-size: 1.18rem;
    }

    .sport-medical-card > a {
        grid-column: 1/-1;
        justify-content: center;
        width: 100%;
        white-space: normal;
    }
}

@media (max-width:340px) {
    .sport-hero,
    .sport-hero-inner {
        min-height: 655px;
    }

    .sport-hero-photo {
        height: 312px;
        object-position: 67% 50%;
    }

    .sport-hero h1 {
        font-size: 2.08rem;
    }

    .sport-hero-lead {
        font-size: .82rem;
    }

    .sport-hero-points span {
        font-size: .60rem;
    }
}


/* =========================================================
   Font Awesome 5.15.1 local — completări pentru glyph-urile
   existente în fa-solid-900.woff2, dar lipsă din subsetul CSS.
   ========================================================= */
.fa-caret-right::before { content: "\f0da"; }
.fa-trophy::before { content: "\f091"; }
.fa-receipt::before { content: "\f543"; }
.fa-suitcase-rolling::before { content: "\f5c1"; }
.fa-person-hiking::before { content: "\f6ec"; }
.fa-person-skiing::before { content: "\f7c9"; }

/* Font Awesome local — completări Anulare Vacanță */

.fa-calendar-times::before { content: "\f273"; }
.fa-user-times::before { content: "\f235"; }
.fa-car-crash::before { content: "\f5e1"; }
.fa-balance-scale::before { content: "\f24e"; }
.fa-hotel::before { content: "\f594"; }
.fa-file-contract::before { content: "\f56c"; }
.fa-file-alt::before { content: "\f15c"; }
.fa-undo-alt::before { content: "\f2ea"; }


/* =========================================================
   PAGINĂ: Anulare Vacanță
   ========================================================= */
.cancel-hero {
    position: relative;
    min-height: 565px;
    overflow: hidden;
    background: #fff7f0;
    border-bottom: 1px solid #f1e4d9;
}

.cancel-hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 61%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 52%;
}

.cancel-hero-wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(255,250,246,1) 0%,
            rgba(255,250,246,.99) 32%,
            rgba(255,250,246,.93) 43%,
            rgba(255,250,246,.55) 53%,
            rgba(255,250,246,.12) 62%,
            rgba(255,250,246,0) 71%);
}

.cancel-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 565px;
    display: flex;
    align-items: center;
}

.cancel-hero-copy {
    width: 53%;
    max-width: 700px;
    padding: 42px 0;
}

.cancel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 11px;
    border-radius: 999px;
    background: #fff0e5;
    color: var(--orange);
    font-size: .82rem;
    font-weight: 850;
}

.cancel-eyebrow-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cancel-hero h1 {
    margin: 18px 0 17px;
    color: #0b2b59;
    font-size: clamp(3rem,4.25vw,4.8rem);
    line-height: .98;
    letter-spacing: -.038em;
}

.cancel-hero h1 strong {
    color: var(--orange);
}

.cancel-hero-lead {
    max-width: 650px;
    margin: 0;
    color: #4c5b6e;
    font-size: 1.06rem;
    line-height: 1.55;
}

.cancel-hero-points {
    max-width: 690px;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 9px;
}

.cancel-hero-points span {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    border: 1px solid #f0d9c8;
    border-radius: 12px;
    background: rgba(255,255,255,.89);
    color: #29425f;
    font-size: .82rem;
    font-weight: 760;
}

.cancel-hero-points i {
    width: 23px;
    flex: 0 0 23px;
    color: var(--orange);
    text-align: center;
    font-size: 1.08rem;
}

.cancel-heading {
    max-width: 800px;
}

.cancel-difference-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

.cancel-difference-card {
    min-height: 215px;
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 18px;
    align-items: start;
    padding: 26px 27px;
    border-radius: 19px;
}

.cancel-before {
    border: 1px solid #ffd0ae;
    background: linear-gradient(120deg,#fff5ed,#fff);
}

.cancel-after {
    border: 1px solid #d9e7f3;
    background: linear-gradient(120deg,#f3f8fc,#fff);
}

.cancel-difference-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    font-size: 1.4rem;
}

.cancel-before .cancel-difference-icon {
    color: var(--orange);
    background: #fff0e5;
}

.cancel-after .cancel-difference-icon {
    color: #005893;
    background: #eaf4fa;
}

.cancel-difference-card div > p:first-child {
    margin: 0 0 3px;
    font-size: .74rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.cancel-before div > p:first-child { color: var(--orange); }
.cancel-after div > p:first-child { color: #005893; }

.cancel-difference-card h3 {
    margin: 0 0 7px;
    color: #0d315f;
    font-size: 1.45rem;
}

.cancel-difference-card div > p:last-child {
    margin: 0;
    color: #607185;
    line-height: 1.5;
}

.cancel-events {
    background: #fffaf6;
    border-top: 1px solid #f2e4d9;
    border-bottom: 1px solid #f2e4d9;
}

.cancel-events-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
}

.cancel-events-grid article {
    min-height: 205px;
    padding: 22px 20px;
    border: 1px solid #eedfd4;
    border-radius: 16px;
    background: #fff;
}

.cancel-events-grid article > span {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    margin-bottom: 15px;
    border-radius: 14px;
    color: var(--orange);
    background: #fff1e7;
    font-size: 1.25rem;
}

.cancel-events-grid h3 {
    margin: 0 0 8px;
    color: #0d315f;
    font-size: 1.02rem;
}

.cancel-events-grid p {
    margin: 0;
    color: #647388;
    font-size: .86rem;
    line-height: 1.48;
}

.cancel-costs-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(34px,5vw,80px);
    align-items: center;
}

.cancel-costs-copy h2 {
    margin: 9px 0 13px;
    color: #0b2b59;
    font-size: clamp(2.1rem,3vw,3.1rem);
    line-height: 1.04;
}

.cancel-costs-copy p {
    margin: 0 0 10px;
    color: #607185;
    line-height: 1.55;
}

.cancel-cost-list {
    display: grid;
    gap: 10px;
}

.cancel-cost-list > div {
    min-height: 82px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
    padding: 13px 16px;
    border: 1px solid #dce7f1;
    border-radius: 14px;
    background: #fff;
}

.cancel-cost-list i {
    color: var(--orange);
    font-size: 1.35rem;
    text-align: center;
}

.cancel-cost-list span {
    display: flex;
    flex-direction: column;
}

.cancel-cost-list strong {
    color: #0d315f;
}

.cancel-cost-list small {
    margin-top: 2px;
    color: #6b798b;
}

.cancel-steps {
    background: #f7fbfe;
    border-top: 1px solid #e5edf4;
    border-bottom: 1px solid #e5edf4;
}

.cancel-step-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

.cancel-step-list li {
    min-height: 190px;
    padding: 22px 20px;
    border: 1px solid #dce8f2;
    border-radius: 16px;
    background: #fff;
}

.cancel-step-list li > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 50%;
    color: #fff;
    background: var(--orange);
    font-weight: 850;
}

.cancel-step-list h3 {
    margin: 0 0 7px;
    color: #0d315f;
    font-size: 1rem;
}

.cancel-step-list p {
    margin: 0;
    color: #647388;
    font-size: .86rem;
    line-height: 1.48;
}

.cancel-faq {
    background: #fff;
}

.cancel-important {
    padding: 0 0 58px;
}

.cancel-important-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: center;
    padding: 14px 19px;
    border: 1px solid #f1cfb5;
    border-radius: 15px;
    background: linear-gradient(90deg,#fff7f0,#fff);
}

.cancel-important-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--orange);
    background: #fff0e5;
    font-size: 1.2rem;
}

.cancel-important strong {
    color: #0d315f;
}

.cancel-important p {
    margin: 2px 0 0;
    color: #6a7889;
    font-size: .84rem;
}

.cancel-page .medical-final-cta a {
    background: var(--orange);
}

.cancel-page .medical-final-cta a:hover {
    background: #e85b00;
}

.cancel-page .nav-cancel {
    color: var(--orange);
}

.cancel-page .nav-cancel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 2px;
    background: var(--orange);
}

@media (max-width:980px) {
    .cancel-events-grid {
        grid-template-columns: repeat(2,1fr);
    }

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

@media (max-width:760px) {
    .cancel-hero {
        min-height: 680px;
    }

    .cancel-hero-photo {
        top: auto;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 340px;
        object-position: 65% 52%;
    }

    .cancel-hero-wash {
        background:
            linear-gradient(180deg,
                rgba(255,250,246,1) 0%,
                rgba(255,250,246,.99) 45%,
                rgba(255,250,246,.90) 55%,
                rgba(255,250,246,.28) 71%,
                rgba(255,250,246,0) 84%);
    }

    .cancel-hero-inner {
        min-height: 680px;
        align-items: flex-start;
    }

    .cancel-hero-copy {
        width: 100%;
        padding: 25px 0 0;
    }

    .cancel-hero h1 {
        margin: 14px 0 11px;
        max-width: 305px;
        font-size: clamp(2.3rem,11vw,3.05rem);
    }

    .cancel-hero-lead {
        max-width: 305px;
        font-size: .89rem;
        line-height: 1.46;
    }

    .cancel-hero-points {
        max-width: 310px;
        margin-top: 15px;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .cancel-hero-points span {
        min-height: 49px;
        padding: 7px 8px;
        font-size: .64rem;
        line-height: 1.14;
    }

    .cancel-difference-grid,
    .cancel-events-grid,
    .cancel-step-list {
        grid-template-columns: 1fr;
    }

    .cancel-difference-card {
        min-height: 0;
        grid-template-columns: 52px 1fr;
        gap: 13px;
        padding: 18px 16px;
    }

    .cancel-difference-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .cancel-events-grid {
        gap: 10px;
    }

    .cancel-events-grid article {
        min-height: 0;
        display: grid;
        grid-template-columns: 47px 1fr;
        grid-template-areas:
            "icon title"
            "icon text";
        gap: 2px 12px;
        padding: 15px;
    }

    .cancel-events-grid article > span {
        grid-area: icon;
        width: 45px;
        height: 45px;
        margin: 0;
    }

    .cancel-events-grid h3 {
        grid-area: title;
        margin: 0 0 3px;
        align-self: end;
        font-size: .94rem;
    }

    .cancel-events-grid p {
        grid-area: text;
        font-size: .77rem;
    }

    .cancel-step-list li {
        min-height: 0;
    }

    .cancel-important {
        padding-bottom: 92px;
    }
}

@media (max-width:340px) {
    .cancel-hero,
    .cancel-hero-inner {
        min-height: 650px;
    }

    .cancel-hero-photo {
        height: 310px;
        object-position: 67% 52%;
    }

    .cancel-hero h1 {
        font-size: 2.08rem;
    }

    .cancel-hero-lead {
        font-size: .82rem;
    }

    .cancel-hero-points span {
        font-size: .59rem;
    }
}

/* Font Awesome local — completări suplimentare */

.fa-users::before { content: "\f0c0"; }
.fa-briefcase::before { content: "\f0b1"; }


/* =========================================================
   Pagini legale / contact — layout comun
   ========================================================= */
.legal-main { background:#f7fafc; padding:34px 0 64px; }
.legal-shell { max-width:1050px; }
.legal-breadcrumb { display:flex; align-items:center; gap:8px; margin:0 0 18px; color:#6a7889; font-size:.82rem; }
.legal-breadcrumb a { color:#005893; text-decoration:none; font-weight:750; }
.legal-breadcrumb i { color:var(--orange); }
.legal-hero { padding:30px 34px; border:1px solid #dce8f2; border-radius:20px; background:linear-gradient(120deg,#fff,#f3f8fc); box-shadow:0 14px 34px rgba(8,48,103,.055); }
.legal-hero h1 { margin:8px 0 10px; color:#0b2b59; font-size:clamp(2.2rem,4vw,3.6rem); line-height:1.02; letter-spacing:-.03em; }
.legal-hero > p:last-child { margin:0; max-width:780px; color:#5f7084; font-size:1rem; line-height:1.55; }
.legal-content { display:grid; gap:14px; margin-top:18px; }
.legal-card { padding:23px 25px; border:1px solid #dfe8f1; border-radius:16px; background:#fff; }
.legal-card h2 { margin:0 0 8px; color:#0d315f; font-size:1.2rem; }
.legal-card p { margin:0 0 8px; color:#5d6f83; line-height:1.55; }
.legal-card p:last-child { margin-bottom:0; }
.legal-card a, .legal-note a { color:#005893; }
.legal-dl { display:grid; grid-template-columns:190px 1fr; gap:8px 18px; margin:16px 0 0; }
.legal-dl dt { color:#607185; font-weight:700; }
.legal-dl dd { margin:0; color:#0d315f; font-weight:750; }
.legal-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.legal-link-card { min-height:130px; display:flex; flex-direction:column; padding:20px; border:1px solid #dce7f1; border-radius:15px; background:#fff; text-decoration:none; }
.legal-link-card strong { color:#005893; font-size:1.04rem; }
.legal-link-card span { margin-top:7px; color:#68778a; font-size:.88rem; line-height:1.45; }
.legal-note { padding:20px 22px; border:1px solid #ffd0ae; border-radius:16px; background:linear-gradient(110deg,#fff6ef,#fff); }
.legal-note strong { color:#b94700; }
.legal-note p { margin:5px 0 10px; color:#6b625b; }
.legal-note a { display:inline-flex; align-items:center; text-decoration:none; font-weight:800; }
.legal-primary { margin-top:18px; min-height:48px; display:inline-flex; align-items:center; gap:7px; padding:0 17px; border-radius:10px; background:var(--orange); color:#fff; text-decoration:none; font-weight:850; }
.error-hero { text-align:center; }
.error-hero > p:last-of-type { margin-left:auto; margin-right:auto; }
@media(max-width:760px){
  .legal-main{padding:22px 0 42px}.legal-hero{padding:22px 18px}.legal-card{padding:18px 16px}.legal-grid-3{grid-template-columns:1fr}.legal-dl{grid-template-columns:1fr;gap:2px}.legal-dl dd{margin-bottom:8px}
}
