:root {
    --ink: #172033;
    --ink-muted: #5f6f7f;

    --navy: #10263b;
    --navy-deep: #071d31;

    --primary: #e97819;
    --primary-dark: #bf5d0f;
    --primary-soft: #fff3e6;

    --accent: #f09a2b;
    --accent-dark: #c86612;
    --accent-soft: #fff7ed;

    --blue: #096da9;
    --blue-soft: #e9f4fb;

    --success: #17894b;
    --success-dark: #10693a;
    --success-soft: #e9f6ee;

    --line: #eadfd3;
    --surface: #fff8f1;
    --surface-strong: #fdf0df;
    --white: #fff;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    color: var(--ink);
    background: var(--white);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

/* Prevent off-screen AOS entry positions from producing horizontal scroll. */
section {
    overflow-x: clip;
}

a {
    color: var(--primary);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--primary-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(8, 102, 162, .35);
    outline-offset: 2px;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.18;
}

h1 {
    font-size: clamp(2.12rem, 4.45vw, 3.72rem);
}

h2 {
    font-size: clamp(1.58rem, 3vw, 2.3rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
}

p:last-child {
    margin-bottom: 0;
}

.skip-link {
    background: var(--navy);
    color: var(--white);
    left: .75rem;
    padding: .6rem 1rem;
    position: fixed;
    top: -4rem;
    z-index: 1100;
}

.skip-link:focus {
    color: var(--white);
    top: .75rem;
}

.site-header {
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(14px);
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .98);
    border-bottom-color: var(--line);
    box-shadow: 0 8px 25px rgba(8, 38, 61, .065);
}

.navbar {
    min-height: 4.65rem;
    padding: .7rem 0;
}

.navbar-brand {
    align-items: center;
    color: var(--ink);
    display: flex;
    gap: .7rem;
    line-height: 1.1;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--ink);
}

.brand-icon {
    align-items: center;
    background: var(--primary-soft);
    border: 1px solid #d7e9f3;
    border-radius: .82rem;
    color: var(--primary);
    display: inline-flex;
    font-size: 1.45rem;
    height: 2.7rem;
    justify-content: center;
    width: 2.7rem;
}

.navbar-brand strong {
    display: block;
    font-size: 1.03rem;
}

.navbar-brand small {
    color: var(--ink-muted);
    display: block;
    font-size: .82rem;
    font-weight: 600;
    margin-top: .14rem;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    border-radius: .58rem;
    color: var(--ink);
    font-size: .95rem;
    font-weight: 600;
    padding: .48rem .68rem;
    transition: background-color .18s ease, color .18s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background: var(--primary-soft);
    color: var(--primary);
}

