/* =================================================================
   LANDING PAGES — Shared styles (faccette, ortodonzia, gbt)
   ================================================================= */

/* ===== MINIMAL HEADER ===== */
.lp-header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(13,21,40,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    z-index: 1000;
    padding: 14px 0;
    transition: all .4s ease;
}
.lp-header__bar {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
}
.lp-header__logo { display: inline-block; line-height: 0; }
.lp-header__logo img { height: 38px; filter: brightness(10); }
.lp-header__cta { display: flex; gap: 20px; align-items: center; }
.lp-header__tel {
    display: flex; align-items: center; gap: 8px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem; font-weight: 700;
    transition: color .25s;
}
.lp-header__tel:hover { color: var(--accent-light); }
.lp-header__tel svg { stroke: var(--accent-light); }
.lp-header__back {
    color: rgba(255,255,255,.55);
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem; text-transform: uppercase;
    letter-spacing: 1.5px; font-weight: 600;
    transition: color .25s;
}
.lp-header__back:hover { color: var(--accent-light); }

@media (max-width: 900px) {
    .lp-header__bar { padding: 0 18px; }
    .lp-header__back { display: none; }
    .lp-header__tel span { display: none; }
    .lp-header__cta { gap: 12px; }
    .lp-header__cta .btn { padding: 10px 16px; font-size: .72rem; letter-spacing: 1px; }
}
@media (max-width: 540px) {
    .lp-header        { padding: 10px 0; }
    .lp-header__logo img { height: 30px; }
    .lp-header__tel   { display: flex; padding: 8px; margin: 0; }
    .lp-header__tel svg { width: 18px; height: 18px; }
}
@media (max-width: 420px) {
    .lp-header__cta .btn { padding: 8px 12px; font-size: .68rem; }
}

/* ===== HERO ===== */
.lp-hero {
    position: relative; min-height: 90vh;
    min-height: 90dvh;
    display: flex; align-items: center;
    background: var(--dark); overflow: hidden;
    padding-top: 80px;
}
.lp-hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: .25; filter: saturate(.5);
}
.lp-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(13,21,40,.95) 0%, rgba(13,21,40,.7) 50%, rgba(13,21,40,.4) 100%);
}
.lp-hero__container {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 380px;
    gap: 60px; align-items: center;
    padding: 80px 40px; max-width: var(--max-w); margin: 0 auto;
}
.lp-hero__urgent {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(249,200,0,.15); border: 1px solid rgba(249,200,0,.4);
    padding: 8px 18px; color: var(--accent-light);
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 24px;
}
.lp-hero__urgent::before {
    content: ''; width: 7px; height: 7px;
    background: var(--accent-light); border-radius: 50%;
    animation: heroPulse 2s infinite;
}
.lp-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800; color: var(--white);
    line-height: 1.05; letter-spacing: -.03em;
    margin-bottom: 24px;
}
.lp-hero__title em { color: var(--accent-light); font-style: normal; }
.lp-hero__desc {
    color: rgba(255,255,255,.6); font-size: 1.05rem;
    line-height: 1.85; max-width: 500px;
    margin-bottom: 32px;
}
.lp-hero__bullets {
    list-style: none; padding: 0; margin: 0 0 36px;
    display: flex; flex-direction: column; gap: 12px;
}
.lp-hero__bullets li {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,.85); font-size: .95rem;
}
.lp-hero__bullets li::before {
    content: '✓';
    width: 22px; height: 22px;
    background: var(--accent); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: 800; font-size: .8rem;
    flex-shrink: 0;
}
.lp-hero__cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.lp-hero__guarantee {
    margin-top: 18px; font-size: .82rem;
    color: rgba(255,255,255,.45);
    display: flex; align-items: center; gap: 8px;
}
.lp-hero__guarantee svg { stroke: var(--accent-light); flex-shrink: 0; }
.lp-hero__image {
    position: relative; overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
    aspect-ratio: 4/5;
}
.lp-hero__image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(.7) brightness(.88);
}
.lp-hero__image-tag {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--accent); color: var(--white);
    padding: 12px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px;
}

/* ===== ALTERNATING IMAGE + CONTENT SECTIONS ===== */
.lp-alt-section { padding: 96px 0; position: relative; }
.lp-alt-section--dark { background: var(--dark); color: var(--white); }
.lp-alt-section--alt  { background: var(--bg-light); }
.lp-alt__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--max-w); margin: 0 auto;
    padding: 0 40px;
}
.lp-alt-section--reverse .lp-alt__image { order: 2; }
.lp-alt-section--reverse .lp-alt__content { order: 1; }

