:root {
    --bg: #f7f5f0;
    --bg-soft: #fcfbf8;
    --panel: #ffffff;
    --text: #1f2933;
    --text-soft: #5b6670;
    --line: #e7e1d8;
    --accent: #1f6d62;
    --accent-dark: #144c44;
    --accent-light: #edf7f4;
    --highlight: #eef7ef;
    --shadow: 0 18px 50px rgba(31, 41, 51, 0.08);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

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

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

.hero-grid>*,
.split>*,
.cards-grid>*,
.steps>*,
.areas>*,
.contact-grid>* {
    min-width: 0;
}

.hero-copy,
.hero-visual,
.hero-card,
.floating-note,
.card,
.step,
.feature-item,
.contact-card,
.form-card,
.tabs-shell,
.tab-panel,
.section-head,
.hero-copy p.lead,
.hero-copy>p,
.hero-actions,
.hero-points {
    min-width: 0;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(247, 245, 240, 0.9);
    border-bottom: 1px solid rgba(231, 225, 216, 0.9);
}

.topbar-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1 1 auto;
}

.brand small {
    color: var(--text-soft);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.brand strong {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.nav a {
    position: relative;
    color: var(--text-soft);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 999px;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.nav a:hover {
    color: var(--accent);
}

.input-valid-wrap {
    position: relative;
}

.input-valid-check {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #2f9e44;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.input-valid-wrap.is-valid .input-valid-check {
    opacity: 1;
}

.input-valid-wrap.is-valid input,
.input-valid-wrap.is-valid select,
.input-valid-wrap.is-valid textarea {
    padding-right: 44px;
}

@media (min-width: 992px) {
    .nav a::after {
        content: "";
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 2px;
        height: 3px;
        background: #6fb36f;
        border-radius: 999px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.25s ease;
    }

    .nav a:hover,
    .nav a:focus-visible {
        color: #2f7d32;
    }

    .nav a:hover::after,
    .nav a:focus-visible::after {
        transform: scaleX(1);
    }
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(31, 109, 98, 0.18);
    border-radius: 14px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    display: none;
}

.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 24px;
    min-width: 100%;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 58%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(115deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.18) 30%,
            rgba(255, 255, 255, 0.42) 50%,
            rgba(255, 255, 255, 0.18) 70%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-22deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 0;
}

.btn:hover::before,
.btn:focus-visible::before {
    left: 125%;
}

.btn>* {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff!important;
    box-shadow: 0 14px 34px rgba(31, 109, 98, 0.22);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.nav a.btn-primary,
.nav a.btn-primary:visited,
.nav a.btn-primary:hover,
.nav a.btn-primary:active,
.nav a.btn-primary:focus {
    color: #ffffff!important;
}

.btn-secondary {
    background: #eef7ef;
    border-color: #d8ebe0;
    color: var(--accent);
}

.btn-secondary:hover {
    background: #e3f2e6;
    border-color: #cfe4d7;
    color: var(--accent-dark);
    transform: translateY(-1px);
}

.hero {
    padding: 56px 0 42px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
}

.hero-copy {
    display: contents;
    align-self: start;
}

.hero-intro-image {
    grid-column: 1;
    grid-row: 1;
}

.hero-visual {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-copy h1 {
    display: block;
    width: 100%;
    max-width: 100%;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: -35px;
    margin-bottom: 0;
}

.hero-copy .lead {
    grid-column: 1;
    grid-row: 3;
}

.hero-copy>p:not(.lead) {
    grid-column: 1;
    grid-row: 4;
    max-width: 100%;
}

.hero-copy .hero-actions {
    grid-column: 1 / -1;
    grid-row: 5;
}

.hero-copy .hero-points {
    grid-column: 1 / -1;
    grid-row: 6;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-visual-eyebrow {
    display: none;
    margin: 0 0 20px;
    max-width: 100%;
}

.hero-visual-title {
    margin: 0 0 245px;
    font-size: clamp(34px, 4.8vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--text);
}

h1,
h2,
h3 {
    margin: 0 0 18px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h1 {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(38px, 6vw, 68px);
}

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

h3 {
    font-size: clamp(22px, 2.4vw, 28px);
}

p {
    margin: 0 0 16px;
    color: var(--text-soft);
    font-size: 17px;
}

.hero-copy p.lead {
    display: inline-block;
    font-size: 20px;
    max-width: 640px;
    margin: 0 0 20px;
    padding: 18px 24px;
    color: #5b667a;
    /* font-weight: 600; */
    line-height: 1.55;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(231, 225, 216, 0.95);
}

.hero-intro-image {
    display: block;
    margin: 0 0 18px;
}

.hero-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    align-items: center;
    margin: 18px 0 70px;
}

.hero-actions .btn {
    min-width: 0;
    width: auto;
    flex: 1 1 0;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hero-point {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 18px;
    box-shadow: var(--shadow);
}

.hero-point strong {
    display: block;
    margin-bottom: 6px;
    font-size: 22px;
}

.hero-point span {
    color: var(--text-soft);
    font-size: 22px;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: linear-gradient(705deg, #193b36 0%, #1f6d62 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 32px;
    padding: 26px;
    margin-top: 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.20),
        0 18px 50px rgba(22, 84, 75, 0.20);
    overflow: hidden;
    max-width: 100%;
    color: #ffffff;
}

.results-card {
    position: relative;
}

.results-eyebrow {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
}

.before-after-slider {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    aspect-ratio: 4 / 3;
}

.before-after-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.before-after-slide.active {
    display: block;
}

.before-after-slide img {
    width: 100%;
    height: 100%!important;
    display: block;
    object-fit: contain;
    object-position: center;
}

.before-after-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
}

.before-after-labels span {
    flex: 1 1 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-caption {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: 0.25s ease;
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1.12);
}

.hero-reviews-slider {
    margin: 0 0 34px;
}

.hero-reviews-viewport {
    overflow: hidden;
    border-radius: 24px;
}

.hero-reviews-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.hero-reviews-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.hero-review-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(231, 225, 216, 0.75);
    border-radius: 22px;
    padding: 20px;
    box-shadow: none;
    min-height: 100%;
}

.hero-review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.hero-review-meta {
    min-width: 0;
    flex: 1 1 auto;
}

.hero-review-source {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 262'%3E%3Cpath fill='%234285F4' d='M255.68 133.5c0-10.7-.96-18.5-3.03-26.62H130.55v48.17h71.64c-1.45 11.98-9.27 30.04-26.62 42.17l-.24 1.61 38.69 29.97 2.68.27c24.6-22.7 38.98-56.13 38.98-95.57'/%3E%3Cpath fill='%2334A853' d='M130.55 261.1c35.1 0 64.54-11.58 86.05-31.47l-41.03-31.85c-10.99 7.66-25.73 13.01-45.02 13.01-34.37 0-63.54-22.7-73.96-54.08l-1.52.13-40.23 31.13-.52 1.45c21.38 42.47 65.26 71.68 116.23 71.68'/%3E%3Cpath fill='%23FBBC05' d='M56.6 156.71c-2.75-8.14-4.34-16.84-4.34-25.76 0-8.92 1.59-17.62 4.2-25.76l-.07-1.72L15.66 71.84l-1.33.63C5.89 89.32 1.05 109.29 1.05 130.95c0 21.66 4.84 41.63 13.28 58.48z'/%3E%3Cpath fill='%23EB4335' d='M130.55 50.9c24.32 0 40.74 10.55 50.08 19.39l36.56-35.66C195.02 14.1 165.65.8 130.55.8 79.58.8 35.7 30 14.32 72.47l42.13 32.75c10.55-31.38 39.72-54.32 74.1-54.32'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.95;
}

.hero-review-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.hero-review-date {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.4;
    color: #7b8590;
}

.hero-review-stars {
    margin: 0 0 14px;
    color: #f4b400;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 2px;
}

.hero-review-text {
    margin: 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(31, 109, 98, 0.35) transparent;
}

.hero-review-text::-webkit-scrollbar {
    width: 6px;
}

.hero-review-text::-webkit-scrollbar-track {
    background: transparent;
}

.hero-review-text::-webkit-scrollbar-thumb {
    background: rgba(31, 109, 98, 0.28);
    border-radius: 999px;
}

.hero-reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.hero-reviews-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(31, 109, 98, 0.24);
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.hero-reviews-dot.active {
    background: var(--accent);
    transform: scale(1.12);
}

.floating-note {
    position: static;
    width: 100%;
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(231, 225, 216, 0.95);
    border-radius: 22px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
}

.floating-note strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.2;
}

.floating-note p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-soft);
}

.floating-note ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.55;
    columns: 2;
    column-gap: 26px;
}