.navbar-nav .nav-link.active {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.navbar-toggler {
    border-color: var(--line);
    border-radius: .68rem;
    padding: .48rem .62rem;
}

.header-actions {
    display: flex;
    gap: .45rem;
}

.btn {
    align-items: center;
    border-radius: .78rem;
    display: inline-flex;
    font-weight: 650;
    gap: .48rem;
    justify-content: center;
    min-height: 3rem;
    padding: .7rem 1.12rem;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.btn-sm {
    border-radius: .65rem;
    min-height: 2.55rem;
    padding: .53rem .8rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(233, 120, 25, .22);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--primary-dark), #9f4a0a);
    border-color: var(--primary-dark);
    box-shadow: 0 16px 30px rgba(233, 120, 25, .3);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #11753e);
    border-color: var(--success);
    box-shadow: 0 9px 18px rgba(23, 132, 72, .17);
}

.btn-success:hover,
.btn-success:focus {
    background: linear-gradient(135deg, var(--success-dark), #0c562e);
    border-color: var(--success-dark);
    box-shadow: 0 13px 25px rgba(23, 132, 72, .24);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(8, 102, 162, .14);
    transform: translateY(-1px);
}

.section-space {
    padding: clamp(3.6rem, 6.7vw, 5.8rem) 0;
}

.section-space-sm {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-padding {
    padding: clamp(3.6rem, 6.7vw, 5.8rem) 0;
}

.section-soft {
    background: var(--surface);
}

.eyebrow,
.section-eyebrow {
    align-items: center;
    background: var(--primary-soft);
    border: 1px solid #d3e8f4;
    border-radius: 99rem;
    color: var(--primary-dark);
    display: inline-flex;
    font-size: .8rem;
    font-weight: 700;
    gap: .35rem;
    letter-spacing: .07em;
    margin-bottom: 1rem;
    padding: .42rem .8rem;
    text-transform: uppercase;
}
.eyebrow,
.section-eyebrow {
    background: var(--primary-soft);
    border-color: #ffd9ad;
    color: var(--primary-dark);
}
.lead {
    color: var(--ink-muted);
    font-size: clamp(1.05rem, 1.8vw, 1.18rem);
    line-height: 1.72;
}

.hero {
    background:
        radial-gradient(circle at 90% 8%, rgba(240, 154, 43, .18), transparent 34%),
        radial-gradient(circle at 5% 90%, rgba(9, 109, 169, .08), transparent 28%),
        linear-gradient(125deg, #fff7ed 0%, #ffffff 52%, #f3f8fc 100%);
    overflow: hidden;
    padding: clamp(3.35rem, 7vw, 5.65rem) 0;
    position: relative;
}

.hero:before {
    background-image: radial-gradient(rgba(8, 102, 162, .11) 1px, transparent 1px);
    background-size: 18px 18px;
    content: "";
    height: 9rem;
    opacity: .4;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 10rem;
}

.hero:after {
    background: radial-gradient(circle, rgba(8, 102, 162, .15), transparent 67%);
    content: "";
    height: 30rem;
    position: absolute;
    right: -12rem;
    top: -12rem;
    width: 30rem;
}

.hero-copy,
.hero-media {
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-size: clamp(2.45rem, 4.55vw, 3.82rem);
    margin-bottom: 1.25rem;
    max-width: 45rem;
}

.hero-copy .lead {
    margin-bottom: 1.9rem;
    max-width: 42rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
}

.trust-points li {
    align-items: center;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--line);
    border-radius: 99rem;
    color: #42586c;
    display: inline-flex;
    font-size: .88rem;
    font-weight: 600;
    gap: .36rem;
    padding: .44rem .7rem;
}

.trust-points i {
    color: var(--success);
}

.hero-visual {
    position: relative;
}

.hero-photo,
.content-photo {
    border-radius: var(--radius);
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.hero-photo {
    border-radius: 30px;
    aspect-ratio: 3 / 2;
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    background: var(--white);
    border: 1px solid rgba(217, 229, 237, .8);
    border-radius: var(--radius-sm);
    bottom: 1rem;
    box-shadow: 0 12px 30px rgba(8, 38, 61, .14);
    left: -.55rem;
    padding: .9rem 1rem;
    position: absolute;
}

.hero-badge strong {
    display: block;
    font-size: .94rem;
}

.hero-badge span {
    color: var(--ink-muted);
    font-size: .84rem;
}

.soft-panel {
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.hero-quick-panel {
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--shadow-sm);
    margin: 1rem .65rem 0;
    padding: 1rem 1.1rem;
}

.hero-quick-panel h2 {
    font-size: .98rem;
    margin-bottom: .65rem;
}

.hero-quick-panel ul {
    display: grid;
    gap: .48rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-quick-panel li {
    align-items: center;
    color: var(--ink-muted);
    display: flex;
    font-size: .9rem;
    font-weight: 600;
    gap: .6rem;
}

.hero-quick-panel i {
    color: var(--primary);
}

.section-heading {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 46rem;
}

.section-heading p {
    color: var(--ink-muted);
    margin-top: .8rem;
}

.feature-card,
.link-card,
.step-card,
.info-card,
.document-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    height: 100%;
    padding: clamp(1.25rem, 2.4vw, 1.65rem);
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.feature-card:hover,
.link-card:hover,
.document-card:hover,
.step-card:hover {
    border-color: #bad5e7;
    box-shadow: 0 18px 34px rgba(8, 38, 61, .09);
    transform: translateY(-4px);
}

.card-icon {
    align-items: center;
    background: var(--primary-soft);
    border: 1px solid #d5e8f3;
    border-radius: .75rem;
    color: var(--primary);
    display: inline-flex;
    font-size: 1.25rem;
    height: 2.7rem;
    justify-content: center;
    margin-bottom: 1rem;
    width: 2.7rem;
    transition: background-color .2s ease, transform .2s ease;
}
.card-icon,
.brand-icon {
    background: var(--primary-soft);
    border-color: #ffd9ad;
    color: var(--primary);
}
.feature-card:hover .card-icon,
.document-card:hover .card-icon {
    background: #dcedf7;
    transform: translateY(-1px);
}

.feature-card p,
.info-card p,
.document-card p,
.step-card p {
    color: var(--ink-muted);
    font-size: .97rem;
}

.clean-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.clean-list li {
    display: flex;
    gap: .7rem;
    margin-bottom: .78rem;
}

.clean-list i {
    color: var(--success);
    flex-shrink: 0;
    margin-top: .15rem;
}

.media-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.media-panel-copy {
    padding: 1.25rem 1.35rem;
}

.media-panel-copy h3 {
    margin-bottom: .45rem;
}

.link-card {
    color: var(--ink);
    display: block;
    position: relative;
    text-decoration: none;
}

.link-card i {
    color: var(--primary);
    float: right;
    transition: transform .2s ease;
}

.link-card:hover i {
    transform: translate(2px, -2px);
}

.link-card span {
    color: var(--ink-muted);
    display: block;
    font-size: .88rem;
    margin-top: .35rem;
}

.insurer-hub {
    background:
        radial-gradient(circle at 95% 10%, rgba(233, 114, 3, 0.06), transparent 30%),
        #eef6fb;
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
}

.insurer-hub .link-card.is-featured {
    border-color: #bedaea;
    box-shadow: 0 12px 28px rgba(8, 102, 162, .075);
    padding: clamp(1.35rem, 2.8vw, 1.85rem);
}

.insurer-hub .link-card.is-featured strong {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.insurer-card {
    overflow: hidden;
}

.insurer-card:before {
    background: var(--primary);
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    opacity: 0;
    position: absolute;
    transform: scaleX(.25);
    transform-origin: left;
    transition: opacity .2s ease, transform .22s ease;
    width: 100%;
}

.insurer-card:hover:before {
    opacity: 1;
    transform: scaleX(1);
}

.dropdown-menu {
    border-color: var(--line);
    border-radius: .8rem;
    box-shadow: var(--shadow-lg);
    min-width: 14.5rem;
    padding: .5rem;
}

.dropdown-item {
    border-radius: .45rem;
    color: var(--ink);
    font-weight: 600;
    padding: .48rem .62rem;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.number-step {
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    font-size: .92rem;
    font-weight: 700;
    height: 2.25rem;
    justify-content: center;
    margin-bottom: .95rem;
    width: 2.25rem;
}

#continut {
    position: relative;
}

.breadcrumb-wrap {
    background: transparent;
    border: 0;
}

#continut > .breadcrumb-wrap {
    inset: 0 0 auto;
    pointer-events: none;
    position: absolute;
    z-index: 4;
}

.breadcrumb {
    align-items: center;
    color: var(--ink-muted);
    font-size: .86rem;
    font-weight: 600;
    gap: .18rem;
    margin: 0;
    padding-bottom: 0;
    padding-top: 1.05rem;
}

.breadcrumb-item {
    align-items: center;
    display: inline-flex;
    line-height: 1.25;
}

.breadcrumb-item:first-child {
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(9, 109, 169, .12);
    border-radius: 999px;
    box-shadow: 0 3px 12px rgba(8, 38, 61, .035);
    gap: .4rem;
    padding: .4rem .7rem;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: .3rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #90a9ba;
    padding-right: .48rem;
}

.breadcrumb-item i {
    color: var(--primary);
    font-size: .88rem;
}

.breadcrumb a {
    color: var(--ink-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

#continut > .breadcrumb-wrap + .hero {
    padding-top: calc(clamp(3.35rem, 7vw, 5.65rem) + 2.55rem);
}

#continut > .breadcrumb-wrap + .page-hero,
#continut > .breadcrumb-wrap + .section-space {
    padding-top: calc(clamp(3.6rem, 6.7vw, 5.8rem) + 2.55rem);
}

#continut > .breadcrumb-wrap + .page-hero.section-space-sm {
    padding-top: calc(clamp(2.5rem, 5vw, 4rem) + 2.55rem);
}

.page-hero {
    background:
        radial-gradient(circle at 88% 20%, rgba(8, 102, 162, .085), transparent 32%),
        linear-gradient(122deg, #f3f8fc, #fff);
    overflow: hidden;
    position: relative;
}

.page-hero .lead {
    max-width: 50rem;
}

.guide-page-hero .hero-photo {
    border-radius: var(--radius-lg);
}

.insurer-page-hero h1 {
    max-width: 48rem;
}

.hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
}

.hero-assurance li {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 99rem;
    color: var(--ink-muted);
    display: inline-flex;
    font-size: .88rem;
    font-weight: 600;
    gap: .42rem;
    padding: .44rem .72rem;
}

.hero-assurance i {
    color: var(--primary);
}

.insurer-hero-card {
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(217, 229, 237, .9);
    border-radius: var(--radius-sm);
    bottom: 1rem;
    box-shadow: 0 12px 30px rgba(8, 38, 61, .15);
    left: 1rem;
    padding: .78rem .92rem;
    position: absolute;
}

.insurer-hero-card strong {
    color: var(--ink);
    display: block;
    font-size: .92rem;
}

.insurer-hero-card i {
    color: var(--primary);
    margin-right: .28rem;
}

.insurer-hero-card span {
    color: var(--ink-muted);
    display: block;
    font-size: .82rem;
    margin-top: .18rem;
}

.insurer-page-nav-wrap {
    background: linear-gradient(180deg, #fff, var(--surface));
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
}

.insurer-page-nav {
    align-items: center;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(234, 223, 211, .95);
    border-radius: 1.35rem;
    box-shadow: 0 16px 38px rgba(8, 38, 61, .07);
    display: flex;
    flex-wrap: wrap;
    gap: .62rem;
    margin: 0 auto;
    padding: .95rem;
}

.insurer-page-nav span {
    color: var(--ink);
    flex-shrink: 0;
    font-size: .9rem;
    font-weight: 800;
}

.insurer-page-nav a {
    align-items: center;
    background: var(--primary-soft);
    border: 1px solid #ffd9ad;
    border-radius: 999px;
    color: var(--primary-dark);
    display: inline-flex;
    font-size: .88rem;
    font-weight: 800;
    padding: .56rem .82rem;
    text-decoration: none;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.insurer-page-nav a:hover,
.insurer-page-nav a:focus {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 18px rgba(233, 120, 25, .18);
    color: var(--white);
    transform: translateY(-1px);
}

#dauna-asigurator,
#dosar-dauna,
#acte-necesare,
#avizare-dauna,
#constatare-dauna,
#reparatie-dauna,
#faq {
    scroll-margin-top: 110px;
}

.narrow {
    max-width: 780px;
}

.article-copy p,
.article-copy li {
    color: #33485c;
}

.article-copy h2 {
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.article-copy h2:first-child {
    margin-top: 0;
}

.article-copy h3 {
    margin-bottom: .65rem;
    margin-top: 1.5rem;
}

.check-panel {
    background: var(--primary-soft);
    border: 1px solid #d2e7f3;
    border-radius: var(--radius);
    padding: clamp(1.3rem, 3vw, 2rem);
}

.insurer-docs-panel {
    background: #f5fafc;
    margin-bottom: 1.45rem;
    padding: clamp(1.1rem, 2.6vw, 1.5rem);
}

.seo-card {
    border-top: 3px solid rgba(8, 102, 162, .18);
}

.seo-card:hover {
    border-top-color: var(--primary);
}

.intent-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    height: 100%;
    padding: clamp(1.2rem, 2.4vw, 1.55rem);
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.intent-card:hover {
    border-color: rgba(233, 120, 25, .38);
    box-shadow: 0 18px 34px rgba(8, 38, 61, .09);
    transform: translateY(-4px);
}

.intent-card p {
    color: var(--ink-muted);
    font-size: .97rem;
}

.insurer-docs-panel .clean-list li:last-child {
    margin-bottom: 0;
}

.whatsapp-panel {
    background: linear-gradient(145deg, var(--success-soft), #f7fbf9);
    border-color: #d0ead9;
}

.incident-options {
    display: grid;
    gap: 1rem;
}

.info-segment {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
}

.info-segment h2 {
    align-items: flex-start;
    display: flex;
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    gap: .6rem;
    margin: 0 0 .75rem;
}

.info-segment h2 i {
    color: var(--primary);
    flex-shrink: 0;
    font-size: 1.15rem;
    margin-top: .16rem;
}

.repair-note {
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
}

.repair-note h3 {
    margin-top: 0;
}

.repair-note h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    margin: 0 0 .75rem;
}

.legal-disclaimer {
    align-items: flex-start;
    background: #fff8f1;
    border: 1px solid #ffd9ad;
    border-radius: var(--radius);
    color: #4f6072;
    display: flex;
    gap: .75rem;
    padding: clamp(1rem, 2.2vw, 1.35rem);
}

.legal-disclaimer i {
    color: var(--primary);
    flex-shrink: 0;
    font-size: 1.15rem;
    margin-top: .18rem;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.related-links a {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 99rem;
    color: var(--ink);
    font-weight: 600;
    padding: .52rem .9rem;
    text-decoration: none;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.related-links a:hover {
    background: var(--primary-soft);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.link-pills a {
    box-shadow: 0 3px 10px rgba(8, 38, 61, .035);
}

.faq-accordion .accordion-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: .8rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    color: var(--ink);
    font-weight: 650;
    line-height: 1.4;
    padding: 1.12rem 1.25rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-soft);
    box-shadow: none;
    color: var(--primary-dark);
}

.faq-accordion .accordion-body {
    color: #33485c;
    line-height: 1.7;
    padding: 0 1.25rem 1.22rem;
}

.context-cta-inner {
    align-items: center;
    background:
        radial-gradient(circle at 94% 6%, rgba(255, 255, 255, .13), transparent 32%),
        linear-gradient(132deg, var(--navy), #083c60);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--white);
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    padding: clamp(1.6rem, 4vw, 2.7rem);
}

.cta-card {
    overflow: hidden;
    position: relative;
}

.context-cta h2,
.final-cta h2 {
    color: var(--white);
}

.context-cta p {
    color: #d7e5ef;
    max-width: 46rem;
}

.final-cta {
    background:
        radial-gradient(circle at 50% -18%, rgba(51, 144, 199, .22), transparent 38%),
        linear-gradient(130deg, var(--navy-deep), var(--navy));
    color: var(--white);
    text-align: center;
}

.final-cta p {
    color: #d7e5ef;
    margin: .75rem auto 1.65rem;
    max-width: 45rem;
}

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

.contact-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(1.4rem, 3vw, 2.1rem);
}

.form-control,
.form-select {
    border-color: #ccd8e2;
    border-radius: .65rem;
    padding: .7rem .82rem;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #8ec1df;
    box-shadow: 0 0 0 .21rem rgba(8, 102, 162, .13);
}

.form-label {
    font-weight: 650;
}

.required {
    color: #bb2838;
}

.form-note {
    color: var(--ink-muted);
    font-size: .92rem;
}

.site-footer {
    background:
        radial-gradient(circle at 90% 0%, rgba(23, 137, 75, .13), transparent 28%),
        #081d31;
    color: #ccd9e4;
    margin-top: 0;
    padding-bottom: 4.7rem;
    padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-main {
    padding-bottom: 2.5rem;
}

.footer-brand {
    color: var(--white);
    display: inline-block;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: .8rem;
    text-decoration: none;
}

.footer-brand:hover,
.footer-phone:hover {
    color: var(--white);
}

.site-footer h2 {
    color: var(--white);
    font-size: .96rem;
    letter-spacing: .05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: .46rem;
}

.site-footer a {
    color: #d4e0e9;
    font-size: .94rem;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-phone {
    color: var(--white) !important;
    display: inline-flex;
    font-size: 1.08rem !important;
    font-weight: 700;
    gap: .42rem;
    margin-top: 1rem;
}

.footer-insurers {
    columns: 2;
    column-gap: 1rem;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1.1rem 0 1.65rem;
}

.footer-legal-title {
    margin-top: .2rem;
}

.disclaimer {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .72rem;
    font-size: .86rem;
    margin: 0 0 1.45rem;
    padding: .85rem 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    font-size: .88rem;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.15rem 0;
}

.moneybar {
    background: rgba(255, 255, 255, .965);
    border-top: 1px solid var(--line);
    bottom: 0;
    box-shadow: 0 -10px 35px rgba(10, 40, 65, .1);
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transform: translateY(110%);
    backdrop-filter: blur(13px);
    transition: transform .28s ease, opacity .22s ease;
    width: 100%;
    z-index: 1035;
}

.moneybar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.moneybar-inner {
    align-items: center;
    display: flex;
    gap: 1.2rem;
    justify-content: space-between;
    min-height: 4.6rem;
    padding-bottom: .62rem;
    padding-top: .62rem;
}

.moneybar p {
    color: var(--ink-muted);
    font-size: .93rem;
    margin: 0;
}

.moneybar strong {
    color: var(--ink);
}

@media (max-width: 1199.98px) {
    .header-actions .btn-outline-primary {
        display: none;
    }

    .navbar-nav .nav-link {
        padding-left: .55rem;
        padding-right: .55rem;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 4.4rem;
    }

    .navbar-collapse {
        border-top: 1px solid var(--line);
        margin-top: .85rem;
        padding: .75rem .15rem .25rem;
    }

    .navbar-nav {
        gap: .2rem;
    }

    .navbar-nav .nav-link {
        padding: .62rem .72rem;
    }

    .dropdown-menu {
        background: #f5f9fc;
        box-shadow: none;
        margin: .25rem 0 .45rem .55rem;
    }

    .header-actions {
        border-top: 1px solid var(--line);
        flex-wrap: wrap;
        margin-top: .75rem;
        padding-top: .85rem;
    }

    .header-actions .btn-outline-primary {
        display: inline-flex;
    }

    .hero-media {
        margin-top: .4rem;
    }

    .page-hero .row,
    .hero .row {
        --bs-gutter-y: 2.4rem;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: clamp(1.92rem, 8.4vw, 2.45rem);
    }

    h2 {
        font-size: clamp(1.45rem, 6.2vw, 1.85rem);
    }

    .section-space,
    .section-padding {
        padding: 3.15rem 0;
    }

    .section-space-sm {
        padding: 2.45rem 0;
    }

    .hero {
        padding: 2.85rem 0 3.2rem;
    }

    #continut > .breadcrumb-wrap + .hero,
    #continut > .breadcrumb-wrap + .page-hero,
    #continut > .breadcrumb-wrap + .section-space {
        padding-top: 5.25rem;
    }

    #continut > .breadcrumb-wrap + .page-hero.section-space-sm {
        padding-top: 4.65rem;
    }

    .hero:before {
        opacity: .25;
    }

    .hero-copy h1 {
        font-size: clamp(2.08rem, 9.1vw, 2.55rem);
    }

    .hero-copy .lead {
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }

    .trust-points {
        gap: .48rem;
        margin-top: 1.55rem;
    }

    .trust-points li {
        font-size: .82rem;
        padding: .4rem .62rem;
    }

    .hero-badge {
        bottom: .72rem;
        left: .72rem;
        padding: .7rem .78rem;
    }

    .hero-quick-panel {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-assurance {
        gap: .45rem;
        margin-top: 1.35rem;
    }

    .hero-assurance li {
        font-size: .82rem;
        padding: .4rem .62rem;
    }

    .insurer-hero-card {
        bottom: .7rem;
        left: .7rem;
        padding: .66rem .75rem;
    }

    .cta-actions .btn {
        flex: 1 1 100%;
        min-height: 3.15rem;
    }

    .context-cta-inner {
        align-items: stretch;
        display: block;
    }

    .context-cta .cta-actions {
        margin-top: 1.25rem;
    }

    .moneybar-inner {
        display: block;
        min-height: 0;
        padding-bottom: .48rem;
        padding-top: .48rem;
    }

    .moneybar p {
        display: none;
    }

    .moneybar .cta-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .5rem;
    }

    .moneybar .cta-actions .btn {
        font-size: .86rem;
        min-height: 2.78rem;
        padding-left: .45rem;
        padding-right: .45rem;
    }

    .site-footer {
        padding-bottom: 3.85rem;
    }

    .footer-main {
        padding-bottom: 1.7rem;
    }

    .footer-insurers {
        columns: 1;
    }

    .footer-bottom {
        display: block;
    }
}

@media (max-width: 575.98px) {
    .container {
        --bs-gutter-x: 1.4rem;
    }

    .navbar-brand strong {
        font-size: .94rem;
    }

    .navbar-brand small {
        font-size: .74rem;
    }

    .brand-icon {
        height: 2.5rem;
        width: 2.5rem;
    }

    .page-hero .lead,
    .lead {
        font-size: 1rem;
    }

    .breadcrumb {
        font-size: .79rem;
        padding-top: .72rem;
    }

    .breadcrumb-item:first-child {
        padding: .33rem .58rem;
    }

    .link-card,
    .feature-card,
    .step-card,
    .info-card,
    .document-card {
        padding: 1.15rem;
    }

    .context-cta-inner {
        padding: 1.35rem 1.15rem;
    }
}

@media (max-width: 374.98px) {
    .navbar-brand {
        gap: .5rem;
    }

    .navbar-brand strong {
        font-size: .89rem;
    }

    .brand-icon {
        font-size: 1.22rem;
        height: 2.28rem;
        width: 2.28rem;
    }

    .navbar-toggler {
        padding: .4rem .52rem;
    }

    .hero-copy h1 {
        font-size: 1.92rem;
    }

    .moneybar .cta-actions .btn {
        font-size: .8rem;
        gap: .3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
.footer-anpc {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: 1.25rem;
}

.footer-anpc a {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    border-radius: .65rem;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    transition: transform .2s ease, opacity .2s ease, border-color .2s ease;
}

.footer-anpc a:hover {
    transform: translateY(-2px);
    opacity: .92;
    border-color: rgba(255, 255, 255, .3);
}

.footer-anpc img {
    display: block;
    max-width: 250px;
    width: 100%;
    height: auto;
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1080;
    max-width: 980px;
    margin: 0 auto;
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(15, 23, 42, .12);
    box-shadow: 0 20px 60px rgba(15, 23, 42, .18);
    backdrop-filter: blur(12px);
}

.cookie-text {
    color: #172033;
}

.cookie-text strong {
    display: block;
    margin-bottom: .25rem;
    font-size: .98rem;
}

.cookie-text p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.5;
    color: #536173;
}

.cookie-text a {
    font-weight: 700;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .cookie-banner {
        left: .75rem;
        right: .75rem;
        bottom: .75rem;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        padding: .9rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
    }
}
.hero-video-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: calc(100vh - 4.65rem);
    display: flex;
    align-items: center;
    background: #fff8f1;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.hero-bg-video,
.hero-video-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -4;
    pointer-events: none;
}

.hero-bg-video-desktop {
    display: block;
    object-position: center center;
}

.hero-bg-video-mobile {
    display: none;
}

.hero-video-overlay {
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(circle at 88% 12%, rgba(240, 154, 43, .18), transparent 34%),
        linear-gradient(
            90deg,
            rgba(255, 248, 241, .97) 0%,
            rgba(255, 255, 255, .93) 42%,
            rgba(255, 243, 230, .78) 72%,
            rgba(255, 243, 230, .66) 100%
        );
}

.hero-video-section::before {
    content: "";
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 10rem;
    height: 9rem;
    z-index: -2;
    opacity: .42;
    background-image: radial-gradient(rgba(233, 120, 25, .17) 1px, transparent 1px);
    background-size: 18px 18px;
}

.hero-video-section::after {
    content: "";
    position: absolute;
    right: -12rem;
    top: -12rem;
    width: 30rem;
    height: 30rem;
    z-index: -2;
    background: radial-gradient(circle, rgba(240, 154, 43, .18), transparent 67%);
}

.hero-content,
.hero-copy,
.hero-media-col,
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-copy h1 {
    color: var(--ink);
    font-size: clamp(2.45rem, 4.55vw, 4rem);
    max-width: 46rem;
    margin-bottom: 1.25rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .35);
}

.hero-copy .lead {
    color: #607080;
    max-width: 42rem;
    margin-bottom: 1.9rem;
}

.hero-video-section .eyebrow {
    background: rgba(255, 243, 230, .9);
    border-color: rgba(240, 154, 43, .35);
    color: #b8530d;
    backdrop-filter: blur(10px);
}

.hero-video-section .btn-primary {
    background: linear-gradient(135deg, #e97819, #bf5d0f);
    border-color: #e97819;
    box-shadow: 0 14px 28px rgba(233, 120, 25, .25);
}

.hero-video-section .btn-primary:hover,
.hero-video-section .btn-primary:focus {
    background: linear-gradient(135deg, #bf5d0f, #9f4a0a);
    border-color: #bf5d0f;
    box-shadow: 0 18px 34px rgba(233, 120, 25, .34);
}

.hero-video-section .trust-points li {
    background: rgba(255, 255, 255, .82);
    border-color: rgba(234, 223, 211, .95);
    backdrop-filter: blur(10px);
}

.hero-visual {
    min-height: 22rem;
    border-radius: var(--radius-lg);
}

.hero-glass-card {
    position: relative;
    width: min(100%, 24rem);
    margin-left: auto;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 22px 50px rgba(8, 38, 61, .12);
    backdrop-filter: blur(16px);
}

.hero-glass-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    border-radius: .9rem;
    background: rgba(255, 243, 230, .95);
    color: #e97819;
    border: 1px solid rgba(240, 154, 43, .3);
    font-size: 1.25rem;
}

.hero-glass-card strong {
    display: block;
    color: var(--ink);
    font-size: 1rem;
}

.hero-glass-card span {
    display: block;
    color: var(--ink-muted);
    font-size: .9rem;
    margin-top: .12rem;
}

.hero-video-section .hero-quick-panel {
    width: min(100%, 29rem);
    margin-left: auto;
    margin-right: 0;
    padding: 1.2rem 1.25rem;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(234, 223, 211, .92);
    box-shadow: 0 24px 54px rgba(8, 38, 61, .13);
    backdrop-filter: blur(18px);
}

.hero-video-section .hero-quick-panel h2 {
    color: var(--ink);
    font-size: 1rem;
    margin-bottom: .75rem;
}

.hero-video-section .hero-quick-panel ul {
    display: grid;
    gap: .58rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-video-section .hero-quick-panel li {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: #52677a;
    font-size: .94rem;
    font-weight: 650;
}

.hero-video-section .hero-quick-panel i {
    color: #e97819;
}
/* =========================================================
   HERO VIDEO PREMIUM - DESCHIDERE DOSAR DAUNA RCA

========================================================= */

.hero-video-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: calc(100vh - 4.65rem);
    display: flex;
    align-items: center;
    background: #fff8f1;
    padding: clamp(4.8rem, 8vw, 7.4rem) 0;
}

/* Video background */
.hero-bg-video,
.hero-video-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -4;
    pointer-events: none;
    filter: saturate(.92) contrast(.92);
}

.hero-bg-video-desktop {
    display: block;
    object-position: center center;
}

.hero-bg-video-mobile {
    display: none;
}

/* Overlay peste video: clar pe stanga, cald pe dreapta */
.hero-video-overlay {
    z-index: -3;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .97) 0%,
            rgba(255, 250, 244, .95) 34%,
            rgba(255, 248, 241, .80) 58%,
            rgba(239, 176, 95, .44) 100%
        ),
        radial-gradient(circle at 82% 18%, rgba(240, 154, 43, .22), transparent 34%),
        radial-gradient(circle at 10% 88%, rgba(255, 255, 255, .82), transparent 38%);
}

/* Umbra subtila jos */
.hero-video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .08) 0%,
            rgba(255, 255, 255, .02) 45%,
            rgba(7, 29, 49, .08) 100%
        );
    pointer-events: none;
}

/* Glow decorativ portocaliu */
.hero-video-section::after {
    content: "";
    position: absolute;
    right: -12rem;
    top: -12rem;
    width: 30rem;
    height: 30rem;
    z-index: -2;
    background: radial-gradient(circle, rgba(240, 154, 43, .20), transparent 67%);
    pointer-events: none;
}

.hero-content,
.hero-copy,
.hero-media-col,
.hero-visual {
    position: relative;
    z-index: 2;
}

/* Text hero */
.hero-copy {
    max-width: 43rem;
}

.hero-copy h1 {
    color: #111827;
    font-size: clamp(2.7rem, 4.75vw, 4.25rem);
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -.045em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .28);
}

