@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bg: #f5f5f5;
    --ink: #1a1a1a;
    --ink-soft: #555;
    --accent: #005AD8;
    --accent-hover: color-mix(in srgb, var(--accent) 82%, black);
    --accent-light: color-mix(in srgb, var(--accent) 65%, white);
    --accent-glow: color-mix(in srgb, var(--accent) 22%, transparent);
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.1);
    --radius: 18px;
}

* { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--ink);
    margin: 0;
    padding: 0;
}

.font-instrument {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
}

/* HEADER */

header {
    width: 100%;
    position: relative;
}

header nav {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 8px 14px;
    background-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    z-index: 1000;
    transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, top 0.25s ease;
}

header nav.scrolled {
    top: 8px;
    padding: 5px 8px 5px 12px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-strong);
}

header nav .logo-link {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    padding: 4px 8px;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

header nav .logo-link:hover {
    background-color: color-mix(in srgb, var(--accent) 8%, transparent);
}

header nav .logo-text {
    display: inline-block;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--accent);
    transition: color 0.4s ease, transform 0.25s ease;
}

header nav .logo-link:hover .logo-text {
    transform: scale(1.03);
}

header nav .logo-link:active .logo-text {
    transform: scale(0.97);
}

header nav .nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
}

header nav .nav-list li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 10px 14px;
    border-radius: 10px;
    white-space: nowrap;
    transition: color 0.25s ease, background-color 0.25s ease;
}

header nav .nav-list li a:not(.contact-btn-menu):hover {
    color: var(--accent);
}

header nav .nav-list li a:not(.contact-btn-menu)::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 1.5px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

header nav .nav-list li a:not(.contact-btn-menu):hover::after,
header nav .nav-list li a.active::after {
    transform: scaleX(1);
}

header nav .nav-list li a.active {
    color: var(--accent);
    font-weight: 600;
}

.contact-btn-menu {
    background-color: var(--accent);
    color: #fff !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    margin-left: 6px;
    transition: transform 0.2s ease, background-color 0.25s ease, box-shadow 0.25s ease !important;
}

.contact-btn-menu:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 30%, transparent);
}

/* HAMBURGER */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s ease, top 0.3s ease, background-color 0.2s ease;
}