.lp-alt__image {
    position: relative; overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 24px 64px rgba(13,21,40,.15);
}
.lp-alt__image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(.7) brightness(.9);
    transition: filter .6s var(--ease-lux), transform .6s var(--ease-lux);
}
.lp-alt__image:hover img { filter: saturate(1) brightness(1); transform: scale(1.04); }

.lp-alt__image-badge {
    position: absolute; bottom: 22px; left: 22px;
    background: var(--accent);
    color: var(--white);
    padding: 12px 18px;
    display: flex; flex-direction: column; gap: 2px;
    min-width: 120px;
}
.lp-alt__image-badge strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem; font-weight: 900;
    letter-spacing: -.03em; line-height: 1;
}
.lp-alt__image-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: .6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: rgba(255,255,255,.75);
}

.lp-alt__content .section-label { margin-bottom: 14px; }
.lp-alt-section--dark .lp-alt__content .section-label { color: var(--accent-light); }
.lp-alt-section--dark .lp-alt__content .section-label::before,
.lp-alt-section--dark .lp-alt__content .section-label::after { background: var(--accent-light); opacity: .6; }

.lp-alt__content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 18px;
    color: var(--text);
}
.lp-alt-section--dark .lp-alt__content h2 { color: var(--white); }
.lp-alt-section--dark .lp-alt__content h2 em { color: var(--accent-light); font-style: normal; }

.lp-alt__content p {
    color: var(--text-light);
    line-height: 1.85;
    font-size: .98rem;
    margin-bottom: 14px;
}
.lp-alt-section--dark .lp-alt__content p { color: rgba(255,255,255,.65); }

.lp-alt__features {
    list-style: none; padding: 0; margin: 24px 0;
    display: flex; flex-direction: column; gap: 10px;
}
.lp-alt__features li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: .92rem; color: var(--text);
    line-height: 1.5;
}
.lp-alt-section--dark .lp-alt__features li { color: rgba(255,255,255,.85); }
.lp-alt__features li::before {
    content: ''; flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/60% no-repeat;
    border-radius: 50%;
    margin-top: 1px;
}
.lp-alt-section--dark .lp-alt__features li::before { background-color: var(--accent-light); }

.lp-alt__cta-row {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-top: 28px;
}

/* Bigger reviews block (prominent on landing) */
.lp-reviews-head {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; margin-bottom: 44px;
    flex-wrap: wrap;
}
.lp-reviews-head__logo {
    width: 56px; height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(13,21,40,.08);
}
.lp-reviews-head__rating {
    display: flex; flex-direction: column; gap: 2px;
}
.lp-reviews-head__rating strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem; font-weight: 900;
    color: var(--text); letter-spacing: -.03em; line-height: 1;
}
.lp-reviews-head__stars { color: #F5C518; font-size: 1rem; letter-spacing: 3px; }
.lp-reviews-head__count {
    font-size: .88rem; color: var(--text-muted); margin-top: 4px;
}

@media (max-width: 1100px) {
    .lp-alt__grid { grid-template-columns: 1fr; gap: 40px; padding: 0 28px; }
    .lp-alt-section--reverse .lp-alt__image { order: 0; }
    .lp-alt-section--reverse .lp-alt__content { order: 1; }
    .lp-alt__image { aspect-ratio: 16/10; max-height: 420px; }
}
@media (max-width: 768px) {
    .lp-alt-section { padding: 64px 0; }
    .lp-alt__grid { gap: 32px; padding: 0 18px; }
    .lp-alt__image { aspect-ratio: 4/3; }
    .lp-alt__cta-row { flex-direction: column; }
    .lp-alt__cta-row .btn { width: 100%; justify-content: center; }
    .lp-reviews-head { gap: 14px; }
    .lp-reviews-head__rating strong { font-size: 1.6rem; }
}

/* ===== YOUTUBE VIDEO SECTION ===== */
.lp-video-section {
    padding: 96px 0;
    background: var(--bg);
}
.lp-video-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.lp-video-wrap {
    max-width: 960px; margin: 0 auto;
    background: var(--dark);
    box-shadow: 0 24px 64px rgba(13,21,40,.2);
}
.lp-video-iframe {
    position: relative; padding-bottom: 56.25%;
    height: 0; overflow: hidden;
}
.lp-video-iframe iframe,
.lp-video-iframe .lp-video-placeholder {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
}
.lp-video-placeholder {
    display: flex; align-items: center; justify-content: center;
    background: var(--dark) url('../img/clinica-hero.png') center/cover;
    opacity: .6;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem; font-weight: 600;
    text-align: center;
}
.lp-video-placeholder::before {
    content: '';
    width: 80px; height: 80px;
    background: var(--accent-light);
    border-radius: 50%;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 10px rgba(249,200,0,.3);
    animation: heroPulse 2.5s infinite;
}
.lp-video-placeholder::after {
    content: '';
    width: 0; height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid var(--dark);
    position: absolute; top: 50%; left: 50%;
    transform: translate(-35%, -50%);
    z-index: 1;
}

/* ===== TRUST BAR ===== */
.lp-trust { background: var(--dark); padding: 28px 0; border-top: 1px solid rgba(255,255,255,.06); }
.lp-trust__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; max-width: var(--max-w);
    margin: 0 auto; padding: 0 40px;
}
.lp-trust__item {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 6px;
}
.lp-trust__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem; font-weight: 900;
    color: var(--accent-light);
    letter-spacing: -.03em; line-height: 1;
}
.lp-trust__label {
    font-family: 'Montserrat', sans-serif;
    font-size: .65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: rgba(255,255,255,.5);
}

