@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

:root {
    --primary: #0071e3;
    --primary-strong: #005bb5;
    --ink: #0b0f17;
    --muted: #667085;
    --line: rgba(15, 23, 42, 0.1);
    --soft: #f5f7fb;
    --soft-blue: #eef5ff;
    --surface: #ffffff;
    --dark: #0b0f17;
    --radius: 24px;
    --radius-lg: 36px;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 45%, #ffffff 100%);
    color: var(--ink);
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    overflow-wrap: break-word;
}

.header {
    position: sticky;
    top: 14px;
    z-index: 1000;
    width: min(1180px, calc(100% - 32px));
    height: 72px;
    margin: 14px auto 0;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(22px) saturate(1.35);
    -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

.logo-link {
    display: flex;
    align-items: center;
    min-width: 92px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: auto;
    height: 56px;
    object-fit: contain;
}

.logo {
    color: var(--ink);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0;
}

.logo span {
    color: var(--primary);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(11, 15, 23, 0.76);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-links a.active-link {
    color: var(--primary) !important;
    background: rgba(0, 113, 227, 0.08);
}

.nav-phone {
    color: var(--primary) !important;
}

.nav-links a.btn-main-nav,
.nav-links a.btn-main-nav:visited,
.nav-links a.btn-main-nav[aria-current="page"] {
    color: #fff !important;
    background: var(--dark);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
}

.nav-links a.btn-main-nav:hover,
.nav-links a.btn-main-nav:focus {
    color: #fff !important;
    background: var(--primary);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 28px);
    margin-top: -86px;
    padding: 170px 24px 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(3, 7, 18, 0.84) 0%, rgba(3, 7, 18, 0.56) 42%, rgba(3, 7, 18, 0.16) 100%),
        url("hero-premium-lis.webp") center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 78%, rgba(0, 113, 227, 0.42), transparent 28rem);
}

.hero-kicker,
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 800;
    backdrop-filter: blur(16px);
}