.floating-note li+li {
    margin-top: 4px;
}

.floating-note li {
    break-inside: avoid;
}

.section {
    padding: 64px 0;
}

#vantaggi,
#tecnologia,
#aree,
#faq,
#contatti {
    scroll-margin-top: 110px;
}

.section-head {
    max-width: 100%;
    margin: 0px auto;
}


.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 24px;
    font-weight: 700;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: center;
}

.image-panel {
    position: relative;
    min-height: 846px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, rgba(31, 109, 98, 0.08), rgba(31, 109, 98, 0.02));
}

.image-panel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.image-panel-slide.active {
    opacity: 1;
}

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

.feature-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 18px;
    background: var(--panel);
    border: 1px solid var(--line);
}

.feature-item .tick {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--highlight);
    color: var(--accent);
    border-radius: 50%;
    font-weight: 800;
    margin-top: 2px;
}

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

.area-pill {
    width: 100%;
    max-width: 190px;
    margin: 0 auto;
    padding: 18px 20px;
    border-top-left-radius: 23px;
    border-bottom-left-radius: 23px;
    border-top-right-radius: 23px;
    border-bottom-right-radius: 23px;
    background: var(--panel);
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 0;
    text-align: center;
    font-weight: 700;
    box-shadow: var(--shadow);
    border-left: 8px solid #1F6D68;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.step {
    position: relative;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.step-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 18px;
}

.step-altri-trattamenti {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 18px;
}


.step-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 180px;
    margin: 0 0 18px;
    overflow: hidden;
}

.step-media-image {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.step-title-fotoringiovanimento {
    font-size: 24px;
    line-height: 1.08;
    word-break: normal;
    overflow-wrap: normal;
}

.tabs-section {
    padding: 28px 0 64px;
}

.expect-head {
    padding: 6px 0 18px;
}

.expect-head h2 {
    margin: 0;
    color: var(--text);
    text-align: center;
}

.tabs-shell {
    border: 1px solid var(--accent);
    background: #ffffff;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--accent);
}

.tab-button {
    appearance: none;
    border: 0;
    border-right: 1px solid rgba(31, 109, 98, 0.2);
    background: #ffffff;
    color: var(--accent);
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
}

.tab-button:last-child {
    border-right: 0;
}

.tab-button.active {
    background: var(--accent);
    color: #ffffff;
    font-weight: 700;
}

.tab-panel {
    display: none;
    padding: 42px 28px 46px;
}

.tab-panel.active {
    display: block;
}

.expect-steps {
    width: 85%;
    margin: 0 auto;
    counter-reset: section;
}

.expect-steps p {
    border-top: 2px dashed #bab7b8;
    margin: 0;
    padding: 30px;
    counter-increment: section;
    position: relative;
    font-size: 20px;
    line-height: 1.6;
    color: #3f444a;
}

.expect-steps p::before {
    content: counter(section);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 6px 16px rgba(31, 109, 98, 0.22);
}

.expect-steps p:nth-child(even)::before {
    right: 100%;
    margin-right: -20px;
}

.expect-steps p:nth-child(odd)::before {
    left: 100%;
    margin-left: -20px;
}

.expect-steps p:nth-child(even) {
    border-left: 2px dashed #bab7b8;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-right: 30px;
    padding-right: 0;
}

.expect-steps p:nth-child(odd) {
    border-right: 2px dashed #bab7b8;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-left: 30px;
    padding-left: 0;
}

.expect-steps p:first-child {
    border-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.expect-steps p:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.faq {
    display: grid;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
}

.faq-question .faq-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-left: auto;
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
    content: "";
    position: absolute;
    top: 9px;
    width: 12px;
    height: 3px;
    background: var(--accent);
    border-radius: 999px;
    transition: transform 0.25s ease;
}

.faq-question .faq-icon::before {
    left: 1px;
    transform: rotate(45deg);
    transform-origin: center;
}

.faq-question .faq-icon::after {
    right: 1px;
    transform: rotate(-45deg);
    transform-origin: center;
}

.faq-item.active .faq-question .faq-icon::before {
    transform: rotate(-45deg);
}

.faq-item.active .faq-question .faq-icon::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 24px;
    transition: max-height 0.35s ease, opacity 0.28s ease, padding 0.28s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 24px 24px;
}