.nav-toggle span {
    position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

.nav-toggle.open span { background-color: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

/* RESPONSIVE */

@media (max-width: 820px) {

    header nav {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        flex-wrap: wrap;
        padding: 8px 10px 8px 14px;
        border-radius: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    header nav .nav-list {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 2px;
        padding-top: 10px;
        margin-top: 6px;
        border-top: 1px solid var(--border);
    }

    header nav.open .nav-list {
        display: flex;
    }

    header nav .nav-list li a {
        display: block;
        text-align: center;
        padding: 12px 14px;
        border-radius: 10px;
    }

    header nav .nav-list li a:not(.contact-btn-menu):hover {
        background-color: rgba(0, 0, 0, 0.04);
    }

    header nav .nav-list li a:not(.contact-btn-menu)::after {
        display: none;
    }

    .contact-btn-menu {
        margin: 6px 0 0 0 !important;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    header nav,
    header nav .logo,
    header nav .nav-list li a,
    header nav .nav-list li a::after,
    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after,
    .contact-btn-menu {
        transition: none !important;
    }
}

header .header-image {
    display: block;
    width: 96%;
    height: 90vh;
    margin: 2%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow);
    filter: brightness(0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

header .header-title {
    position: absolute;
    top: 2%;
    left: 2%;
    right: 2%;
    bottom: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 6%;
    pointer-events: none;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

header .header-title h1 {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(2.4rem, 6.5vw, 5rem);
    font-weight: 500;
    font-style: normal;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

header .header-title h1 .font-instrument {
    font-style: italic;
    font-weight: 400;
}

header .header-subtitle {
    margin: 22px 0 0;
    max-width: 38ch;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

.header-cta {
    margin-top: 36px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    pointer-events: auto;
}

.btn-on-dark {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-on-dark i {
    margin-left: 8px;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-on-dark-primary {
    background-color: #fff;
    color: var(--ink);
}

.btn-on-dark-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.45);
}

.btn-on-dark-primary:hover i {
    transform: translateX(4px);
}

.btn-on-dark-outline {
    background-color: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-on-dark-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .header-cta {
        margin-top: 28px;
        gap: 10px;
    }

    .btn-on-dark {
        padding: 12px 22px;
        font-size: 0.95rem;
    }
}

/* SECTIONS */

.intro {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
}

.section-title {
    text-align: center;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 auto 18px;
    max-width: 720px;
    color: var(--ink);
}

.section-title .font-instrument {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
    margin: 0 0.08em;
}

.section-description {
    text-align: center;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 56px;
}

/* CARDS · landscape coloured, side by side */

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

.card {
    position: relative;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 24px 26px;
    border-radius: 10px;
    color: var(--ink);
    background-color: #fff;
    transition: transform 0.35s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -16px color-mix(in srgb, var(--accent) 22%, transparent);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: color-mix(in srgb, var(--accent) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
    border-radius: 9px;
    color: var(--accent);
    font-size: 17px;
    padding: 0;
    margin: 0 0 auto 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.card:hover .card-icon {
    background: color-mix(in srgb, var(--accent) 15%, transparent);
    transform: translateX(3px);
}

.card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
}

.card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--ink-soft);
}

@media (max-width: 900px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
    .card {
        aspect-ratio: auto;
    }
}

@media (max-width: 600px) {
    .intro {
        padding: 60px 20px;
    }

    .section-description {
        margin-bottom: 32px;
    }
}

/* TARIFS */

.tarifs {
    background-color: var(--accent);
    padding: 90px 24px 110px;
}

.tarifs > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.tarifs .section-title {
    color: #fff;
}

.tarifs .section-title .font-instrument {
    color: #fff;
    opacity: 0.92;
}

.tarifs .section-description {
    color: rgba(255, 255, 255, 0.85);
}

.tarifs .card-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 16px;
    padding-top: 18px;
}

.tarifs .card {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    padding: 36px 32px 32px;
    background-color: #fff;
    color: var(--ink);
    border-radius: 12px;
}

.tarifs .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px -16px color-mix(in srgb, var(--accent) 22%, transparent);
}

.tarifs .card h3 {
    margin: 0 0 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.tarifs .card > p:nth-of-type(1) {
    margin: 0 0 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--ink-soft);
}

.tarifs .card > p:nth-of-type(1) strong {
    display: block;
    margin-bottom: 8px;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.tarifs .card > p:nth-of-type(2) {
    margin: 0 0 28px;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-voir-plus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.btn-voir-plus i {
    font-size: 0.85rem;
}

.btn-voir-plus:hover {
    gap: 14px;
    color: var(--accent-hover);
}

/* Featured "Pro" card */
.tarifs .card:nth-child(2) {
    transform: translateY(-18px);
    box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.25);
}

.tarifs .card:nth-child(2):hover {
    transform: translateY(-24px);
    box-shadow: 0 28px 60px -10px rgba(0, 0, 0, 0.32);
}

@media (max-width: 900px) {
    .tarifs .card-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .tarifs .card:nth-child(2),
    .tarifs .card:nth-child(2):hover {
        transform: none;
    }

    .tarifs .card:hover,
    .tarifs .card:nth-child(2):hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 600px) {
    .tarifs {
        padding: 30px 20px 80px;
    }
}

/* CTA BANNER */

.cta-banner {
    background-color: #fff;
    padding: 120px 24px;
    text-align: center;
}

.cta-banner > * {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .section-title {
    margin-bottom: 16px;
}

.cta-banner .section-description {
    margin-bottom: 40px;
    font-size: 1.15rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: var(--accent);
    color: #fff;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact::after {
    content: '→';
    font-family: 'Instrument Serif', serif;
    font-size: 1.3rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px color-mix(in srgb, var(--accent) 55%, transparent);
}

.btn-contact:hover::after {
    transform: translateX(6px);
}

@media (max-width: 600px) {
    .cta-banner {
        padding: 80px 20px;
    }

    .cta-banner .section-description {
        font-size: 1rem;
    }
}

/* PAGE HERO (text-only) */

.page-header {
    height: 0;
}

.page-hero {
    max-width: 760px;
    margin: 0 auto;
    padding: 180px 24px 60px;
    text-align: center;
}

.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.page-hero h1 .font-instrument {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
    margin: 0 0.06em;
}

.page-hero p {
    margin: 0 auto;
    max-width: 560px;
    color: var(--ink-soft);
    font-size: 1.1rem;
    line-height: 1.65;
}

@media (max-width: 600px) {
    .page-hero {
        padding: 140px 20px 40px;
    }
}

/* FORM STATUS BANNER */

.form-status {
    max-width: 1100px;
    margin: 0 auto 24px;
    padding: 16px 22px;
    border-radius: 12px;
    font-size: 0.97rem;
    line-height: 1.5;
}

.form-status-success {
    background-color: color-mix(in srgb, var(--accent) 8%, white);
    color: var(--accent);
    border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}

.form-status-error {
    background-color: #fee;
    color: #a00;
    border: 1px solid #faa;
}

/* CONTACT */

.contact-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background-color: #fff;
    padding: 36px;
    border-radius: 14px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    background-color: #f5f5f5;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px 14px;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.55;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}

.btn-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px color-mix(in srgb, var(--accent) 45%, transparent);
}

.btn-submit:hover i {
    transform: translateX(4px);
}

.contact-info h2 {
    margin: 0 0 28px;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.contact-info-block {
    margin-bottom: 28px;
}

.contact-info-block:last-child {
    margin-bottom: 0;
}

.contact-info-block h4 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
}

.contact-info-block p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}

.contact-info-block a {
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.contact-info-block a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 820px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 520px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 22px;
    }
}

/* TARIFS — homepage CTA below cards */

.tarifs-cta {
    margin-top: 40px;
    text-align: center;
}

.btn-on-blue {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 14px 30px;
    background-color: #fff;
    color: var(--accent);
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-on-blue i {
    margin-left: 8px;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-on-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.25);
}

.btn-on-blue:hover i {
    transform: translateX(4px);
}

/* TARIFS COMPARISON TABLE */

.tarifs-comparison {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    scroll-margin-top: 100px;
}

.tarifs-comparison .section-description {
    margin-bottom: 40px;
}

.tarifs-table-wrapper {
    overflow-x: auto;
    background-color: #fff;
    border-radius: 14px;
    padding: 8px 16px;
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 640px;
}

.tarifs-table thead th {
    padding: 22px 16px 18px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    background-color: transparent;
}

.tarifs-table thead th:first-child {
    text-align: left;
}

.tarifs-table thead th:nth-child(3) {
    color: var(--accent);
}

.tarifs-table tbody th,
.tarifs-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tarifs-table tbody th {
    text-align: left;
    font-weight: 500;
    color: var(--ink-soft);
}

.tarifs-table tbody td {
    text-align: center;
    color: var(--ink);
}

.tarifs-table tbody td .fa-check {
    color: var(--accent);
}

.tarifs-table tbody td .fa-minus {
    color: rgba(0, 0, 0, 0.25);
    font-size: 0.85rem;
}

.tarifs-table tr.highlight td {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.1;
    color: var(--ink);
    padding-top: 18px;
    padding-bottom: 18px;
}

.tarifs-table tr.highlight:nth-of-type(1) td {
    color: var(--accent);
}

.tarifs-table tbody td:nth-child(3),
.tarifs-table thead th:nth-child(3) {
    background-color: color-mix(in srgb, var(--accent) 4%, transparent);
}

.tarifs-table tbody tr:last-child th,
.tarifs-table tbody tr:last-child td {
    border-bottom: none;
}

.tarifs-note {
    text-align: center;
    margin: 32px 0 0;
    color: var(--ink-soft);
    font-size: 0.97rem;
}

.tarifs-note a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    transition: border-color 0.25s ease;
}

.tarifs-note a:hover {
    border-color: var(--accent);
}

@media (max-width: 700px) {
    .tarifs-comparison {
        padding: 60px 16px 40px;
    }

    .tarifs-table-wrapper {
        padding: 4px 8px;
    }

    .tarifs-table {
        font-size: 0.88rem;
    }

    .tarifs-table thead th,
    .tarifs-table tbody th,
    .tarifs-table tbody td {
        padding: 12px 10px;
    }

    .tarifs-table tr.highlight td {
        font-size: 1.05rem;
    }
}

/* SERVICES LIST */

.services-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 70px;
}

.services-list .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.services-list .service-card {
    aspect-ratio: auto;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
}

.services-list .service-card .card-icon {
    margin: 0 0 20px 0;
}

.services-list .service-card h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
}

.services-list .service-card p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--ink-soft);
}