/* ===== 2-col generic ===== */
.lp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lp-grid-2 img { width: 100%; filter: saturate(.7) brightness(.95); transition: filter .6s, transform .6s; }
.lp-img { position: relative; overflow: hidden; }
.lp-img:hover img { filter: saturate(1) brightness(1); transform: scale(1.03); }

/* ===== PAIN POINTS ===== */
.lp-pain__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lp-pain-card {
    background: var(--white); border: 1px solid rgba(13,21,40,.06);
    padding: 32px 24px; text-align: center;
    transition: transform .4s, box-shadow .4s;
}
.lp-pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.lp-pain-card__icon {
    width: 56px; height: 56px;
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.lp-pain-card__icon svg { width: 26px; height: 26px; stroke: var(--dark); fill: none; stroke-width: 2; }
.lp-pain-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem; font-weight: 700;
    color: var(--text); margin-bottom: 10px;
}
.lp-pain-card__desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== FEATURE CARDS (3-col) ===== */
.lp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-feat-card {
    background: var(--white); padding: 36px 28px;
    border: 1px solid rgba(13,21,40,.05);
    position: relative;
    transition: transform .5s, box-shadow .5s;
}
.lp-feat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.lp-feat-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .5s;
}
.lp-feat-card:hover::after { transform: scaleX(1); }
.lp-feat-card__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem; font-weight: 900;
    color: rgba(37,55,95,.15); line-height: 1;
    margin-bottom: 16px;
}
.lp-feat-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--text); margin-bottom: 10px;
}
.lp-feat-card__desc { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== TIMELINE ===== */
.lp-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.lp-timeline::before {
    content: ''; position: absolute;
    top: 28px; left: 12.5%; right: 12.5%;
    height: 2px; background: rgba(37,55,95,.15);
    z-index: 0;
}
.lp-time-step { position: relative; z-index: 1; text-align: center; }
.lp-time-step__num {
    width: 56px; height: 56px;
    background: var(--accent); color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem; font-weight: 800;
    margin: 0 auto 18px;
    border: 4px solid var(--bg);
}
.lp-time-step__title {
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem; font-weight: 700;
    color: var(--text); margin-bottom: 6px;
}
.lp-time-step__time {
    font-family: 'Montserrat', sans-serif;
    font-size: .65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--accent); margin-bottom: 8px;
}
.lp-time-step__desc { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CHECKLIST ===== */
.lp-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.lp-list-item {
    display: flex; gap: 14px;
    padding: 16px 20px; background: var(--bg-light);
    font-size: .92rem; color: var(--text);
    transition: transform .3s, background .3s;
}
.lp-list-item:hover { transform: translateX(6px); background: var(--bg-card); }
.lp-list-item__icon {
    width: 24px; height: 24px; flex-shrink: 0;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
}
.lp-list-item__icon svg { width: 12px; height: 12px; stroke: var(--white); fill: none; stroke-width: 3; }

/* ===== COMPARISON TABLE ===== */
.lp-compare { background: var(--white); border: 1px solid rgba(13,21,40,.08); overflow: hidden; }
.lp-compare table { width: 100%; border-collapse: collapse; }
.lp-compare th, .lp-compare td {
    padding: 18px 24px; text-align: left;
    border-bottom: 1px solid rgba(13,21,40,.06);
}
.lp-compare th {
    background: var(--dark); color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: .82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
}
.lp-compare th.lp-compare__hl { background: var(--accent); color: var(--white); }
.lp-compare td { font-size: .9rem; color: var(--text); }
.lp-compare tr:last-child td { border-bottom: none; }
.lp-compare .lp-compare__yes { color: #2da678; font-weight: 700; }
.lp-compare .lp-compare__no  { color: #c44; font-weight: 700; }
.lp-compare__col-hl { background: rgba(37,55,95,.04); }

/* ===== TESTIMONIALS ===== */
.lp-testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lp-testi-card {
    background: var(--white); border: 1px solid rgba(13,21,40,.06);
    padding: 28px 26px; position: relative;
}
.lp-testi-card::before {
    content: '"'; position: absolute;
    top: -10px; right: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem; font-weight: 900;
    color: rgba(37,55,95,.08); line-height: 1;
}
.lp-testi-card__stars { color: #F5C518; letter-spacing: 2px; margin-bottom: 14px; font-size: .9rem; }
.lp-testi-card__text {
    color: var(--text-light); font-size: .9rem;
    line-height: 1.75; margin-bottom: 18px;
    font-style: italic;
}
.lp-testi-card__author {
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem; font-weight: 700;
    color: var(--text);
}
.lp-testi-card__detail {
    font-size: .75rem; color: var(--text-muted); margin-top: 2px;
}

/* ===== FAQ ===== */
.lp-faq { max-width: 760px; margin: 0 auto; }
.lp-faq-item {
    border-bottom: 1px solid rgba(13,21,40,.08);
    padding: 22px 0;
}
.lp-faq-item summary {
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem; font-weight: 700;
    color: var(--text); cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
    content: '+';
    font-size: 1.5rem; font-weight: 300;
    color: var(--accent);
    transition: transform .3s;
}
.lp-faq-item[open] summary::after { content: '−'; }
.lp-faq-item p {
    margin-top: 14px; font-size: .9rem;
    color: var(--text-muted); line-height: 1.85;
    padding-right: 40px;
}

/* ===== FINAL CTA ===== */
.lp-cta-final {
    background: var(--dark);
    padding: 96px 0;
    position: relative; overflow: hidden;
}
.lp-cta-final::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(249,200,0,.08), transparent 60%);
}
.lp-cta-final__inner {
    max-width: 760px; margin: 0 auto;
    padding: 0 40px; text-align: center;
    position: relative; z-index: 1;
}
.lp-cta-final h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
}
.lp-cta-final p {
    color: rgba(255,255,255,.6);
    font-size: 1.05rem; line-height: 1.85;
    margin-bottom: 36px;
}
.lp-cta-final__row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== MINIMAL FOOTER ===== */
.lp-footer {
    background: var(--dark);
    padding: 40px 0 32px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.lp-footer__inner {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 20px;
}
.lp-footer__brand { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.lp-footer__brand img { height: 36px; filter: brightness(10); }
.lp-footer__brand span { font-size: .82rem; color: rgba(255,255,255,.7); }
.lp-footer__links { display: flex; gap: 24px; font-size: .82rem; }
.lp-footer__links a {
    color: rgba(255,255,255,.72);
    transition: color .25s;
}
.lp-footer__links a:hover { color: var(--accent-light); }
.lp-footer__info {
    font-size: .78rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    text-align: right;
    max-width: 400px;
}
@media (max-width: 768px) {
    .lp-footer__info { text-align: center; max-width: 100%; font-size: .74rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .lp-hero__container, .lp-grid-2 { grid-template-columns: 1fr; gap: 48px; padding: 64px 28px; }
    .lp-hero__image { display: none; }
    .lp-pain__grid, .lp-grid-3, .lp-timeline, .lp-testi__grid { grid-template-columns: 1fr 1fr; }
    .lp-timeline::before { display: none; }
    .lp-trust__grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
}

@media (max-width: 768px) {
    /* ===== HERO ===== */
    .lp-hero                 { min-height: auto; padding-top: 60px; }
    .lp-hero__container      { padding: 48px 18px 56px; gap: 24px; }
    .lp-hero__urgent         { font-size: .65rem; letter-spacing: 1.5px; padding: 6px 14px; margin-bottom: 18px; }
    .lp-hero__title          { font-size: clamp(1.9rem, 8vw, 2.4rem); margin-bottom: 18px; }
    .lp-hero__desc           { font-size: .95rem; line-height: 1.75; margin-bottom: 24px; }
    .lp-hero__bullets        { margin-bottom: 24px; gap: 10px; }
    .lp-hero__bullets li     { font-size: .88rem; }
    .lp-hero__cta-row        { flex-direction: column; align-items: stretch; gap: 12px; }
    .lp-hero__cta-row .btn   { width: 100%; justify-content: center; }
    .lp-hero__guarantee      { font-size: .78rem; justify-content: center; text-align: center; }

    /* ===== TRUST BAR ===== */
    .lp-trust                { padding: 22px 0; }
    .lp-trust__grid          { padding: 0 18px; gap: 16px; }
    .lp-trust__num           { font-size: 1.4rem; }
    .lp-trust__label         { font-size: .58rem; letter-spacing: 1px; }

    /* ===== GRIDS ===== */
    .lp-pain__grid, .lp-grid-3, .lp-timeline, .lp-testi__grid { grid-template-columns: 1fr; gap: 14px; }

    /* ===== PAIN / FEAT / STEP CARDS ===== */
    .lp-pain-card, .lp-feat-card { padding: 24px 20px; }
    .lp-pain-card__icon      { width: 48px; height: 48px; margin-bottom: 14px; }
    .lp-pain-card__title, .lp-feat-card__title { font-size: .95rem; }
    .lp-feat-card__num       { font-size: 1.8rem; margin-bottom: 12px; }

    /* ===== TIMELINE ===== */
    .lp-time-step__num       { width: 48px; height: 48px; font-size: 1.05rem; }

    /* ===== COMPARISON TABLE ===== */
    .lp-compare              { font-size: .78rem; }
    .lp-compare th           { padding: 12px 10px; font-size: .7rem; }
    .lp-compare td           { padding: 12px 10px; }

    /* ===== FAQ ===== */
    .lp-faq-item summary     { font-size: .9rem; }
    .lp-faq-item p           { font-size: .85rem; padding-right: 30px; }

    /* ===== CHECKLIST ===== */
    .lp-list-item            { padding: 14px 16px; font-size: .86rem; }

    /* ===== FINAL CTA ===== */
    .lp-cta-final            { padding: 64px 0; }
    .lp-cta-final__inner     { padding: 0 18px; }
    .lp-cta-final h2         { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .lp-cta-final p          { font-size: .95rem; }
    .lp-cta-final__row       { flex-direction: column; align-items: stretch; }
    .lp-cta-final__row .btn  { width: 100%; justify-content: center; }

    /* ===== VIDEO ===== */
    .lp-video-section        { padding: 56px 0; }
    .lp-video-head           { padding: 0 18px; margin-bottom: 28px; }
    .lp-video-wrap           { margin: 0 18px; }

    /* ===== FOOTER ===== */
    .lp-footer               { padding: 32px 0 24px; }
    .lp-footer__inner        { flex-direction: column; text-align: center; gap: 14px; padding: 0 18px; }
    .lp-footer__brand        { flex-direction: column; gap: 10px; }
    .lp-footer__links        { justify-content: center; flex-wrap: wrap; gap: 14px; }

    /* ===== TESTI CARD ===== */
    .lp-testi-card           { padding: 24px 20px; }
    .lp-testi-card__text     { font-size: .86rem; }
}

@media (max-width: 480px) {
    .lp-hero__title          { font-size: clamp(1.7rem, 9vw, 2rem); }
    .lp-hero__desc           { font-size: .9rem; }
    .lp-trust__grid          { grid-template-columns: 1fr 1fr; }
    .lp-compare              { font-size: .72rem; }
    .lp-compare th, .lp-compare td { padding: 10px 6px; }
    .lp-compare th:first-child, .lp-compare td:first-child { padding-left: 12px; }
}