.cta {
    padding: 72px 0 88px;
}

.cta-box {
    background: linear-gradient(135deg, #193b36 0%, #1f6d62 100%);
    border-radius: 36px;
    padding: 50px;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(25, 59, 54, 0.28);
}

.cta-box p,
.cta-box h2,
.cta-box .mini-note {
    color: #ffffff;
}

.cta-box .mini-note {
    opacity: 0.85;
    font-size: 14px;
    margin-top: 12px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.87fr 1.13fr;
    gap: 26px;
    margin-top: 34px;
    align-items: start;
}

.contact-card,
.form-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 26px;
}

.contact-card h3,
.form-card h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-card h4 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.25;
}

.contact-card h4+p {
    margin-top: 0;
}

.contact-card p,
.form-card p,
.contact-item,
.form-note,
.form-check label,
.form-error {
    color: #ffffff;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.contact-item {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
}

.contact-item small {
    display: block;
    opacity: 0.85;
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
}

.location-card {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.location-card h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
}

.location-card p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.6;
}

.map-illustration {
    position: relative;
    display: block;
    width: 100%;
    min-height: 170px;
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.10)),
        url('https://springinsight.com/wp-content/uploads/2018/05/39349451_s1.jpg') center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-illustration::before,
.map-illustration::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.map-illustration::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.map-illustration::after {
    background: radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.28) 0 48px, transparent 49px);
    opacity: 0.9;
}

.map-illustration:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(20, 76, 68, 0.22);
}


.map-caption {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

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

.form-row.full {
    grid-column: 1 / -1;
}

.form-row label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: -9px;
    margin-left: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #ffffff;
    color: var(--text);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    line-height: 1.4;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    font-family: inherit;
    font-size: 16px;
    color: #6b7280;
    opacity: 1;
}

.form-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%231f2933' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px 18px;
    padding-right: 46px;
    color: #6b7280;
}

.form-row select::-ms-expand {
    display: none;
}

.form-row select:valid {
    color: var(--text);
}

#contactForm.form-validation-attempted .form-row input:invalid,
#contactForm.form-validation-attempted .form-row select:invalid,
#contactForm.form-validation-attempted .form-row textarea:invalid {
    border-color: #d84c4c;
    box-shadow: 0 0 0 4px rgba(216, 76, 76, 0.12);
    background-color: #fff8f8;
}

#contactForm.form-validation-attempted .form-row input:focus:invalid,
#contactForm.form-validation-attempted .form-row select:focus:invalid,
#contactForm.form-validation-attempted .form-row textarea:focus:invalid {
    border-color: #d84c4c;
    box-shadow: 0 0 0 4px rgba(216, 76, 76, 0.16);
}

#contactForm.form-validation-attempted .form-check input:invalid {
    outline: 2px solid #d84c4c;
    outline-offset: 2px;
}

.form-row textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0 18px;
}

.form-check input {
    margin-top: 4px;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    accent-color: var(--accent);
    cursor: pointer;
}

.form-check label a {
    color: #dff5e4;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    font-weight: 700;
}

.form-check label a:hover,
.form-check label a:focus-visible {
    color: #f2fff5;
}

.form-note {
    opacity: 0.85;
    font-size: 13px;
    margin-top: 12px;
}

.anti-spam-help {
    display: none;
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    font-weight: 700;
}

.anti-spam-help a {
    color: #ffffff;
    text-decoration: underline;
}

.phone-reveal {
    display: block;
    min-height: 78px;
}

.phone-reveal-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 999px;
    background: #eef7ef;
    color: var(--accent-dark);
    font-size: 16px;
    font-weight: 800;
    border: 1px solid #d8ebe0;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.phone-reveal-button:hover {
    background: #e3f2e6;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(20, 76, 68, 0.12);
}

.phone-reveal-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 58%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(115deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.24) 30%,
            rgba(255, 255, 255, 0.58) 50%,
            rgba(255, 255, 255, 0.24) 70%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-22deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.phone-reveal-button:hover::before,
.phone-reveal-button:focus-visible::before {
    left: 125%;
}

.phone-reveal-number {
    display: none;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
}

.phone-reveal-number small {
    display: block;
    opacity: 0.85;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    color: #ffffff;
}

.phone-reveal.is-visible .phone-reveal-button {
    display: none;
}

.phone-reveal.is-visible .phone-reveal-number {
    display: block;
}

.form-error {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-weight: 700;
}

.form-success {
    margin: 0 0 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgb(18 194 83);
    border: 1px solid rgb(183 255 210 / 28%);
    color: #ecfdf5;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
}