.hero-copy .lead {
    color: #647484;
    max-width: 41rem;
    font-size: clamp(1.02rem, 1.45vw, 1.16rem);
    line-height: 1.75;
    margin-bottom: 1.9rem;
}

/* Badge sus */
.hero-video-section .eyebrow {
    background: rgba(255, 243, 230, .9);
    border: 1px solid rgba(240, 154, 43, .36);
    color: #b8530d;
    box-shadow: 0 8px 22px rgba(233, 120, 25, .08);
    backdrop-filter: blur(12px);
}

/* Buton principal portocaliu */
.hero-video-section .btn-primary {
    background: linear-gradient(135deg, #ee7d16, #c85f0d);
    border-color: #e97819;
    box-shadow: 0 16px 34px rgba(233, 120, 25, .28);
}

.hero-video-section .btn-primary:hover,
.hero-video-section .btn-primary:focus {
    background: linear-gradient(135deg, #d9680f, #a94c08);
    border-color: #bf5d0f;
    box-shadow: 0 20px 40px rgba(233, 120, 25, .36);
    transform: translateY(-1px);
}

.hero-video-section .btn-success {
    box-shadow: 0 14px 30px rgba(23, 137, 75, .22);
}

/* Trust points */
.hero-video-section .trust-points {
    margin-top: 1.9rem;
}

.hero-video-section .trust-points li {
    background: rgba(255, 255, 255, .80);
    border-color: rgba(234, 223, 211, .92);
    color: #405266;
    box-shadow: 0 8px 24px rgba(8, 38, 61, .045);
    backdrop-filter: blur(12px);
}

/* Dreapta - carduri glass */
.hero-visual {
    display: grid;
    gap: 1rem;
    align-content: center;
    justify-items: end;
}

.hero-glass-card,
.hero-video-section .hero-quick-panel {
    width: min(100%, 29rem);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(255, 255, 255, .74);
    box-shadow: 0 24px 60px rgba(8, 38, 61, .14);
    backdrop-filter: blur(18px);
}

.hero-glass-card {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1rem 1.15rem;
}

.hero-glass-icon {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: .95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 243, 230, .96);
    border: 1px solid rgba(240, 154, 43, .34);
    color: #e97819;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hero-glass-card strong {
    display: block;
    color: #172033;
    font-size: 1rem;
}

.hero-glass-card span {
    display: block;
    color: #647484;
    font-size: .9rem;
    margin-top: .12rem;
}

/* Panel pasi rapizi */
.hero-video-section .hero-quick-panel {
    margin: 0;
    padding: 1.25rem 1.35rem;
}

.hero-video-section .hero-quick-panel h2 {
    color: #172033;
    font-size: 1.02rem;
    margin-bottom: .8rem;
}

.hero-video-section .hero-quick-panel ul {
    display: grid;
    gap: .65rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-video-section .hero-quick-panel li {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #4f6072;
    font-size: .94rem;
    font-weight: 650;
}

.hero-video-section .hero-quick-panel i {
    color: #e97819;
}

/* Tablet */
@media (max-width: 991.98px) {
    .hero-video-section {
        min-height: auto;
        padding: 5.5rem 0 4rem;
    }

    .hero-media-col {
        margin-top: .5rem;
    }

    .hero-visual {
        justify-items: start;
    }

    .hero-glass-card,
    .hero-video-section .hero-quick-panel {
        margin-left: 0;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .insurer-page-nav-wrap {
        padding: .85rem 0;
    }

    .insurer-page-nav {
        border-radius: 1.05rem;
        flex-wrap: nowrap;
        gap: .5rem;
        overflow-x: auto;
        padding: .78rem;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .insurer-page-nav::-webkit-scrollbar {
        height: 6px;
    }

    .insurer-page-nav::-webkit-scrollbar-thumb {
        background: rgba(233, 120, 25, .32);
        border-radius: 999px;
    }

    .insurer-page-nav a,
    .insurer-page-nav span {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .insurer-page-nav a {
        font-size: .84rem;
        padding: .52rem .75rem;
        scroll-snap-align: start;
    }

    .hero-video-section {
        min-height: calc(100svh - 4.4rem);
        align-items: flex-start;
        padding: 5.1rem 0 3.4rem;
        background: #fff8f1;
    }

    .hero-bg-video-desktop {
        display: none;
    }

    .hero-bg-video-mobile {
        display: block;
        object-position: center top;
        opacity: .58;
        filter: saturate(.9) contrast(.9);
    }

    .hero-video-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(255, 250, 244, .985) 0%,
                rgba(255, 255, 255, .965) 42%,
                rgba(255, 255, 255, 1) 100%
            );
    }

    .hero-video-section::after {
        width: 20rem;
        height: 20rem;
        right: -10rem;
        top: -7rem;
        opacity: .75;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(2.1rem, 9.4vw, 2.85rem);
        line-height: 1.13;
        margin-bottom: 1rem;
    }

    .hero-copy .lead {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 1.45rem;
    }

    .hero-video-section .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: .7rem;
    }

    .hero-video-section .cta-actions .btn {
        width: 100%;
        min-height: 3.15rem;
    }

    .hero-video-section .trust-points {
        margin-top: 1.35rem;
        gap: .5rem;
    }

    .hero-video-section .trust-points li {
        font-size: .82rem;
        padding: .4rem .62rem;
    }

    .hero-media-col {
        display: none;
    }
}

/* Telefoane foarte mici */
@media (max-width: 374.98px) {
    .hero-copy h1 {
        font-size: 2rem;
    }

    .hero-video-section .btn {
        font-size: .88rem;
        padding-left: .75rem;
        padding-right: .75rem;
    }
}

/* Respecta setarea utilizatorului pentru miscare redusa */
@media (prefers-reduced-motion: reduce) {
    .hero-bg-video {
        display: none !important;
    }

    .hero-video-section {
        background:
            radial-gradient(circle at 90% 8%, rgba(240, 154, 43, .18), transparent 34%),
            linear-gradient(125deg, #fff8f1 0%, #ffffff 52%, #f3f8fc 100%);
    }
}
.hero-mini-note {
    width: min(100%, 24rem);
    display: flex;
    align-items: center;
    gap: .6rem;
    justify-self: end;
    padding: .72rem .9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    border: 1px solid rgba(255, 255, 255, .68);
    color: #405266;
    font-size: .88rem;
    font-weight: 650;
    box-shadow: 0 14px 34px rgba(8, 38, 61, .09);
    backdrop-filter: blur(14px);
}

.hero-mini-note i {
    color: #e97819;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .hero-mini-note {
        justify-self: start;
    }
}

@media (max-width: 767.98px) {
    .hero-mini-note {
        display: none;
    }
}
/* =========================================================
   MOBILE HERO - full video, fara card alb mare

========================================================= */

@media (max-width: 767.98px) {
    body {
        background: #fff;
    }

    .hero-video-section {
        position: relative;
        min-height: calc(100svh - 4.4rem);
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 2.25rem 0 2.4rem;
        background: #111827;
        isolation: isolate;
    }

    .hero-bg-video-desktop {
        display: none !important;
    }

    .hero-bg-video-mobile {
        display: block !important;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        opacity: 1;
        filter: saturate(.95) contrast(.95);
        z-index: -5;
    }

    .hero-video-overlay {
        position: absolute;
        inset: 0;
        z-index: -4;
        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, .92) 0%,
                rgba(255, 255, 255, .78) 46%,
                rgba(255, 244, 230, .48) 100%
            ),
            linear-gradient(
                180deg,
                rgba(255, 255, 255, .72) 0%,
                rgba(255, 248, 241, .58) 38%,
                rgba(255, 255, 255, .92) 100%
            );
    }

    .hero-video-section::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -3;
        pointer-events: none;
        background:
            radial-gradient(circle at 85% 8%, rgba(240, 154, 43, .24), transparent 34%),
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, .14) 68%,
                rgba(255, 255, 255, .86) 100%
            );
    }

    .hero-video-section::after {
        display: none !important;
    }

    .hero-video-section .container {
        position: relative;
        z-index: 2;
    }

    .hero-video-section .row {
        min-height: calc(100svh - 8.9rem);
        align-items: center !important;
    }

    .hero-copy {
        max-width: 100%;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .hero-video-section .eyebrow {
        margin-bottom: .95rem;
        background: rgba(255, 243, 230, .76);
        border: 1px solid rgba(240, 154, 43, .42);
        color: #a94908;
        box-shadow: 0 10px 24px rgba(233, 120, 25, .08);
        backdrop-filter: blur(10px);
        font-size: .72rem;
        padding: .42rem .72rem;
    }

    .hero-copy h1 {
        max-width: 21rem;
        color: #111827;
        font-size: clamp(2.15rem, 10.5vw, 3rem);
        line-height: 1.08;
        letter-spacing: -.055em;
        margin-bottom: 1rem;
        text-shadow: 0 1px 0 rgba(255, 255, 255, .35);
    }

    .hero-copy .lead {
        max-width: 21.5rem;
        color: #4f6072;
        font-size: .98rem;
        line-height: 1.62;
        margin-bottom: 1.35rem;
    }

    .hero-video-section .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: .72rem;
    }

    .hero-video-section .cta-actions .btn {
        width: 100%;
        min-height: 3.15rem;
        border-radius: .9rem;
        font-size: .96rem;
        box-shadow: 0 15px 34px rgba(8, 38, 61, .14);
    }

    .hero-video-section .trust-points {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
        margin-top: 1.1rem;
    }

    .hero-video-section .trust-points li {
        background: rgba(255, 255, 255, .68);
        border: 1px solid rgba(255, 255, 255, .74);
        color: #405266;
        font-size: .8rem;
        padding: .4rem .62rem;
        box-shadow: 0 8px 22px rgba(8, 38, 61, .055);
        backdrop-filter: blur(10px);
    }

    .hero-media-col,
    .hero-mini-note {
        display: none !important;
    }
}
/* =========================================================
   MOBILE HERO SCROLL BUTTON - asiguratori

========================================================= */

