:root {
    --ink: #f6f8fb;
    --muted: #aab5c4;
    --dark: #0b111d;
    --navy: #101827;
    --graphite: #151a22;
    --steel: #223042;
    --panel: rgba(18, 27, 42, 0.88);
    --panel-strong: #121b2a;
    --line: rgba(255, 255, 255, 0.11);
    --orange: #c45818;
    --orange-dark: #8f3910;
    --blue: #36a3ff;
    --green: #34d399;
    --white: #ffffff;
    --soft: #eef3f8;
    --soft-2: #dce5ee;
    --text-dark: #17202d;
    --text-muted: #5d6a7b;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
    --radius: 8px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 18%, rgba(54, 163, 255, 0.16), transparent 34rem),
        linear-gradient(135deg, #08101c 0%, #101827 45%, #151923 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

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

p {
    margin: 0;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-140%);
    background: var(--orange);
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
}

.skip-link:focus {
    transform: translateY(0);
}

.command-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 15, 26, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.command-header.is-scrolled {
    background: rgba(9, 15, 26, 0.95);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.nav-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 12px 28px rgba(196, 88, 24, 0.24);
}

.brand-lockup strong,
.brand-lockup small {
    display: block;
}

.brand-lockup strong {
    font-size: 1rem;
    line-height: 1.1;
}

.brand-lockup small {
    color: var(--muted);
    font-size: 0.78rem;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}

.main-nav a {
    color: #cfdae8;
    font-size: 0.92rem;
    padding: 10px 11px;
    border-radius: 7px;
    transition: background 160ms ease, color 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 7px;
    background: rgba(54, 163, 255, 0.12);
    border: 1px solid rgba(54, 163, 255, 0.26);
    color: #fff;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

.breadcrumbs {
    width: min(var(--max), calc(100% - 40px));
    margin: 18px auto 0;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #b5c1d2;
    font-size: 0.88rem;
}

.breadcrumbs a {
    color: #d6e1ef;
}

.breadcrumbs strong {
    color: var(--orange);
    font-weight: 700;
}

.damage-hero,
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 86px;
}

.damage-hero {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
}

.hero-mesh,
.page-hero::before,
.dark-circuit::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.damage-hero::after {
    content: "";
    position: absolute;
    width: 48vw;
    height: 2px;
    right: 0;
    top: 28%;
    background: linear-gradient(90deg, transparent, rgba(54, 163, 255, 0.8), transparent);
    transform: rotate(-16deg);
}

.damage-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 52px;
    align-items: center;
}