.btn-light {
    background: #eef7ef;
    border-color: #d8ebe0;
    color: var(--accent-dark);
    box-shadow: 0 10px 24px rgba(20, 76, 68, 0.10);
}

.btn-light:hover {
    background: #e3f2e6;
    border-color: #cfe4d7;
    color: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-light:hover {
    background: #e3f2e6;
    border-color: #cfe4d7;
    color: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.btn-outline-light:hover {
    border-color: #ffffff;
}

.mobile-reviews-section {
    display: none;
}

.footer {
    border-top: 1px solid var(--line);
    padding: 26px 0 40px;
    background: var(--bg-soft);
}

.footer small {
    display: block;
    color: var(--text-soft);
    line-height: 1.7;
}

@media (max-width: 1100px) {

    .hero-grid,
    .split,
    .cards-grid,
    .steps,
    .areas,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 1024px) {
    .tabs-nav {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
        text-align: left;
        border-right: 0;
        border-bottom: 1px solid rgba(31, 109, 98, 0.2);
        padding: 20px 18px;
        font-size: 17px;
    }

    .tab-panel {
        padding: 24px 18px 28px;
    }

    .expect-steps {
        width: 92%;
    }

    .expect-steps p {
        font-size: 18px;
        line-height: 1.65;
        padding: 24px;
    }

    .expect-steps p::before {
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 19px;
    }

    .expect-steps p:nth-child(even) {
        border-left: 2px dashed #bab7b8;
        border-top-left-radius: 28px;
        border-bottom-left-radius: 28px;
        margin-right: 22px;
        padding-right: 0;
        padding-left: 26px;
    }

    .expect-steps p:nth-child(odd) {
        border-right: 2px dashed #bab7b8;
        border-top-right-radius: 28px;
        border-bottom-right-radius: 28px;
        margin-left: 22px;
        padding-left: 0;
        padding-right: 26px;
    }

    .expect-steps p:nth-child(even)::before {
        left: auto;
        right: 100%;
        margin-right: -21px;
    }

    .expect-steps p:nth-child(odd)::before {
        left: 100%;
        right: auto;
        margin-left: -21px;
    }

    .expect-steps p:first-child {
        border-top: 0;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }

    .expect-steps p:last-child {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
}

@media (max-width: 820px) {

    .before-after-slider {
        aspect-ratio: 4 / 3;
    }

    .before-after-slide img {
        width: 100%;
        height: 100%!important;
        display: block;
        object-fit: contain;
        object-position: center;
    }

    .topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1008;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .topbar.is-menu-open {
        position: fixed;
        z-index: 1009;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .topbar-inner {
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 14px;
        position: relative;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
        padding-right: 70px;
    }

    .brand small {
        font-size: 17px;
        letter-spacing: 0.10em;
        line-height: 1.3;
    }

    .brand strong {
        font-size: 19px;
        line-height: 1.15;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: 0;
        flex: 0 0 52px;
        align-self: flex-start;
        position: absolute;
        top: 14px;
        right: 0;
        z-index: 1007;
    }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(31, 109, 98, 0.80);
        z-index: 1002;
    }

    .mobile-menu-overlay.is-open {
        display: block;
    }

    .nav {
        display: none;
        position: fixed;
        top: 116px;
        left: 16px;
        right: 16px;
        width: auto;
        margin-top: 0;
        padding: 16px;
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        z-index: 1006;
    }

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

    .nav a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 17px 18px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: #ffffff;
        color: var(--text-soft);
        font-size: 20px;
        font-weight: 700;
        transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .nav a+a {
        margin-top: 2px;
    }

    .nav a::after {
        content: '‹';
        font-size: 22px;
        line-height: 1;
        color: rgba(31, 109, 98, 0.48);
        transition: color 0.2s ease, transform 0.2s ease;
    }

    .nav a:hover,
    .nav a:focus,
    .nav a.is-active {
        background: var(--accent);
        color: #ffffff;
        border-color: var(--accent);
        transform: translateX(2px);
    }

    .nav a:hover::after,
    .nav a:focus::after,
    .nav a.is-active::after {
        color: #ffffff;
        transform: translateX(-2px);
    }

    body {
        font-size: 18px;
        overflow-x: hidden;
        padding-top: 92px;
    }

    p {
        font-size: 18px;
        line-height: 1.72;
    }

    .hero-copy p.lead {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        font-size: 22px;
        line-height: 1.6;
        margin: 34px auto;
        overflow-wrap: anywhere;
        word-break: break-word;
        border: 1px solid rgba(231, 225, 216, 0.95);
    }

    .leader-medal-box {
        grid-template-columns: 1fr!important;
        gap: 14px!important;
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px;
        padding: 18px!important;
        overflow: hidden;
    }

    .leader-medal-image {
        justify-content: center!important;
    }

    .leader-medal-image img {
        width: 140px!important;
        max-width: 100%;
        height: auto;
    }

    .leader-medal-text {
        width: 100%;
        max-width: 100%;
        text-align: center!important;
        min-width: 0;
        overflow: hidden;
    }

    .leader-medal-text b {
        display: block;
        width: 100%;
        max-width: 100%;
        font-size: 22px!important;
        line-height: 1.25!important;
        overflow-wrap: anywhere;
        word-break: break-word;
        white-space: normal;
    }

    h1 {
        display: block;
        width: 100%;
        max-width: 100%;
        font-size: clamp(36px, 8.2vw, 48px);
        line-height: 1.08;
        letter-spacing: -0.035em;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    h2 {
        font-size: clamp(32px, 7vw, 40px);
        line-height: 1.12;
    }

    h3 {
        font-size: 26px;
        line-height: 1.18;
    }

    .eyebrow {
        font-size: 22px;
        line-height: 1.5;
        padding: 12px 16px;
    }

    .hero-visual-eyebrow {
        display: none;
    }

    .hero-visual-title {
        display: none;
    }

    .hero-reviews-slider {
        margin-bottom: 18px;
    }

    .hero-reviews-slide {
        grid-template-columns: 1fr;
    }

    .hero-review-card {
        padding: 18px;
        border-radius: 18px;
    }

    .hero-review-name {
        font-size: 20px;
    }

    .hero-review-text {
        font-size: 18px;
        line-height: 1.72;
        max-height: 260px;
    }

    .hero-copy {
        display: block;
    }

    .hero-intro-image,
    .hero-visual,
    .hero-copy h1,
    .hero-copy .lead,
    .hero-copy>p:not(.lead),
    .hero-copy .hero-actions,
    .hero-copy .hero-points {
        grid-column: auto;
        grid-row: auto;
        margin-top: 0;
        max-width: none;
    }

    .hero,
    .section,
    .cta {
        padding: 28px 0;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-actions {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        margin: 18px 0 24px;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 100%;
        flex: 0 0 auto;
    }

    .hero-grid>*,
    .split>*,
    .cards-grid>*,
    .steps>*,
    .areas>*,
    .contact-grid>* {
        min-width: 0;
    }

    .hero-intro-image {
        margin: 0;
    }

    .hero-grid,
    .split,
    .cards-grid,
    .steps,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .areas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 12px;
        align-items: start;
        justify-items: center;
    }

    .hero-photo,
    .image-panel {
        min-height: 360px;
    }

    .floating-note {
        position: static;
        width: 100%;
        margin-top: 14px;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 16px;
        border-radius: 18px;
    }

    .floating-note ul {
        columns: 1;
        column-gap: 0;
        padding-left: 20px;
        padding-right: 12px;
        font-size: 17px;
        line-height: 1.55;
    }


    .card,
    .step,
    .feature-item,
    .hero-point,
    .area-pill,
    .faq-question,
    .faq-item,
    .tabs-shell,
    .tab-panel {
        border-radius: 18px;
    }

    .hero-card {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 18px;
    }

    .results-card,
    .before-after-slider,
    .floating-note,
    .hero-reviews-slider,
    .hero-reviews-viewport,
    .hero-reviews-track,
    .hero-reviews-slide,
    .hero-review-card {
        width: 100%;
        max-width: 100%;
    }

    .slider-dots,
    .hero-reviews-dots {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        overflow: hidden;
    }

    .slider-dot,
    .hero-reviews-dot {
        flex: 0 0 auto;
    }

    .card,
    .step,
    .feature-item,
    .hero-point {
        padding: 18px;
    }

    .feature-item {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 18px 18px 18px 16px;
    }

    .feature-item .tick {
        margin-left: 2px;
    }

    .cards-grid,
    .steps,
    .areas,
    .feature-list,
    .contact-grid {
        gap: 14px;
    }

    .contact-column {
        display: contents;
    }

    .contact-column>.location-card {
        order: 1;
    }

    .contact-grid>.form-card {
        order: 2;
    }

    .contact-column>.contact-card:not(.location-card) {
        order: 3;
    }

    .area-pill {
        width: 100%;
        max-width: 160px;
        margin: 0 auto;
        padding: 14px 16px;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 19px;
        line-height: 1.5;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 18px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .cta-box {
        padding: 20px 12px;
        border-radius: 22px;
    }

    .contact-grid {
        margin-top: 20px;
    }

    .mobile-reviews-section {
        display: block;
        padding: 8px 0 28px;
    }

    .mobile-reviews-section .container {
        width: min(calc(100% - 28px), var(--container));
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-card,
    .form-card {
        padding: 16px;
        border-radius: 18px;
    }

    .location-card {
        margin-top: 14px;
        padding: 14px;
        border-radius: 16px;
    }

    .contact-list {
        margin-top: 14px;
        gap: 10px;
    }

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

    .tabs-nav {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
        text-align: left;
        border-right: 0;
        border-bottom: 1px solid rgba(31, 109, 98, 0.2);
        padding: 18px 16px;
        font-size: 17px;
        line-height: 1.45;
    }

    .tab-panel {
        padding: 22px 14px 24px;
    }

    .expect-steps {
        width: 96%;
    }

    .expect-steps p {
        font-size: 18px;
        line-height: 1.75;
        padding: 18px 16px;
    }

    .expect-steps p::before {
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 17px;
        box-shadow: 0 4px 12px rgba(31, 109, 98, 0.18);
    }

    .expect-steps p:nth-child(even) {
        border-left: 2px dashed #bab7b8;
        border-top-left-radius: 24px;
        border-bottom-left-radius: 24px;
        margin-right: 18px;
        padding-right: 0;
        padding-left: 18px;
    }

    .expect-steps p:nth-child(odd) {
        border-right: 2px dashed #bab7b8;
        border-top-right-radius: 24px;
        border-bottom-right-radius: 24px;
        margin-left: 18px;
        padding-left: 0;
        padding-right: 18px;
    }

    .expect-steps p:nth-child(even)::before {
        left: auto;
        right: 100%;
        margin-right: -18px;
    }

    .expect-steps p:nth-child(odd)::before {
        left: 100%;
        right: auto;
        margin-left: -18px;
    }

    .expect-steps p:first-child {
        border-top: 0;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }

    .expect-steps p:last-child {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
}


@supports (-webkit-touch-callout: none) {
    @media (max-width: 430px) {
        .brand small {
            font-size: 13px;
            letter-spacing: 0.08em;
            line-height: 1.22;
        }

        .brand strong {
            font-size: 14px;
            line-height: 1.12;
        }

        .topbar-inner {
            min-height: 68px;
        }

        body {
            padding-top: 82px;
        }
    }
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px!important;
    max-width: 360px!important;
    background: #fff!important;
    color: #646464!important;
    padding: 10px!important;
    z-index: 1000!important;
    font-family: sans-serif!important;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1)!important;
    border-radius: 8px!important;
    border: 1px solid #e0dede;
}

.cookie-banner p {
    margin: 4px 6px;
    font-size: 14px;
}

.cookie-banner-title {
    font-weight: bold;
    font-size: 18px!important;
}

.cookie-banner-text a {
    color: #1a73e8!important;
    text-decoration: underline!important;
    font-size: 17px;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    border: 2px solid #879797;
    background: #e9e9e9;
    color: #555555;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12)!important;
}

.cookie-btn-accept {
    background: #1a73e8!important;
    color: #fff!important;
    border: none!important;
}

.cookie-btn-reject,
.cookie-btn-customize {
    background: #ffffff!important;
    color: #1a73e8!important;
    border: 1px solid #1a73e8!important;
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 0!important;
        right: 0!important;
        bottom: 0!important;
        width: 100%!important;
        max-width: 100%!important;
        border-radius: 0!important;
        padding: 16px 12px 20px 12px!important;
        box-shadow: none!important;
    }

    .cookie-banner-actions {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: auto!important;
        font-size: 16px!important;
        padding: 12px!important;
    }
}


/* =========================
   Assistente virtuale
========================= */
.ai-assistant-response {
    margin-top: 16px;
    display: grid;
    gap: 12px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(31, 109, 98, 0.28) transparent;
}

.ai-assistant-compose {
    margin-top: 10px;
    display: grid;
    gap: 0;
    position: sticky;
    bottom: 0;
    background: #ffffff;
    padding-top: 4px;
}

.ai-assistant-response::-webkit-scrollbar {
    width: 6px;
}

.ai-assistant-response::-webkit-scrollbar-track {
    background: transparent;
}

.ai-assistant-response::-webkit-scrollbar-thumb {
    background: rgba(31, 109, 98, 0.24);
    border-radius: 999px;
}

.ai-assistant-message-row {
    display: flex;
    width: 100%;
}

.ai-assistant-message-row.is-user {
    justify-content: flex-end;
}

.ai-assistant-message-row.is-bot {
    justify-content: flex-start;
}

.ai-assistant-message-bubble {
    max-width: 88%;
    border-radius: 18px;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.55;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    white-space: pre-wrap;
    word-break: break-word;
    animation: aiMessageFadeIn 0.28s ease;
}

.ai-assistant-message-bubble.is-user {
    background: #d9ecf8;
    color: #15374b;
    border-top-right-radius: 6px;
    border: 1px solid rgba(21, 55, 75, 0.08);
}

.ai-assistant-message-bubble.is-bot {
    background: #f1f3f5;
    color: #1f2937;
    border-top-left-radius: 6px;
    border: 1px solid rgba(31, 41, 55, 0.06);
}

.ai-assistant-message-bubble.is-bot.is-typing {
    background: #f9d2f9;
    color: #6b2f6b;
    border: 1px solid rgba(107, 47, 107, 0.10);
}

.ai-assistant-message-bubble.is-bot.is-typing::after {
    content: " ⏳";
    display: inline-block;
    margin-left: 6px;
    transform-origin: 50% 55%;
    animation: aiHourglassSpin 5s ease-in-out infinite;
}

.ai-assistant-message-bubble.is-error {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid rgba(159, 18, 57, 0.10);
}

.ai-assistente {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.grecaptcha-badge {
    left: auto!important;
    right: -186px!important;
    bottom: 0!important;
    transform: scale(0.78);
    transform-origin: right bottom;
    opacity: 1;
    transition: right 0.25s ease!important, opacity 0.25s ease!important;
}

.grecaptcha-badge:hover {
    right: 6px!important;
}

.ai-assistente::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.ai-assistant-card {
    position: relative;
    width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: aiFadeInUp 1.8s ease;
    z-index: 5;
}

.ai-tooltip-close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
    z-index: 6;
}

.ai-assistant-figure {
    position: relative;
    z-index: 2;
    width: 230px;
    margin: 0 auto -28px;
    pointer-events: none;
}

.ai-assistant-image {
    display: block;
    width: 100%;
    height: auto;
}

.ai-assistant-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    padding: 26px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    overflow: visible;
    flex: 0 0 auto;
}

.ai-tooltip-text {
    font-size: 15px;
    line-height: 1.5;
    color: #1f2937;
    padding-right: 34px;
    margin-bottom: 0px;
}

.ai-assistant-question {
    width: 100%;
    min-height: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f3f4f6;
    border: 1px solid rgba(31, 41, 55, 0.08);
    padding: 12px 14px;
    resize: none;
    overflow-y: auto;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.35;
    color: #1f2937;
    outline: none;
    box-shadow: none;
    transition: height 0.2s ease, min-height 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ai-assistant-question::placeholder {
    color: #6b7280;
    opacity: 1;
}


.ai-assistant-question:focus {
    border-color: rgba(31, 109, 98, 0.30);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(31, 109, 98, 0.08);
    min-height: 96px;
    height: 96px;
}

.ai-contact-form-wrapper {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: #f8fbfa;
    border: 1px solid rgba(31, 109, 98, 0.10);
}

.ai-contact-form-head {
    margin: 0 0 14px;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.ai-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.ai-contact-form-row {
    display: grid;
    gap: 8px;
}

.ai-contact-form-row label {
    color: #1f2937;
    font-size: 13px;
    font-weight: 700;
    margin-left: 10px;
}

.ai-contact-input {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(31, 41, 55, 0.10);
    background: #ffffff;
    color: #1f2937;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    line-height: 1.4;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ai-contact-input::placeholder {
    color: #6b7280;
    opacity: 1;
}

.ai-contact-input:focus {
    border-color: rgba(31, 109, 98, 0.30);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(31, 109, 98, 0.08);
}

.ai-contact-submit {
    margin-top: 16px;
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f7b63 0%, #18a37f 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(15, 123, 99, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.ai-contact-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(15, 123, 99, 0.28);
}

.ai-contact-submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 123, 99, 0.14), 0 12px 28px rgba(15, 123, 99, 0.22);
}

.ai-assistant-send {
    min-width: 148px;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-top: 10px;
    background: linear-gradient(135deg, #0f7b63 0%, #18a37f 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(15, 123, 99, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.ai-assistant-compose.is-collapsed .ai-assistant-send {
    display: none;
}

.ai-assistant-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(15, 123, 99, 0.34);
}

.ai-assistant-send:active {
    transform: translateY(0);
}

.ai-assistant-send:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 123, 99, 0.16), 0 12px 28px rgba(15, 123, 99, 0.28);
}

.ai-assistant-send.is-loading {
    opacity: 0.88;
    cursor: wait;
    transform: none;
    animation: none;
}

.ai-assistant-send-pulse {
    animation: aiAssistantPulse 1.2s ease-in-out infinite;
}

.ai-assistant-send.is-sent {
    animation: none;
}

@keyframes aiMessageFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aiHourglassSpin {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    70% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes aiAssistantPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 12px 28px rgba(15, 123, 99, 0.24);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 0 0 8px rgba(24, 163, 127, 0.12), 0 16px 34px rgba(15, 123, 99, 0.34);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 12px 28px rgba(15, 123, 99, 0.24);
    }
}


.ai-bubble {
    position: relative;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #eaf7ed 0%, #dff3e5 100%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
}

.ai-bubble[hidden],
.ai-assistant-card[hidden] {
    display: none!important;
}

.ai-assistant-card:not([hidden])~.ai-bubble {
    display: none!important;
}

.ai-assistant-card:not([hidden])~.ai-bubble,
.ai-assistant-card:not([hidden]) {
    position: relative;
    z-index: 5;
}

.ai-assistant-card:not([hidden]) {
    z-index: 5;
}

.ai-assistente:has(.ai-assistant-card:not([hidden]))::before {
    opacity: 1;
    pointer-events: none;
}

.ai-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.ai-bubble-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #35c759;
    display: inline-block;
    box-shadow: 0 0 0 10px rgba(53, 199, 89, 0.14);
}