.hero-scroll-insurers {
    display: none;
}

@media (max-width: 767.98px) {
    .hero-video-section {
        padding-bottom: 5.25rem;
    }

    .hero-scroll-insurers {
        position: absolute;
        left: 50%;
        bottom: 1rem;
        z-index: 5;
        transform: translateX(-50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .6rem;
        min-width: min(88vw, 21rem);
        padding: .72rem .95rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .78);
        border: 1px solid rgba(255, 255, 255, .88);
        color: #172033;
        text-decoration: none;
        box-shadow: 0 16px 42px rgba(8, 38, 61, .13);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .hero-scroll-insurers span {
        font-size: .9rem;
        font-weight: 800;
        line-height: 1;
    }

    .hero-scroll-insurers small {
        color: #647484;
        font-size: .78rem;
        font-weight: 650;
        line-height: 1;
    }

    .hero-scroll-insurers i {
        width: 1.85rem;
        height: 1.85rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border-radius: 50%;
        background: linear-gradient(135deg, #ee7d16, #c85f0d);
        color: #fff;
        font-size: .95rem;
        box-shadow: 0 8px 18px rgba(233, 120, 25, .28);
        animation: heroScrollPulse 1.65s ease-in-out infinite;
    }

    .hero-scroll-insurers:hover,
    .hero-scroll-insurers:focus {
        color: #172033;
        background: rgba(255, 255, 255, .9);
        transform: translateX(-50%) translateY(-2px);
    }
}

@keyframes heroScrollPulse {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll-insurers i {
        animation: none;
    }
}

:root {
    --accident-orange: #ff5a00;
    --accident-orange-dark: #d94200;
    --accident-green: #59d327;
    --accident-black: #07090c;
    --accident-panel: #11151b;
    --accident-border: rgba(255, 255, 255, 0.12);
    --accident-text-soft: rgba(255, 255, 255, 0.72);
}

html {
    scroll-behavior: smooth;
}

.accident-hero {
    position: relative;
    isolation: isolate;
    min-height: min(900px, calc(100svh - 70px));
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(5rem, 8vw, 7rem);
    color: #fff;
    background:
        radial-gradient(circle at 84% 18%, rgba(255, 90, 0, 0.23), transparent 33%),
        radial-gradient(circle at 8% 92%, rgba(255, 90, 0, 0.12), transparent 28%),
        linear-gradient(135deg, #050608 0%, #0a0d12 46%, #11151b 100%);
}

.accident-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(110deg, transparent 0 61%, rgba(255, 90, 0, 0.06) 61% 62%, transparent 62% 100%),
        linear-gradient(110deg, transparent 0 72%, rgba(255, 90, 0, 0.1) 72% 73%, transparent 73% 100%);
}

.accident-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.accident-hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(70px);
    pointer-events: none;
}

.accident-hero-glow-one {
    width: 320px;
    height: 320px;
    right: 8%;
    top: 4%;
    background: rgba(255, 90, 0, 0.22);
}

.accident-hero-glow-two {
    width: 260px;
    height: 260px;
    left: -80px;
    bottom: -80px;
    background: rgba(255, 90, 0, 0.12);
}

.accident-hero-container {
    position: relative;
    z-index: 2;
}

.accident-hero-copy {
    max-width: 760px;
}

.accident-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(255, 90, 0, 0.35);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 90, 0, 0.1);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.accident-hero-kicker i {
    color: var(--accident-orange);
}