.damage-hero-copy h1,
.page-hero h1 {
    margin: 16px 0 18px;
    font-size: clamp(2.45rem, 7vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: 0;
    max-width: 780px;
}

.page-hero h1 {
    font-size: clamp(2.35rem, 5.6vw, 4.7rem);
}

.damage-hero-copy p,
.page-hero p {
    color: #cbd6e4;
    font-size: clamp(1.05rem, 2vw, 1.26rem);
    max-width: 720px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

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

.section-kicker.dark {
    color: var(--text-dark);
}

.hero-actions,
.panel-actions,
.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 7px;
    border: 1px solid transparent;
    font-weight: 800;
    line-height: 1.1;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.action-btn:hover {
    transform: translateY(-2px);
}

.mobile-phone-text {
    display: none;
}

.action-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 18px 34px rgba(196, 88, 24, 0.3);
}

.action-whatsapp {
    color: #08130f;
    background: linear-gradient(135deg, #55e6a5, var(--green));
    box-shadow: 0 18px 34px rgba(52, 211, 153, 0.22);
}

.action-outline,
.action-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.signal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.signal-badges span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 7px;
    color: #dce8f6;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.92rem;
}

.damage-hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.damage-hero-visual img {
    width: 100%;
    height: min(64vh, 620px);
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.damage-hero-visual::before {
    content: "";
    position: absolute;
    inset: 22px -16px -18px 28px;
    border: 1px solid rgba(54, 163, 255, 0.35);
    border-radius: 8px;
    z-index: -1;
}

.phone-signal {
    position: absolute;
    top: 26px;
    right: 24px;
    padding: 16px 18px;
    border-radius: 8px;
    background: rgba(7, 12, 21, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.phone-signal span,
.diagnostic-panel span,
.contact-card span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.phone-signal a {
    display: block;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
}

.rapid-panel {
    position: absolute;
    left: -28px;
    bottom: 24px;
    width: min(340px, calc(100% - 32px));
    padding: 22px;
    border-radius: 8px;
    background: rgba(15, 24, 37, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.rapid-panel h2 {
    margin: 0 0 14px;
    font-size: 1.12rem;
}

.rapid-panel ol {
    margin: 0;
    padding-left: 20px;
    color: #d3dfed;
}

.rapid-panel li + li {
    margin-top: 9px;
}

.emergency-strip,
.local-proof {
    background: linear-gradient(135deg, #f4f7fb, #dde7f0);
    color: var(--text-dark);
}

.emergency-strip {
    padding: 34px 0;
}

.strip-grid,
.local-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 42px;
    align-items: center;
}

.strip-grid h2,
.local-grid h2 {
    margin: 10px 0 0;
    line-height: 1.05;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.strip-copy p,
.local-grid p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.strip-copy p + p,
.local-grid p + p {
    margin-top: 14px;
}

.inline-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--orange-dark);
    font-weight: 900;
}

.section-block {
    position: relative;
    padding: 86px 0;
}

.service-surface {
    background: linear-gradient(180deg, #101827 0%, #0b111d 100%);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 36px;
}

.section-heading.compact {
    margin-bottom: 0;
}

.section-heading h2,
.rca-panel h2,
.content-flow h2,
.final-cta h2,
.side-rail h2,
.contact-form h2 {
    margin: 12px 0 14px;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.section-heading p,
.rca-panel p,
.content-flow p,
.side-rail p,
.final-cta p,
.contact-info-panel p {
    color: #c1ccd9;
    font-size: 1.05rem;
}

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

.trust-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.claim-card {
    position: relative;
    min-height: 238px;
    padding: 26px;
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.11);
    overflow: hidden;
}

.claim-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--blue), transparent);
}

.claim-card i {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #fff;
    border-radius: 8px;
    background: rgba(54, 163, 255, 0.13);
    border: 1px solid rgba(54, 163, 255, 0.25);
    font-size: 1.2rem;
}

.claim-card h3 {
    margin: 20px 0 10px;
    font-size: 1.22rem;
    line-height: 1.2;
}

.claim-card p {
    color: #b9c5d3;
}

.claim-card-wide {
    grid-column: span 3;
    min-height: auto;
}

.dark-circuit {
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 15%, rgba(196, 88, 24, 0.2), transparent 28rem),
        linear-gradient(135deg, #0a101b, #141a24);
}

.dark-circuit > .site-shell {
    position: relative;
    z-index: 1;
}

.split-layout,
.docs-grid,
.content-grid,
.contact-grid,
.page-hero-grid {
    display: grid;
    gap: 44px;
}

.split-layout {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
}

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

.accident-steps li {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accident-steps span {
    color: var(--orange);
    font-weight: 950;
    font-size: 1.4rem;
}

.accident-steps strong {
    color: #f5f8fc;
    font-size: 1.04rem;
}

.local-proof {
    padding: 72px 0;
}

.local-index-section {
    background:
        radial-gradient(circle at 16% 20%, rgba(54, 163, 255, 0.16), transparent 32rem),
        linear-gradient(180deg, #101827, #0b111d);
}

.local-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.local-link-card {
    min-height: 118px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.local-link-card:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 88, 24, 0.52);
    background: rgba(255, 255, 255, 0.085);
}

.local-link-card i {
    color: var(--orange);
    font-size: 1.15rem;
}

.local-link-card span {
    color: #fff;
    font-weight: 900;
    font-size: 1.05rem;
}

.local-link-card small {
    color: var(--muted);
    font-weight: 700;
}

.docs-section {
    background: linear-gradient(180deg, #0b111d, #111927);
}

.docs-grid {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
}

.rca-panel,
.diagnostic-panel,
.contact-card {
    border-radius: 8px;
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        var(--panel-strong);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

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

.document-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 18px;
    color: #e7edf6;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 750;
}

.document-list i,
.icon-check-list i {
    color: var(--orange);
}

.faq-section {
    background: linear-gradient(180deg, #101827, #0b111d);
}

.faq-stack {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    color: var(--orange);
    transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 22px 20px;
}

.faq-answer p {
    color: #c2cedc;
}

.final-cta {
    padding: 72px 0;
    background:
        linear-gradient(135deg, rgba(196, 88, 24, 0.22), rgba(54, 163, 255, 0.14)),
        #111927;
}

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

.final-cta h2 {
    max-width: 780px;
}

.final-cta p {
    max-width: 760px;
}

.page-hero {
    background:
        radial-gradient(circle at 70% 12%, rgba(54, 163, 255, 0.18), transparent 30rem),
        linear-gradient(135deg, #0b111d, #510202);
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: center;
}

.diagnostic-panel strong {
    display: block;
    margin: 10px 0;
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    line-height: 1;
}

.diagnostic-panel p,
.contact-card p {
    color: #c5d0dc;
}

.content-grid {
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
}

.content-flow {
    color: #ecf3fb;
}

.content-flow h2 {
    margin-top: 0;
}

.content-flow h2:not(:first-child) {
    margin-top: 42px;
}

.content-flow h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.content-flow p {
    color: #c2cedc;
    margin-top: 12px;
}

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

.icon-check-list li {
    display: flex;
    gap: 10px;
    color: #dce7f3;
}

.numbered-flow {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
    padding-left: 24px;
    color: #dce7f3;
}

.numbered-flow li::marker {
    color: var(--orange);
    font-weight: 900;
}

.mini-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.mini-service-grid article {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e7edf6;
    font-weight: 800;
}

.mini-service-grid i {
    color: var(--orange);
    font-size: 1.15rem;
}

.side-rail {
    position: sticky;
    top: 98px;
    padding: 22px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.side-rail h2 {
    font-size: 1.2rem;
}

.side-rail a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 12px 0;
    color: #dce7f3;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 750;
}

.side-rail a::after {
    content: "\F138";
    font-family: "bootstrap-icons";
    color: var(--orange);
}

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

.document-explainer article {
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.document-explainer i {
    color: var(--orange);
    font-size: 1.35rem;
}

.contact-grid {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.contact-card .contact-big {
    display: block;
    margin: 6px 0 22px;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 950;
}

.contact-card .whatsapp {
    color: var(--green);
}

.contact-form {
    padding: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.form-row label {
    color: #dce7f3;
    font-weight: 800;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 7px;
    background: rgba(7, 12, 21, 0.72);
    color: #fff;
    min-height: 48px;
    padding: 12px 14px;
    font: inherit;
}

.form-row textarea {
    resize: vertical;
}

.damage-footer {
    padding: 60px 0 28px;
    background: #080d16;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.75fr 0.9fr 0.75fr 0.9fr;
    gap: 30px;
}

.footer-main p,
.footer-contact p {
    color: #aab5c4;
    margin-top: 16px;
}

.subtle-note {
    font-size: 0.94rem;
}

.footer-links,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links h2,
.footer-contact h2 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.footer-links a {
    color: #cdd8e6;
}

.footer-areas {
    grid-template-columns: 1fr;
    max-height: none;
}

.footer-phone,
.footer-wa {
    color: #fff;
    font-weight: 900;
}

.footer-wa {
    color: var(--green);
}

.anpc-zone {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 22px;
    align-items: center;
    margin-top: 42px;
    padding: 22px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.anpc-zone h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.anpc-zone p {
    color: #aab5c4;
    margin: 0;
}

.anpc-links,
.anpc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.anpc-links a,
.anpc-badges a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #e7edf6;
    font-weight: 850;
    padding: 9px 12px;
}

.anpc-badges img {
    max-width: 170px;
    max-height: 58px;
    object-fit: contain;
}

.anpc-badges a:has(img[style*="display: none"]) span {
    display: inline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #8f9baa;
    font-size: 0.92rem;
}

.mobile-contact-bar {
    display: none;
}

.cookie-consent {
    position: fixed;
    z-index: 130;
    left: 22px;
    bottom: 22px;
    width: min(560px, calc(100% - 44px));
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 8px;
    background: rgba(8, 13, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(16px);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-copy strong {
    display: block;
    color: #fff;
    margin-bottom: 6px;
    font-size: 1rem;
}

.cookie-copy p {
    color: #b8c4d2;
    font-size: 0.93rem;
}

.cookie-copy a {
    display: inline-flex;
    margin-top: 8px;
    color: var(--orange);
    font-weight: 850;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.cookie-reject {
    color: #e7edf6;
    background: rgba(255, 255, 255, 0.07);
}

.cookie-accept {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-color: transparent;
}

@media (max-width: 1080px) {
    .nav-call {
        display: none;
    }

    .damage-hero-layout,
    .split-layout,
    .docs-grid,
    .page-hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .damage-hero {
        min-height: auto;
    }

    .damage-hero-visual {
        min-height: auto;
    }

    .rapid-panel {
        left: 18px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .side-rail {
        position: static;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 76px 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px 20px 26px;
        background: rgba(8, 13, 22, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 14px;
    }

    .trust-grid,
    .trust-grid.three,
    .document-list,
    .document-explainer,
    .local-link-grid,
    .mini-service-grid,
    .strip-grid,
    .local-grid,
    .footer-grid,
    .anpc-zone {
        grid-template-columns: 1fr;
    }

    .claim-card-wide {
        grid-column: auto;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .site-shell,
    .breadcrumbs {
        width: min(100% - 28px, var(--max));
    }

    .nav-shell {
        min-height: 68px;
    }

    .main-nav {
        inset: 68px 0 auto 0;
    }

    .brand-lockup strong {
        font-size: 0.94rem;
    }

    .brand-lockup small {
        font-size: 0.72rem;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .damage-hero,
    .page-hero {
        padding: 48px 0 64px;
    }

    .damage-hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.18rem, 14vw, 3.55rem);
    }

    .damage-hero-copy p,
    .page-hero p {
        font-size: 1rem;
    }

    .hero-actions,
    .panel-actions,
    .final-actions {
        width: 100%;
    }

    .action-btn {
        width: 100%;
    }

    .desktop-phone-text {
        display: none;
    }

    .mobile-phone-text {
        display: inline;
    }

    .signal-badges span {
        width: 100%;
    }

    .damage-hero-visual img {
        height: 410px;
    }

    .phone-signal {
        top: 14px;
        right: 14px;
        left: 14px;
        display: none;
    }

    .rapid-panel {
        position: relative;
        display: none;
        width: 100%;
        left: auto;
        bottom: auto;
        margin-top: -34px;
    }

    .section-block {
        padding: 62px 0;
    }

    .claim-card,
    .rca-panel,
    .diagnostic-panel,
    .contact-card,
    .contact-form {
        padding: 22px;
    }

    .accident-steps li {
        grid-template-columns: 56px 1fr;
        padding: 16px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .anpc-zone {
        padding: 18px;
    }

    .anpc-links,
    .anpc-badges,
    .cookie-actions {
        width: 100%;
    }

    .anpc-links a,
    .anpc-badges a,
    .cookie-btn {
        flex: 1;
    }

    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 82px;
        width: auto;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }

    .mobile-contact-bar {
        position: fixed;
        z-index: 120;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: #070b13;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        padding: 8px;
        gap: 8px;
    }

    .mobile-contact-bar a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 7px;
        color: #fff;
        font-weight: 900;
        background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    }

    .mobile-contact-bar a + a {
        color: #07110e;
        background: linear-gradient(135deg, #55e6a5, var(--green));
    }

    body {
        padding-bottom: 68px;
    }
}
.soft-link-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    padding: 10px 14px;
    border: 1px solid rgba(249, 115, 22, .35);
    border-radius: 999px;
    color: #fed7aa;
    background: rgba(249, 115, 22, .08);
    font-weight: 800;
    font-size: .92rem;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.soft-link-pill i {
    color: #f97316;
    transition: transform .2s ease;
}

.soft-link-pill:hover {
    color: #fff7ed;
    background: rgba(249, 115, 22, .16);
    border-color: rgba(249, 115, 22, .65);
    transform: translateY(-1px);
}

.soft-link-pill:hover i {
    transform: translate(2px, -2px);
}
.claim-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.claim-card-top > i {
    flex: 0 0 auto;
}

.claim-card .claim-card-top + h3 {
    margin-top: 0;
}

.claim-service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    color: #7dd3fc;
    font-size: .82rem;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    letter-spacing: .01em;
    opacity: .9;
    transition:
        color .2s ease,
        opacity .2s ease,
        transform .2s ease;
}

.claim-service-link > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(125, 211, 252, .28);
    border-radius: 7px;
    background: rgba(14, 165, 233, .08);
    color: #38bdf8;
    font-size: .76rem;
    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.claim-service-link:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateX(2px);
}

.claim-service-link:hover > i {
    color: #ffffff;
    background: rgba(14, 165, 233, .18);
    border-color: rgba(56, 189, 248, .65);
    transform: translate(2px, -2px);
}

.claim-service-link:focus-visible {
    outline: 2px solid rgba(125, 211, 252, .75);
    outline-offset: 4px;
    border-radius: 8px;
}

/* opțional: cardul lat să nu aibă linkul prea departe vizual */
.claim-card-wide .claim-card-top {
    max-width: 100%;
}

@media (max-width: 640px) {
    .claim-card-top {
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .claim-service-link {
        font-size: .78rem;
    }

    .claim-service-link > i {
        width: 21px;
        height: 21px;
        font-size: .72rem;
    }
}
.signal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.signal-badges a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    transition: 
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.signal-badges a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}
@media (max-width: 768px) {
    .hero-actions {
        display: none;
    }

    .signal-badges {
        margin-top: 26px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .signal-badges a {
        width: 100%;
        justify-content: flex-start;
        min-height: 42px;
        padding: 12px 14px;
        font-size: 14px;
    }
}
:root {
    --ink: #f8fafc;
    --muted: #c9d3df;
    --dark: #070d16;
    --navy: #0b1220;
    --panel: rgba(12, 18, 30, 0.78);
    --panel-strong: rgba(15, 21, 34, 0.92);
    --line: rgba(255, 255, 255, 0.12);

    --orange: #d96b1f;
    --orange-dark: #8f3910;
    --orange-soft: #ff9a3c;
    --green: #3ee29a;
}

.damage-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 92px 0 64px;
    background:
        radial-gradient(circle at 77% 43%, rgba(217, 107, 31, 0.34), transparent 28%),
        radial-gradient(circle at 14% 24%, rgba(143, 57, 16, 0.28), transparent 32%),
        linear-gradient(135deg, #070d16 0%, #0a111d 44%, #100904 100%);
    color: var(--ink);
}

.damage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    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: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 82%);
    pointer-events: none;
}

.damage-hero::after {
    content: "";
    position: absolute;
    width: 660px;
    height: 660px;
    right: -220px;
    top: 80px;
    background: radial-gradient(circle, rgba(255, 132, 35, 0.24), transparent 68%);
    filter: blur(12px);
    pointer-events: none;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0 26%, rgba(217, 107, 31, 0.12) 26.2% 26.8%, transparent 27%),
        linear-gradient(150deg, transparent 0 58%, rgba(255, 154, 60, 0.08) 58.2% 59%, transparent 59.2%);
    opacity: 0.9;
}

.site-shell {
    width: min(1460px, calc(100% - 48px));
    margin-inline: auto;
}

.damage-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
    gap: 54px;
    align-items: center;
}

.damage-hero-copy {
    max-width: 660px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 22px;
    padding: 10px 14px;
    border: 1px solid rgba(217, 107, 31, 0.35);
    border-radius: 999px;
    background: rgba(217, 107, 31, 0.10);
    color: #ffd2ad;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 0 34px rgba(217, 107, 31, 0.12);
}

.section-kicker i {
    color: var(--orange-soft);
}

.damage-hero h1 {
    margin: 0;
    max-width: 640px;
    font-size: clamp(3.45rem, 7vw, 6.95rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
    font-weight: 950;
    color: #f8fafc;
    text-wrap: balance;
}

.damage-hero h1::after {
    content: "";
    display: block;
    width: 118px;
    height: 6px;
    margin-top: 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--orange-soft));
    box-shadow: 0 18px 46px rgba(217, 107, 31, 0.55);
}

.damage-hero-copy > p {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.55vw, 1.42rem);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 64px;
    padding: 0 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 950;
    letter-spacing: -0.02em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.action-btn:hover {
    transform: translateY(-3px);
}

.action-primary {
    color: #fff;
    background:
        linear-gradient(135deg, var(--orange), var(--orange-dark));
    border: 1px solid rgba(255, 190, 130, 0.28);
    box-shadow:
        0 20px 52px rgba(217, 107, 31, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.action-primary:hover {
    box-shadow:
        0 26px 66px rgba(217, 107, 31, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.action-whatsapp {
    color: #06140e;
    background: linear-gradient(135deg, #56eba6, #2fcf85);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 46px rgba(47, 207, 133, 0.22);
}

.action-whatsapp:hover {
    box-shadow: 0 24px 60px rgba(47, 207, 133, 0.34);
}

.signal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.signal-badges a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    color: #f5f7fb;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    text-decoration: none;
    font-weight: 750;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.signal-badges a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 154, 60, 0.55);
    background: rgba(217, 107, 31, 0.14);
    color: #ffd2ad;
}

.damage-hero-visual {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 0;
}

.damage-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0 0 0 52px;
    border: 1px solid rgba(217, 107, 31, 0.28);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(217, 107, 31, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(5, 10, 18, 0.28);
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.damage-hero-visual img {
    position: relative;
    z-index: 2;
    width: min(740px, 100%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 154, 60, 0.26);
    box-shadow:
        0 32px 86px rgba(0, 0, 0, 0.48),
        0 0 72px rgba(217, 107, 31, 0.18);
}

.phone-signal {
    position: absolute;
    z-index: 4;
    top: 16px;
    right: 50px;
    min-width: 300px;
    padding: 22px 24px;
    border: 1px solid rgba(255, 154, 60, 0.22);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(16, 19, 29, 0.96), rgba(8, 12, 20, 0.92));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.36),
        0 0 38px rgba(217, 107, 31, 0.14);
    backdrop-filter: blur(14px);
}

.phone-signal span {
    display: block;
    margin-bottom: 8px;
    color: #aeb8c8;
    font-size: 0.84rem;
    font-weight: 950;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.phone-signal a {
    color: #fff;
    text-decoration: none;
    font-size: 1.48rem;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.phone-signal a:hover {
    color: #ffd2ad;
}

.rapid-panel {
    position: absolute;
    z-index: 4;
    left: 0;
    bottom: 56px;
    width: min(425px, 64%);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.94), rgba(13, 18, 29, 0.88));
    box-shadow:
        0 28px 74px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.rapid-panel::before {
    content: "";
    position: absolute;
    inset: -1px auto -1px -1px;
    width: 5px;
    border-radius: 13px 0 0 13px;
    background: linear-gradient(180deg, var(--orange-soft), var(--orange-dark));
    box-shadow: 0 0 28px rgba(217, 107, 31, 0.55);
}

.rapid-panel h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 1.28rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.rapid-panel ol {
    display: grid;
    gap: 13px;
    margin: 0;
    padding-left: 1.25rem;
    color: #d8dee8;
    font-size: 1.02rem;
    line-height: 1.55;
}

.rapid-panel li::marker {
    color: var(--orange-soft);
    font-weight: 900;
}

/* responsive */
@media (max-width: 1180px) {
    .damage-hero {
        min-height: auto;
        padding: 72px 0 54px;
    }

    .damage-hero-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .damage-hero-copy {
        max-width: 820px;
    }

    .damage-hero h1 {
        max-width: 780px;
    }

    .damage-hero-visual {
        min-height: auto;
        padding: 24px 0 64px;
    }

    .damage-hero-visual::before {
        inset: 0;
    }

    .damage-hero-visual img {
        width: min(760px, 92%);
    }

    .phone-signal {
        right: 34px;
    }

    .rapid-panel {
        left: 24px;
    }
}

@media (max-width: 768px) {
    .site-shell {
        width: min(100% - 32px, 1460px);
    }

    .damage-hero {
        padding: 48px 0 38px;
    }

    .section-kicker {
        font-size: 0.72rem;
        padding: 9px 12px;
    }

    .damage-hero h1 {
        font-size: clamp(3.05rem, 15vw, 4.7rem);
        letter-spacing: -0.07em;
    }

    .damage-hero-copy > p {
        font-size: 1.06rem;
        line-height: 1.65;
    }

    .hero-actions {
        display: none;
    }

    .signal-badges {
        gap: 10px;
        margin-top: 26px;
    }

    .signal-badges a {
        min-height: 46px;
        padding: 0 13px;
        font-size: 0.9rem;
    }

    .damage-hero-visual {
        padding: 12px 0 0;
    }

    .damage-hero-visual::before {
        border-radius: 16px;
    }

    .damage-hero-visual img {
        width: 100%;
        border-radius: 14px;
    }

    .phone-signal,
    .rapid-panel {
        position: relative;
        inset: auto;
        width: 100%;
        min-width: 0;
        margin-top: 14px;
    }

    .phone-signal {
        padding: 18px;
    }

    .phone-signal a {
        font-size: 1.25rem;
    }

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

@media (max-width: 430px) {
    .damage-hero h1 {
        font-size: clamp(2.7rem, 15vw, 3.75rem);
    }

    .signal-badges a {
        width: 100%;
        justify-content: flex-start;
    }

    .phone-signal a {
        font-size: 1.12rem;
    }
}