.ai-bubble-text {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    color: #143122;
}

@keyframes aiFadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .ai-assistant-compose {
        margin-top: 0;
        gap: 0;
        padding-top: 0;
    }

    .ai-assistant-send {
        width: 100%;
        align-self: stretch;
        margin-top: 8px;
    }

    .ai-assistente {
        right: 12px;
        bottom: 12px;
    }

    .ai-assistente::before {
        background: rgba(0, 0, 0, 0.34);
    }

    .ai-assistant-card {
        width: min(340px, calc(100vw - 24px));
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .ai-assistant-figure {
        width: 210px;
        margin-bottom: -24px;
    }

    .ai-assistant-panel {
        border-radius: 22px;
        padding: 24px 18px 18px 18px;
        overflow: visible;
        flex: 0 0 auto;
    }

    .ai-bubble {
        padding: 11px 16px;
    }

    .ai-contact-form-wrapper {
        padding: 14px;
    }

    .ai-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ai-contact-form-row label {
        margin-left: 8px;
    }

    .ai-contact-input,
    .ai-contact-submit {
        min-height: 52px;
        font-size: 15px;
    }

    .ai-tooltip-text {
        margin-bottom: 0;
    }

    .ai-assistant-question {
        min-height: 44px;
        height: 44px;
        padding: 10px 12px;
        font-size: 15px;
        line-height: 1.3;
    }

    .ai-assistant-question:focus {
        min-height: 84px;
        height: 84px;
    }

    .ai-assistant-response {
        max-height: 220px;
    }

    .ai-assistant-message-bubble {
        max-width: 92%;
        font-size: 14px;
        padding: 12px 14px;
    }
}