.accident-hero h1 {
    max-width: 760px;
    margin: 1.15rem 0 1rem;
    color: #fff;
    font-size: clamp(3.15rem, 7vw, 6.7rem);
    font-weight: 950;
    line-height: 0.88;
    letter-spacing: -0.065em;
    text-transform: uppercase;
    text-wrap: balance;
}

.accident-hero h1 span {
    display: block;
    color: var(--accident-orange);
    text-shadow: 0 12px 48px rgba(255, 90, 0, 0.28);
}

.accident-hero-lead {
    max-width: 690px;
    margin: 0;
    color: var(--accident-text-soft);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.72;
}

.accident-hero-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem 1rem;
    max-width: 650px;
    margin-top: 1.6rem;
}

.accident-hero-services span {
    display: flex;
    align-items: center;
    gap: 0.58rem;
    min-width: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.96rem;
    font-weight: 750;
}

.accident-hero-services i {
    flex: 0 0 auto;
    color: var(--accident-green);
    filter: drop-shadow(0 0 9px rgba(89, 211, 39, 0.28));
}

.accident-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.9rem;
}

.accident-hero-call,
.accident-hero-whatsapp {
    text-decoration: none;
}

.accident-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 70px;
    padding: 0.75rem 1.25rem 0.75rem 0.8rem;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--accident-orange), var(--accident-orange-dark));
    box-shadow: 0 18px 42px rgba(255, 90, 0, 0.27);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.accident-hero-call:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(255, 90, 0, 0.36);
}