.hero h1,
.hero-pro h1,
.page-title h1 {
    max-width: 980px;
    margin: 0 auto 20px;
    font-size: clamp(2.45rem, 6vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: 0;
    font-weight: 800;
}

.hero h1 {
    color: #fff;
    text-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.hero p,
.hero-pro p,
.page-title p {
    max-width: 720px;
    margin: 0 auto 30px;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero p {
    color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta,
.btn-secondary,
.btn-hero-cta,
.btn-comparison-cta,
.btn-submit,
.btn-submit-pro,
.btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-cta,
.btn-hero-cta,
.btn-comparison-cta,
.btn-submit,
.btn-submit-pro,
.btn-home {
    color: #fff;
    background: linear-gradient(180deg, #1688ff 0%, var(--primary) 100%);
    box-shadow: 0 16px 34px rgba(0, 113, 227, 0.25);
}

.btn-secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    border-color: var(--line);
    box-shadow: var(--shadow-soft);
}

.hero .btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(16px);
}

.btn-cta:hover,
.btn-secondary:hover,
.btn-hero-cta:hover,
.btn-comparison-cta:hover,
.btn-submit:hover,
.btn-submit-pro:hover,
.btn-home:hover {
    transform: translateY(-2px);
}

.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.hero-proof-row span {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
    backdrop-filter: blur(14px);
}

.trust-strip {
    position: relative;
    z-index: 5;
    width: min(1040px, calc(100% - 32px));
    margin: -48px auto 28px;
    padding: 14px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.trust-item,
.zone-badge,
.city-tag {
    border-radius: 999px;
}

.trust-item,
.zone-badge {
    padding: 10px 18px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 800;
}

.zone-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: min(860px, 100%);
    margin-left: auto;
    margin-right: auto;
    margin-top: 26px;
}

.zone-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    text-align: center;
    white-space: normal;
}

.services-preview,
.features,
.intervention-zone,
.faq,
.comparison-section,
.section-pro-content,
.method-section,
.form-pro-section,
.services-detail,
.contact-container,
.legal-content,
.merci-wrapper {
    padding: 72px 24px;
}

.services-preview h2,
.section-separator,
.intervention-container h2,
.faq h2,
.section-intro h2,
.method-section h2,
.form-pro-section h2,
.legal-content h1 {
    max-width: 820px;
    margin: 0 auto 32px;
    color: var(--ink);
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.06;
    letter-spacing: 0;
    font-weight: 800;
}

.section-intro,
.section-intro p,
.service-text p,
.card-premium p,
.method-step p,
.faq-item p,
.legal-content p,
.legal-content li {
    color: var(--muted);
}

.services-grid,
.features,
.comparison-grid,
.grid-premium,
.method-grid,
.pricing-list,
.footer-grid {
    display: grid;
    gap: 22px;
}

.services-grid,
.grid-premium {
    width: min(1180px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.card,
.pricing-card,
.reviews-card,
.intervention-container,
.faq-item,
.card-premium,
.contact-info-card,
.contact-form-wrapper,
.merci-card,
.form-pro-section,
.legal-content,
.service-block {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.88);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.service-card {
    overflow: hidden;
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.card:hover,
.card-premium:hover,
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.service-card img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card .icon,
.service-card h3,
.service-card p,
.service-card .link-more {
    margin-left: 28px;
    margin-right: 28px;
}

.service-card .icon,
.card-icon,
.icon-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border: 1px solid rgba(0, 113, 227, 0.12);
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #eef4ff);
    font-size: 1.45rem;
}

.service-card .icon {
    position: relative;
    margin-top: -28px;
}

.card-premium .card-icon {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 900;
}

.service-card h3,
.card h3,
.card-premium h3,
.method-step h4,
.faq-item strong {
    color: var(--ink);
    letter-spacing: 0;
}

.service-card p,
.card p,
.card-premium p {
    color: var(--muted);
}

.link-more,
.phone-link,
.step-number {
    color: var(--primary);
}

.link-more {
    display: inline-flex;
    margin-top: 8px;
    margin-bottom: 28px;
    font-weight: 800;
    text-decoration: none;
}

.features {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 72px;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.card-premium,
.method-step,
.faq-item,
.contact-info-card,
.contact-form-wrapper {
    padding: 28px;
}

.features .card {
    background: var(--dark);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.features .card h3 {
    color: #fff;
}

.features .card p {
    color: rgba(255, 255, 255, 0.68);
}

.page-title,
.hero-pro {
    min-height: 52vh;
    margin-top: -86px;
    padding: 170px 24px 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
        url("hero-premium-lis.webp") center/cover no-repeat;
}

.services-hero {
    position: relative;
    isolation: isolate;
    min-height: 68vh;
    background:
        linear-gradient(135deg, rgba(8, 13, 24, 0.86), rgba(0, 113, 227, 0.28)),
        url("hero-premium-lis.webp") center/cover no-repeat;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 78%, rgba(0, 113, 227, 0.48), transparent 30rem);
}

.services-hero h1 {
    color: #fff;
    text-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.services-hero p {
    color: rgba(255, 255, 255, 0.78);
}

.services-hero .badge-tag {
    color: rgba(255, 255, 255, 0.9);
}

.services-hero .btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(16px);
}

.hero-pro {
    position: relative;
    isolation: isolate;
    min-height: 68vh;
    background:
        linear-gradient(135deg, rgba(8, 13, 24, 0.9), rgba(0, 113, 227, 0.24)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
}

.hero-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 78%, rgba(0, 113, 227, 0.42), transparent 30rem);
}

.hero-pro h1 {
    color: #fff;
    text-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.hero-pro p {
    color: rgba(255, 255, 255, 0.78);
}

.hero-pro .badge-tag {
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero {
    position: relative;
    isolation: isolate;
    min-height: 62vh;
    background:
        linear-gradient(135deg, rgba(8, 13, 24, 0.88), rgba(0, 113, 227, 0.24)),
        url("hero-premium-lis.webp") center/cover no-repeat;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 80%, rgba(0, 113, 227, 0.42), transparent 28rem);
}

.contact-hero h1 {
    color: #fff;
    text-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.contact-hero p,
.contact-hero .badge-tag {
    color: rgba(255, 255, 255, 0.82);
}

.services-detail,
.section-pro-content,
.contact-container {
    background: var(--soft);
}

.services-detail,
.comparison-container,
.section-pro-content,
.method-section,
.contact-container,
.footer-grid,
.footer-bottom {
    width: min(1120px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.intervention-container {
    width: min(920px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding: 46px;
    text-align: center;
}

.intervention-container p {
    max-width: 720px;
    margin: 0 auto;
}

.intervention-subtitle {
    display: block;
    margin: -18px auto 24px;
    color: var(--primary);
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 900;
    text-align: center;
}

.service-block {
    padding: 28px;
    display: grid;
    align-items: center;
    gap: 46px;
    margin-bottom: 28px;
}

.service-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-text li {
    margin: 12px 0;
    color: var(--ink);
    font-weight: 700;
}

.service-text li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--primary);
    font-weight: 900;
}

.service-img img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.comparison-section {
    background:
        linear-gradient(135deg, rgba(8, 13, 24, 0.98), rgba(17, 28, 49, 0.96)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
}

.comparison-section .section-separator {
    color: #fff;
}

.comparison-lead {
    max-width: 680px;
    margin: -18px auto 32px;
    color: rgba(255, 255, 255, 0.68);
    text-align: center;
    font-size: 1.05rem;
}

.comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
}

.comp-card {
    min-height: 360px;
    padding: 36px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.before-card {
    background: rgba(255, 255, 255, 0.08);
}

.after-card {
    background: linear-gradient(180deg, rgba(0, 113, 227, 0.22), rgba(255, 255, 255, 0.08));
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.comp-card h3 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.08;
}

.status-badge {
    display: inline-flex;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}

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

.comp-list li {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
}

.icon-span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
}

.comparison-action {
    margin-top: 32px;
    text-align: center;
}

.method-section,
.form-pro-section {
    background: #fff;
}

.method-section {
    max-width: 1120px;
    margin: 20px auto 72px;
    border-radius: var(--radius-lg);
}

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

.method-step {
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.step-number {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 2.3rem;
    line-height: 1;
    font-weight: 900;
    opacity: 0.55;
}

.form-pro-section {
    max-width: 820px;
    margin: 72px auto;
}

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

.contact-container {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.35fr);
    gap: 28px;
    align-items: start;
}

.contact-info-card {
    position: sticky;
    top: 110px;
    background:
        linear-gradient(135deg, rgba(8, 13, 24, 0.96), rgba(0, 113, 227, 0.18)),
        url("hero-premium-lis.webp") center/cover;
    color: #fff;
    box-shadow: var(--shadow);
}

.info-item {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.info-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.info-item h3 {
    margin-top: 0;
    color: #fff;
}

.info-item p {
    color: rgba(255, 255, 255, 0.68);
}

.info-item a {
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.contact-label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
    font-weight: 900;
}

.form-floating,
.form-group {
    position: relative;
    margin-bottom: 18px;
}

label,
.service-selection label {
    display: block;
    color: var(--ink);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f8fafc;
    color: var(--ink);
    font: inherit;
}

.form-floating input,
.form-floating textarea {
    padding: 26px 18px 10px;
}

.form-floating label {
    position: absolute;
    top: 17px;
    left: 19px;
    color: rgba(100, 112, 125, 0.84);
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
    pointer-events: none;
}

.form-floating input:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label,
.form-floating textarea:focus ~ label,
.form-floating textarea:not(:placeholder-shown) ~ label {
    top: 8px;
    color: var(--primary);
    font-size: 0.72rem;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    background: #fff;
    border-color: rgba(0, 113, 227, 0.55);
    box-shadow: 0 0 0 5px rgba(0, 113, 227, 0.12);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group label {
    padding: 11px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f8fafc;
    color: var(--muted);
    cursor: pointer;
}

.radio-group input[type="radio"]:checked + label {
    border-color: rgba(0, 113, 227, 0.45);
    background: var(--soft-blue);
    color: var(--primary);
}

.faq {
    background: var(--soft);
}

.faq-grid {
    width: min(820px, 100%);
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
}

.legal-content {
    max-width: 960px;
    margin: 72px auto;
    padding: 56px;
}

.legal-content h1 {
    margin-bottom: 18px;
    text-align: left;
}

.legal-content h2 {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.35rem;
    letter-spacing: 0;
}

.legal-content ul {
    padding-left: 0;
    list-style: none;
}

.legal-content li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.legal-content a {
    color: var(--primary);
    font-weight: 800;
}

.merci-wrapper {
    min-height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.merci-card {
    max-width: 620px;
    padding: 46px;
    text-align: center;
}

.icon-success {
    margin: 0 auto 18px;
    color: #fff;
    background: linear-gradient(180deg, #1688ff, var(--primary));
    border: 0;
    font-weight: 800;
}

footer {
    margin-top: 40px;
    padding: 56px 24px 28px;
    background: var(--dark);
    color: #fff;
}

.footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 36px;
}

.footer-col h4 {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.86rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.72);
    overflow-wrap: anywhere;
}

.city-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.city-tag {
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.46);
    text-align: center;
    font-size: 0.78rem;
    overflow-wrap: anywhere;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.btn-phone-floating {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 60px;
    height: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(0, 113, 227, 0.34);
}

@media (min-width: 768px) {
    .service-block {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-block:nth-child(odd) .service-img {
        order: -1;
    }
}

@media (max-width: 1100px) {
    .services-grid,
    .grid-premium,
    .method-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .header {
        top: 10px;
        width: calc(100% - 24px);
        height: 64px;
        margin-top: 10px;
        padding: 0 14px;
        gap: 12px;
    }

    .logo-img {
        height: 46px;
    }

    .burger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
        flex-shrink: 0;
        position: relative;
        z-index: 1002;
    }

    .burger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(84vw, 330px);
        max-width: calc(100vw - 24px);
        height: 100dvh;
        padding: 110px 22px;
        flex-direction: column;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.96);
        border-left: 1px solid var(--line);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(18px);
        transition: right 0.35s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: min(260px, 100%);
        text-align: center;
    }

    .hero {
        min-height: 92vh;
        margin-top: -74px;
        padding: 132px 18px 58px;
    }

    .page-title,
    .hero-pro {
        min-height: 46vh;
        margin-top: -74px;
        padding: 132px 18px 58px;
    }

    .hero h1,
    .hero-pro h1,
    .page-title h1 {
        font-size: clamp(2.25rem, 12vw, 3.25rem);
        letter-spacing: 0;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-pro h1,
    .contact-hero h1 {
        font-size: clamp(1.78rem, 8.2vw, 2.35rem);
        line-height: 1.02;
    }

    .page-title p,
    .hero-pro p,
    .services-hero p,
    .contact-hero p {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-proof-row {
        display: none;
    }

    .trust-strip {
        width: calc(100% - 28px);
        margin-top: -18px;
        border-radius: 26px;
    }

    .services-preview,
    .features,
    .intervention-zone,
    .faq,
    .comparison-section,
    .section-pro-content,
    .method-section,
    .form-pro-section,
    .services-detail,
    .contact-container,
    .legal-content,
    .merci-wrapper {
        padding: 42px 16px;
    }

    .services-grid,
    .features,
    .comparison-grid,
    .grid-premium,
    .method-grid,
    .footer-grid,
    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 190px;
    }

    .service-card,
    .card,
    .faq-item,
    .card-premium,
    .contact-info-card,
    .contact-form-wrapper,
    .merci-card,
    .form-pro-section,
    .legal-content,
    .service-block,
    .intervention-container {
        border-radius: 24px;
    }

    .legal-content,
    .merci-card {
        padding: 28px;
    }

    .btn-cta,
    .btn-secondary,
    .btn-hero-cta,
    .btn-comparison-cta,
    .btn-submit,
    .btn-submit-pro,
    .btn-home {
        width: 100%;
        max-width: 340px;
    }

    .btn-phone-floating {
        display: flex;
    }

    .intervention-container {
        padding: 28px 18px;
    }

    .zone-badges {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
    }

    .zone-badge {
        padding: 9px 10px;
        font-size: 0.82rem;
        line-height: 1.2;
    }

    .zone-badge:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 380px) {
    .zone-badges {
        grid-template-columns: 1fr;
    }

    .zone-badge:last-child {
        grid-column: auto;
    }
}

/* Services and pro page composition */
.service-showcase,
.process-section,
.service-promise,
.final-cta,
.pro-intro,
.pro-services-panel {
    padding: 72px 24px;
}

.service-showcase,
.pro-intro {
    background: var(--soft);
}

.pro-services-panel {
    width: min(1120px, calc(100% - 32px));
    margin: 72px auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
    gap: 42px;
    align-items: start;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(8, 13, 24, 0.96), rgba(0, 113, 227, 0.22)),
        url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1600&q=85") center/cover;
    color: #fff;
    box-shadow: var(--shadow);
}

.pro-panel-heading h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
}

.pro-panel-heading p {
    color: rgba(255, 255, 255, 0.68);
}

.pro-service-lines {
    display: grid;
    gap: 0;
}

.pro-service-lines article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pro-service-lines article:first-child {
    padding-top: 0;
}

.pro-service-lines article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pro-service-lines span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
}

.pro-service-lines h3 {
    margin-bottom: 8px;
    color: #fff;
}

.pro-service-lines p {
    color: rgba(255, 255, 255, 0.68);
}

.service-promise {
    width: min(1120px, calc(100% - 32px));
    margin: 72px auto 0;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    align-items: center;
    gap: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: var(--dark);
    color: #fff;
    box-shadow: var(--shadow);
}

.promise-copy h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.promise-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.promise-list {
    display: grid;
    gap: 12px;
}

.promise-list div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
}

.promise-list strong,
.promise-list span {
    display: block;
}

.promise-list strong {
    margin-bottom: 6px;
    color: #fff;
}

.promise-list span {
    color: rgba(255, 255, 255, 0.66);
}

.service-feature {
    width: min(1120px, 100%);
    margin: 0 auto 28px;
    padding: 26px;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    align-items: center;
    gap: 38px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.service-feature:nth-child(even) img {
    order: 2;
}

.service-feature img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.service-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--soft-blue);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
}

.service-feature h2,
.pro-intro h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.service-feature p,
.pro-intro p {
    color: var(--muted);
    font-size: 1.04rem;
}

.service-feature ul {
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.service-feature li {
    margin: 11px 0;
    color: var(--ink);
    font-weight: 800;
}

.service-feature li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--primary);
}

.process-section {
    background: #fff;
    text-align: center;
}

.process-grid {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    text-align: left;
}

.process-grid > div {
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.process-grid span {
    color: var(--primary);
    font-size: 2.3rem;
    line-height: 1;
    font-weight: 900;
    opacity: 0.55;
}

.process-grid h3 {
    margin-bottom: 8px;
}

.process-grid p {
    color: var(--muted);
}

.final-cta {
    text-align: center;
    background: var(--dark);
    color: #fff;
}

.final-cta h2 {
    margin: 0 auto 14px;
    max-width: 780px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.final-cta p {
    max-width: 640px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, 0.68);
}

.pro-intro {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 28px;
    text-align: center;
}

.pro-intro > div {
    max-width: 860px;
}

@media (max-width: 768px) {
    .service-showcase,
    .process-section,
    .service-promise,
    .final-cta,
    .pro-intro,
    .pro-services-panel {
        padding: 42px 16px;
    }

    .service-feature,
    .service-promise,
    .pro-intro,
    .pro-services-panel,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-promise {
        width: calc(100% - 32px);
        margin-top: 42px;
    }

    .pro-services-panel {
        width: calc(100% - 32px);
        margin-top: 42px;
        margin-bottom: 42px;
    }

    .pro-service-lines article {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-feature:nth-child(even) img {
        order: initial;
    }

}