/* ===== INIZIO EFFETTO REVEAL SU H2 E CONTENUTI COLLEGATI ===== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== FINE EFFETTO REVEAL SU H2 E CONTENUTI COLLEGATI ===== */


/* ===== INIZIO CSS SFONDO SEZIONE PRIMA/DOPO A LARGHEZZA PIENA ===== */
.full-width-highlight-section {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #f6ddff 0%, #ffffff 100%);
}

.full-width-highlight-section::before,
.full-width-highlight-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2000px;
    background: linear-gradient(180deg, #f3f8f5 0%, #edf5f0 100%);
    pointer-events: none;
}

.full-width-highlight-section::before {
    right: 100%;
}

.full-width-highlight-section::after {
    left: 100%;
}

.full-width-highlight-section .container {
    position: relative;
    z-index: 1;
}
.before-after-compare-label {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #24323a;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
    transform: translateY(-50%);
}

.before-after-compare-label-left {
    left: 18px;
}

.before-after-compare-label-right {
    right: 18px;
}

/* ===== FINE CSS SFONDO SEZIONE PRIMA/DOPO A LARGHEZZA PIENA ===== */


/* ===== INIZIO CSS CONFRONTO PRIMA DOPO CON CURSORE ===== */
.before-after-compare-section .section-head {
    margin-bottom: 26px;
}