.accident-hero-call-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
}

.accident-hero-call small,
.accident-hero-call strong {
    display: block;
}

.accident-hero-call small {
    margin-bottom: 0.1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.accident-hero-call strong {
    font-size: 1.08rem;
    letter-spacing: 0.01em;
}

.accident-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 70px;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    font-weight: 850;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.accident-hero-whatsapp i {
    color: #37d568;
    font-size: 1.3rem;
}

.accident-hero-whatsapp:hover {
    color: #fff;
    border-color: rgba(55, 213, 104, 0.45);
    background: rgba(55, 213, 104, 0.12);
    transform: translateY(-3px);
}

.accident-review-proof {
    display: inline-grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
    max-width: 470px;
    margin-top: 1.2rem;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--accident-border);
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: background 180ms ease, border-color 180ms ease;
}

.accident-review-proof:hover {
    color: #fff;
    border-color: rgba(255, 90, 0, 0.35);
    background: rgba(255, 90, 0, 0.09);
}

.accident-google-mark {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #4285f4;
    background: #fff;
    font-weight: 950;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.accident-review-stars {
    color: #ffc107;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.accident-review-proof strong,
.accident-review-proof small {
    display: block;
}

.accident-review-proof strong {
    font-size: 0.95rem;
}

.accident-review-proof small {
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.77rem;
}

.accident-poster-wrap {
    position: relative;
    width: min(100%, 440px);
    margin-inline: auto;
}

.accident-poster {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5.25;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    background: #111;
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.48),
        0 0 0 8px rgba(255, 255, 255, 0.025);
    transform: rotate(1.2deg);
}

.accident-poster::after {
    content: "";
    position: absolute;
    inset: auto -15% -19% 28%;
    height: 43%;
    transform: rotate(-18deg);
    background: linear-gradient(135deg, rgba(255, 90, 0, 0.88), rgba(255, 90, 0, 0));
    filter: blur(8px);
}

.accident-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.04) contrast(1.05);
}