@media (max-width: 700px) {
    .services-list .card-grid {
        grid-template-columns: 1fr;
    }
    .services-list .service-card {
        padding: 28px 26px;
    }
}

/* PROCESS */

.process {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 24px 70px;
}

.process-list {
    counter-reset: step;
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.process-list li {
    counter-increment: step;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 40px;
    row-gap: 6px;
    align-items: center;
    padding: 34px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.process-list li:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.process-list li::before {
    content: counter(step, decimal-leading-zero);
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.6rem, 4.5vw, 3.6rem);
    line-height: 0.9;
    color: var(--accent);
}

.process-list li h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    align-self: end;
}

.process-list li p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 60ch;
    align-self: start;
}

@media (max-width: 600px) {
    .process-list li {
        column-gap: 22px;
        padding: 28px 0;
    }
    .process-list li::before {
        grid-row: 1;
        font-size: 2.4rem;
    }
    .process-list li h3 {
        align-self: center;
    }
    .process-list li p {
        grid-column: 1 / -1;
        grid-row: 3;
        margin-top: 10px;
    }
}

/* INCLUDED */

.included {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 24px 100px;
}

.included-list {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
}

.included-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
}

.included-list > li > i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 5px;
}

.included-list li h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
}

.included-list li p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.55;
    color: var(--ink-soft);
}