.before-after-compare {
    --compare-position: 50%;
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(15, 23, 22, 0.08);
    line-height: 0;
}

.before-after-compare-base,
.before-after-compare-top {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.before-after-compare-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.before-after-compare-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-compare-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--compare-position);
    width: 2px;
    background: rgba(255, 255, 255, 0.96);
    transform: translateX(-50%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    z-index: 3;
}

.before-after-compare-handle {
    position: absolute;
    top: 54%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -54%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.before-after-compare-handle::after {
    content: "Sposta destra e sinistra";
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #24323a;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.before-after-compare:hover .before-after-compare-handle::after,
.before-after-compare:active .before-after-compare-handle::after,
.before-after-compare:focus-within .before-after-compare-handle::after {
    opacity: 0;
    visibility: hidden;
}

.before-after-compare-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

.before-after-compare-arrow-left {
    border-right: 9px solid #2b3a42;
}

.before-after-compare-arrow-right {
    border-left: 9px solid #2b3a42;
}

.before-after-compare-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 4;
}

/* ===== INIZIO MEDIA QUERY MOBILE CONFRONTO PRIMA DOPO ===== */
@media (max-width: 820px) {
    .before-after-compare-label {
        top: 50%;
        padding: 8px 12px;
        font-size: 12px;
        transform: translateY(-50%);
    }

    .before-after-compare-label-left {
        left: 12px;
    }

    .before-after-compare-label-right {
        right: 12px;
    }

    .before-after-compare {
        border-radius: 18px;
    }

    .before-after-compare-handle {
        width: 50px;
        height: 50px;
        gap: 6px;
    }

    .before-after-compare-handle::after {
        top: calc(100% + 8px);
        padding: 6px 10px;
        font-size: 10px;
    }

    .before-after-compare:hover .before-after-compare-handle::after,
    .before-after-compare:active .before-after-compare-handle::after,
    .before-after-compare:focus-within .before-after-compare-handle::after {
        opacity: 0;
        visibility: hidden;
    }

    .before-after-compare-arrow {
        border-top-width: 6px;
        border-bottom-width: 6px;
    }

    .before-after-compare-arrow-left {
        border-right-width: 8px;
    }

    .before-after-compare-arrow-right {
        border-left-width: 8px;
    }
}
/* ===== FINE MEDIA QUERY MOBILE CONFRONTO PRIMA DOPO ===== */


/* ===== INIZIO CSS BOX TRATTAMENTO PERSONALIZZATO HERO ===== */
.hero-treatment-box {
    max-width: 100%;
    margin: 20px 0 0;
    padding: 22px 24px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(231, 225, 216, 0.95);
    text-align: left;
}

.hero-treatment-box-title {
    display: block;
    color: #000000;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.hero-treatment-box-text {
    margin: 16px 0 12px;
    color: #4e5968;
    font-size: 18px;
    line-height: 1.7;
}

.hero-treatment-box-list {
    margin: 0;
    padding-left: 20px;
    color: #4e5968;
    font-size: 17px;
    line-height: 1.8;
}

.hero-treatment-box-image-wrap {
    margin: 0 0 16px;
}

.hero-treatment-box-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.hero-intro-image-animated {
    position: relative;
    overflow: hidden;
}

.hero-intro-image-animated .hero-intro-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroIntroCrossfade 8s infinite ease-in-out;
}