.accident-poster-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 34%),
        linear-gradient(to top, rgba(0, 0, 0, 0.92), transparent 48%);
}

.accident-poster-top,
.accident-poster-bottom {
    position: absolute;
    z-index: 2;
    left: 1.2rem;
    right: 1.2rem;
}

.accident-poster-top {
    top: 1.25rem;
}

.accident-poster-top span,
.accident-poster-top strong {
    display: block;
}

.accident-poster-top span {
    color: var(--accident-orange);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.accident-poster-top strong {
    max-width: 320px;
    margin-top: 0.35rem;
    color: #fff;
    font-size: clamp(1.45rem, 2.7vw, 2.3rem);
    line-height: 1.02;
    text-transform: uppercase;
}

.accident-poster-bottom {
    bottom: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 90, 0, 0.94), rgba(198, 55, 0, 0.94));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.accident-poster-phone-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.22);
    font-size: 1.2rem;
}

.accident-poster-bottom small,
.accident-poster-bottom strong {
    display: block;
}

.accident-poster-bottom small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.accident-poster-bottom strong {
    margin-top: 0.1rem;
    font-size: 1.45rem;
    line-height: 1;
    text-transform: uppercase;
}

.accident-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 190px;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    color: #fff;
    background: rgba(14, 17, 22, 0.88);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(14px);
}

.accident-floating-card i {
    color: var(--accident-orange);
    font-size: 1.3rem;
}

.accident-floating-card strong,
.accident-floating-card small {
    display: block;
}

.accident-floating-card strong {
    font-size: 0.86rem;
}

.accident-floating-card small {
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.71rem;
}

.accident-floating-card-one {
    left: -45px;
    top: 38%;
}

.accident-floating-card-two {
    right: -38px;
    bottom: 23%;
}

.accident-hero-scroll {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.63);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.accident-hero-scroll:hover {
    color: #fff;
}

.accident-hero-scroll i {
    color: var(--accident-orange);
    animation: accident-bounce 1.8s infinite;
}

@keyframes accident-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* RECENZII */
.reviews-showcase {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background: #f6f7f9;
}

.reviews-showcase-glow {
    position: absolute;
    z-index: -1;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 90, 0, 0.16), transparent 65%);
}

.reviews-showcase-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2rem;
    margin-bottom: 1.6rem;
}