@media (max-width: 600px) {
    .included-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* LEGAL */

.legal {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 24px 100px;
}

.legal-block {
    padding: 28px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-block:first-of-type {
    border-top: none;
    padding-top: 8px;
}

.legal-block h2 {
    margin: 0 0 14px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent);
}

.legal-block p {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 0.97rem;
    line-height: 1.7;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    transition: border-color 0.25s ease;
}

.legal-block a:hover {
    border-color: var(--accent);
}

.legal-block em {
    background-color: rgba(255, 220, 100, 0.4);
    font-style: normal;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.9em;
}

.legal-update {
    margin: 40px 0 0;
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-style: italic;
}

@media (max-width: 600px) {
    .legal {
        padding: 10px 20px 80px;
    }
}

/* ABOUT */

.about {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 60px;
}

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

.about-block h2 {
    margin: 0 0 18px;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.about-block h2 .font-instrument {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
    margin: 0 0.04em;
}

.about-block p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 50ch;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 18px;
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.inline-link i {
    margin-left: 6px;
    font-size: 0.82rem;
    transition: transform 0.3s ease;
}

.inline-link:hover {
    gap: 10px;
    color: var(--accent-hover);
}

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

@media (max-width: 820px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* VALUES */

.values {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.values .section-title {
    margin-bottom: 40px;
}

.values .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.values .card {
    aspect-ratio: auto;
    padding: 30px 32px;
    display: block;
}

.values .card h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent);
}

.values .card p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--ink-soft);
}

@media (max-width: 700px) {
    .values .card-grid {
        grid-template-columns: 1fr;
    }

    .values .card {
        padding: 26px 24px;
    }
}

/* PROJECTS */

.projects {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 100px;
}

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

.project-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 36px 34px 30px;
    background-color: #fff;
    border-radius: 14px;
    color: var(--ink);
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.4s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -16px color-mix(in srgb, var(--accent) 22%, transparent);
}

.project-meta {
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.project-title {
    margin: 0;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.project-desc {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.97rem;
    line-height: 1.6;
    flex-grow: 1;
}

.project-tags {
    font-size: 0.85rem;
    color: var(--accent);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 600;
    transition: gap 0.3s ease, color 0.3s ease;
}

.project-link i {
    margin-left: 6px;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.project-card:hover .project-link {
    gap: 12px;
    color: var(--accent-hover);
}

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

/* CTA card variant */
.project-card-cta {
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.2), transparent 55%),
        linear-gradient(155deg, var(--accent-light) 0%, var(--accent) 100%);
    color: #fff;
}

.project-card-cta .project-meta,
.project-card-cta .project-title,
.project-card-cta .project-link {
    color: #fff;
}

.project-card-cta .project-meta {
    opacity: 0.75;
}

.project-card-cta .project-desc {
    color: rgba(255, 255, 255, 0.85);
}

.project-card-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -14px color-mix(in srgb, var(--accent) 50%, transparent);
}

.project-card-cta:hover .project-link {
    color: rgba(255, 255, 255, 0.85);
}

.project-card-cta:hover .project-link i {
    transform: translateX(4px);
}

@media (max-width: 700px) {
    .projects {
        padding: 10px 20px 80px;
    }

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

    .project-card {
        padding: 28px 26px 24px;
    }
}

/* FAQ */

.faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px 100px;
}

.faq .section-title {
    margin-bottom: 32px;
}

.faq details {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq details:last-of-type {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 4px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.25s ease;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: '+';
    font-family: 'Instrument Serif', serif;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq summary:hover {
    color: var(--accent);
}

.faq details[open] summary {
    color: var(--accent);
}

.faq details[open] summary::after {
    transform: rotate(45deg);
}

.faq details > p {
    margin: 0 0 22px;
    max-width: 680px;
    color: var(--ink-soft);
    font-size: 0.97rem;
    line-height: 1.7;
}

/* FOOTER */

.site-footer {
    background-color: var(--ink);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 24px 28px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 60px;
}

.footer-brand h3 {
    margin: 0 0 14px;
    font-size: 2.4rem;
    font-style: italic;
    line-height: 1;
    color: #fff;
}

.footer-brand p {
    margin: 0;
    max-width: 360px;
    font-size: 0.93rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
    margin: 0 0 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
}

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

.footer-col a i {
    font-size: 0.75em;
    transition: transform 0.25s ease;
}

.footer-col a:hover i {
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 820px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 500px) {
    .site-footer {
        padding: 60px 20px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.tarifs .section-title {
    color: #fff;
}

.tarifs .section-title .font-instrument {
    color: #fff;

}