.hero-intro-image-animated .hero-intro-frame-1 {
    position: relative;
    opacity: 1;
    animation-delay: 0s;
}

.hero-intro-image-animated .hero-intro-frame-2 {
    animation-delay: 4s;
}

@keyframes heroIntroCrossfade {
    0% {
        opacity: 0;
    }
    6% {
        opacity: 1;
    }
    44% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
/* ===== FINE CSS BOX TRATTAMENTO PERSONALIZZATO HERO ===== */

/* INIZIO MEDAGLIA RISULTATI GARANTITI */
.section-medaglia-risultati-garantiti {
    padding-top: 10px;
    padding-bottom: 10px;
}

.medaglia-risultati-garantiti-wrap {
    text-align: center;
}

.medaglia-risultati-garantiti-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: inline-block;
}

@media (max-width: 767px) {
    .section-medaglia-risultati-garantiti {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .medaglia-risultati-garantiti-img {
        max-width: 260px;
    }
}
/* FINE MEDAGLIA RISULTATI GARANTITI */

/* INIZIO MEDAGLIA RISULTATI GARANTITI SU IMMAGINE GRANDE NELLA INDEX.PHP */
.before-after-compare {
    position: relative;
}

.before-after-badge-top-left-index {
    position: absolute;
    top: 160px;
    left: 130px;
    z-index: 8;
    pointer-events: none;
}

.before-after-badge-top-left-img-index {
    width: 100px;
    height: auto;
    display: block;
    transform: rotate(-28deg);
    filter: drop-shadow(0 12px 22px rgba(255, 255, 255, 0.95));
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .before-after-badge-top-left-index {
        top: 138px;
        left: 8px;
    }
}

@media (max-width: 767px) {
    .before-after-badge-top-left-index {
        display: none;
    }
}
/* FINE MEDAGLIA RISULTATI GARANTITI SU IMMAGINE GRANDE NELLA INDEX.PHP */

/* INIZIO MEDAGLIA RISULTATI GARANTITI SU IMMAGINE GRANDE */
.before-after-compare {
    position: relative;
}

.before-after-badge-top-left {
    position: absolute;
    top: 110px;
    left: 130px;
    z-index: 8;
    pointer-events: none;
}

.before-after-badge-top-left-img {
    width: 100px;
    height: auto;
    display: block;
    transform: rotate(-28deg);
    filter: drop-shadow(0 12px 22px rgba(255, 255, 255, 0.95));
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .before-after-badge-top-left {
        top: 138px;
        left: 8px;
    }
}
@media (max-width: 767px) {
    .before-after-badge-top-left {
        display: none;
    }
}
/* FINE MEDAGLIA RISULTATI GARANTITI SU IMMAGINE GRANDE */

/* INIZIO TESTO SOTTO IMMAGINE PRIMA E DOPO */
.before-after-note-text {
    max-width: 900px;
    margin: 22px auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
}
/* FINE TESTO SOTTO IMMAGINE PRIMA E DOPO */

/* ===== FINE CSS CONFRONTO PRIMA DOPO CON CURSORE ===== */