.reviews-heading {
    max-width: 780px;
}

.reviews-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #252932;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reviews-kicker .accident-google-mark {
    width: 27px;
    height: 27px;
    font-size: 0.85rem;
}

.reviews-heading h2 {
    max-width: 760px;
    margin: 0.75rem 0 0.8rem;
    color: #11151b;
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.reviews-heading p {
    max-width: 710px;
    margin: 0;
    color: #606773;
    font-size: 1.03rem;
    line-height: 1.75;
}

.reviews-google-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
    padding: 1rem 1.05rem;
    border: 1px solid #dfe3e8;
    border-radius: 18px;
    color: #151920;
    background: #fff;
    box-shadow: 0 16px 35px rgba(12, 18, 28, 0.07);
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease;
}

.reviews-google-link:hover {
    color: #151920;
    border-color: rgba(255, 90, 0, 0.38);
    transform: translateY(-3px);
}

.reviews-google-link span {
    flex: 1;
}

.reviews-google-link strong,
.reviews-google-link small {
    display: block;
}

.reviews-google-link strong {
    font-size: 0.95rem;
}

.reviews-google-link small {
    margin-top: 0.18rem;
    color: #7a828e;
    font-size: 0.74rem;
}

.reviews-google-link i {
    color: var(--accident-orange);
}

.reviews-summary-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.2rem, 3vw, 2.5rem);
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 30%, rgba(255, 90, 0, 0.22), transparent 28%),
        linear-gradient(135deg, #0c0f14, #171c24);
    box-shadow: 0 24px 65px rgba(12, 18, 28, 0.18);
}

.reviews-score {
    min-width: 150px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.reviews-score strong {
    font-size: 3rem;
    line-height: 1;
}

.reviews-score > span {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.reviews-showcase .reviews-stars {
    margin-top: 0.6rem;
    color: #ffc107;
    letter-spacing: 0.09em;
}

.reviews-summary-copy > span,
.reviews-slider-head > div > span {
    color: var(--accident-orange);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.reviews-summary-copy h3 {
    margin: 0.45rem 0 0.55rem;
    color: #fff;
    font-size: clamp(1.35rem, 2.6vw, 2.2rem);
    font-weight: 850;
    line-height: 1.18;
}

.reviews-summary-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
}

.reviews-summary-count {
    min-width: 120px;
    text-align: center;
}

.reviews-summary-count strong,
.reviews-summary-count span {
    display: block;
}

.reviews-summary-count strong {
    color: var(--accident-orange);
    font-size: 2rem;
    line-height: 1;
}

.reviews-summary-count span {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.74rem;
}

.reviews-slider {
    margin-top: 1.5rem;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border: 1px solid #e2e5ea;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 22px 55px rgba(12, 18, 28, 0.08);
}

.reviews-slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviews-slider-head h3 {
    margin: 0.35rem 0 0;
    color: #151920;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 850;
}

.reviews-controls {
    display: flex;
    gap: 0.55rem;
}

.reviews-controls button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid #dfe3e8;
    border-radius: 50%;
    color: #151920;
    background: #fff;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.reviews-controls button:hover {
    color: #fff;
    border-color: var(--accident-orange);
    background: var(--accident-orange);
}

.reviews-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding: 0.2rem 0.15rem 0.85rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    min-height: 285px;
    padding: 1.2rem;
    border: 1px solid #e3e6eb;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 13px 30px rgba(12, 18, 28, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.review-card.is-active {
    border-color: rgba(255, 90, 0, 0.32);
    box-shadow: 0 18px 38px rgba(255, 90, 0, 0.1);
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-card-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #ff6a14, #d64300);
    font-weight: 900;
}

.review-author strong,
.review-author small {
    display: block;
}

.review-author strong {
    color: #171b22;
    font-size: 0.95rem;
}

.review-author small {
    margin-top: 0.18rem;
    color: #818893;
    font-size: 0.72rem;
}

.review-google-badge {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #e6e9ed;
    border-radius: 50%;
    color: #4285f4;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 950;
}

.review-card > p {
    flex: 1;
    margin: 1rem 0 1.2rem;
    color: #505762;
    font-size: 0.95rem;
    line-height: 1.72;
}

.review-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.8rem;
    border-top: 1px solid #edf0f3;
    color: #69717c;
    font-size: 0.77rem;
    font-weight: 750;
}

.review-card-foot i {
    color: #4285f4;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.7rem;
}

.reviews-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cdd2d8;
    transition: width 180ms ease, background 180ms ease;
}

.reviews-dots button.is-active {
    width: 28px;
    background: var(--accident-orange);
}

@media (min-width: 1200px) {
    .reviews-track {
        grid-auto-columns: calc((100% - 2rem) / 3);
    }
}

@media (max-width: 1199.98px) {
    .accident-floating-card-one {
        left: -20px;
    }

    .accident-floating-card-two {
        right: -18px;
    }
}

@media (max-width: 991.98px) {
    .accident-hero {
        min-height: auto;
        padding-top: 4rem;
    }

    .accident-hero-copy {
        max-width: none;
        text-align: center;
    }

    .accident-hero h1,
    .accident-hero-lead,
    .accident-hero-services,
    .accident-review-proof {
        margin-left: auto;
        margin-right: auto;
    }

    .accident-hero-services {
        max-width: 620px;
        text-align: left;
    }

    .accident-hero-actions {
        justify-content: center;
    }

    .accident-poster-wrap {
        margin-top: 1.4rem;
    }

    .reviews-showcase-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .reviews-google-link {
        width: fit-content;
    }
}

@media (max-width: 767.98px) {
    .accident-hero {
        padding: 3.3rem 0 4.8rem;
    }

    .accident-hero h1 {
        font-size: clamp(3rem, 16vw, 5.3rem);
    }

    .accident-hero-lead {
        font-size: 0.98rem;
    }

    .accident-hero-services {
        grid-template-columns: 1fr;
        width: min(100%, 440px);
        gap: 0.62rem;
    }

    .accident-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 440px);
        margin-left: auto;
        margin-right: auto;
    }

    .accident-hero-call,
    .accident-hero-whatsapp {
        width: 100%;
    }

    .accident-review-proof {
        grid-template-columns: auto 1fr auto;
        width: min(100%, 440px);
        text-align: left;
    }

    .accident-review-stars {
        display: none;
    }

    .accident-poster-wrap {
        width: min(88vw, 390px);
    }

    .accident-floating-card {
        min-width: 160px;
        padding: 0.65rem 0.75rem;
    }

    .accident-floating-card-one {
        left: -10px;
        top: 39%;
    }

    .accident-floating-card-two {
        right: -8px;
        bottom: 22%;
    }

    .accident-hero-scroll {
        display: none;
    }

    .reviews-summary-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reviews-score,
    .reviews-summary-count {
        width: 100%;
    }

    .reviews-slider-head {
        align-items: flex-end;
    }

    .reviews-track {
        grid-auto-columns: min(86vw, 360px);
    }
}

@media (max-width: 479.98px) {
    .accident-hero-kicker {
        font-size: 0.7rem;
    }

    .accident-hero h1 {
        letter-spacing: -0.055em;
    }

    .accident-poster {
        border-radius: 24px;
    }

    .accident-floating-card {
        display: none;
    }

    .reviews-google-link {
        width: 100%;
    }

    .reviews-slider-head h3 {
        font-size: 1.16rem;
    }

    .reviews-controls button {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .accident-hero-scroll i {
        animation: none;
    }

    .reviews-track {
        scroll-behavior: auto;
    }
}
