/**
 * Travelnet Projet – landing page styles
 */

.tn-projet {
    --tn-blue: #0b3c6d;
    --tn-blue-light: #0e5a9e;
    --tn-cyan: #00c6d5;
    --tn-green: #2db87a;
    --tn-ink: #1a2b3c;
    --tn-muted: #5a6b7c;
    --tn-line: rgba(11, 60, 109, 0.1);
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--tn-ink);
    background: #fff;
    overflow-x: hidden;
}

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

.tn-projet__wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── Hero ── */
.tn-projet__hero {
    position: relative;
    padding: 5rem 0 4rem;
    color: #fff;
    overflow: hidden;
}

.tn-projet__hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 15% 20%, rgba(0, 198, 213, 0.28), transparent 55%),
        radial-gradient(ellipse 70% 60% at 85% 80%, rgba(0, 198, 213, 0.15), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
        linear-gradient(145deg, #061f3a 0%, var(--tn-blue) 40%, var(--tn-blue-light) 100%);
    z-index: 0;
}

.tn-projet__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    text-align: center;
}

.tn-projet__eyebrow {
    display: inline-block;
    margin: 0 0 1.25rem;
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tn-cyan);
    background: rgba(0, 198, 213, 0.12);
    border: 1px solid rgba(0, 198, 213, 0.3);
    border-radius: 999px;
}

.tn-projet__title {
    margin: 0 0 1.25rem;
    padding: 0;
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #fff;
    border: 0;
}

.tn-projet__lead {
    margin: 0 0 2rem;
    padding: 0;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.tn-projet__hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.tn-projet__hero-note {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Buttons */
.tn-projet__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.tn-projet__btn--primary {
    color: var(--tn-blue) !important;
    background: #fff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.tn-projet__btn--primary:hover,
.tn-projet__btn--primary:focus {
    color: var(--tn-blue) !important;
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.tn-projet__btn--ghost {
    color: #fff !important;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
}

.tn-projet__btn--ghost:hover,
.tn-projet__btn--ghost:focus {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.tn-projet__btn--lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.tn-projet__btn-arrow {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b3c6d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.tn-projet__final .tn-projet__btn-arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b3c6d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E");
}

/* ── Trust bar ── */
.tn-projet__trust {
    background: #fff;
    border-bottom: 1px solid var(--tn-line);
    box-shadow: 0 8px 30px rgba(11, 60, 109, 0.06);
}

.tn-projet__trust-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 1.5rem 0;
    list-style: none;
}

.tn-projet__trust-item {
    text-align: center;
    padding: 0.5rem;
    border-right: 1px solid var(--tn-line);
}

.tn-projet__trust-item:last-child {
    border-right: 0;
}

.tn-projet__trust-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--tn-blue);
    letter-spacing: -0.02em;
}

.tn-projet__trust-label {
    display: block;
    font-size: 0.78rem;
    color: var(--tn-muted);
    margin-top: 0.15rem;
}

/* ── Section heads ── */
.tn-projet__section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.tn-projet__section-title {
    margin: 0 0 0.85rem;
    padding: 0;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--tn-ink);
    border: 0;
}

.tn-projet__section-title--center {
    text-align: center;
    margin-bottom: 2rem;
}

.tn-projet__section-intro {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--tn-muted);
}

/* ── Objections ── */
.tn-projet__objections {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
}

.tn-projet__objection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.tn-projet__objection {
    padding: 1.75rem 1.5rem;
    background: #fff;
    border: 1px solid var(--tn-line);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(11, 60, 109, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tn-projet__objection:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 198, 213, 0.35);
    box-shadow: 0 16px 44px rgba(11, 60, 109, 0.1);
}

.tn-projet__objection-icon {
    display: block;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 14px;
    background-color: rgba(11, 60, 109, 0.08);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
}

.tn-projet__objection-icon--product {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b3c6d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E");
}

.tn-projet__objection-icon--idea {
    background-color: rgba(0, 198, 213, 0.12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300c6d5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M12 2a7 7 0 0 0-4 12.74V17h8v-2.26A7 7 0 0 0 12 2z'/%3E%3C/svg%3E");
}

.tn-projet__objection-icon--honest {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b3c6d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpolyline points='9 12 11 14 15 10'/%3E%3C/svg%3E");
}

.tn-projet__objection-title {
    margin: 0 0 0.65rem;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--tn-blue);
    border: 0;
}

.tn-projet__objection-text {
    margin: 0;
    padding: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--tn-muted);
}

/* ── Split products / custom ── */
.tn-projet__split {
    padding: 4.5rem 0;
    background: #fff;
}

.tn-projet__split-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.tn-projet__split-card {
    padding: 2rem 1.75rem;
    border-radius: 20px;
    border: 1px solid var(--tn-line);
}

.tn-projet__split-card--products {
    background: linear-gradient(180deg, #f4f8fb 0%, #fff 100%);
    border-top: 3px solid var(--tn-blue);
}

.tn-projet__split-card--custom {
    background: linear-gradient(180deg, #f0fcfd 0%, #fff 100%);
    border-top: 3px solid var(--tn-cyan);
}

.tn-projet__split-label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tn-muted);
}

.tn-projet__split-text {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--tn-ink);
}

.tn-projet__split-list,
.tn-projet__split-tags {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.tn-projet__split-list li {
    padding: 0.35rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tn-blue);
    background: rgba(11, 60, 109, 0.08);
    border-radius: 999px;
}

.tn-projet__split-tags li {
    padding: 0.35rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #067a84;
    background: rgba(0, 198, 213, 0.12);
    border-radius: 999px;
}

.tn-projet__split-or {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tn-projet__split-or span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--tn-muted);
    background: #fff;
    border: 2px solid var(--tn-line);
    border-radius: 50%;
}

/* ── Showcase ── */
.tn-projet__showcase {
    padding: 4.5rem 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 198, 213, 0.06), transparent 60%),
        linear-gradient(180deg, #f7fafc 0%, #fff 100%);
}

.tn-projet__group {
    margin-bottom: 2.5rem;
}

.tn-projet__group:last-child {
    margin-bottom: 0;
}

.tn-projet__group-label {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 0;
}

.tn-projet__group--cyan .tn-projet__group-label {
    color: #067a84;
    background: rgba(0, 198, 213, 0.12);
}

.tn-projet__group--blue .tn-projet__group-label {
    color: var(--tn-blue);
    background: rgba(11, 60, 109, 0.08);
}

.tn-projet__group--green .tn-projet__group-label {
    color: #1e8a58;
    background: rgba(45, 184, 122, 0.12);
}

.tn-projet__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.tn-projet__card {
    padding: 1.35rem;
    background: #fff;
    border: 1px solid var(--tn-line);
    border-radius: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tn-projet__card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 198, 213, 0.3);
    box-shadow: 0 12px 32px rgba(11, 60, 109, 0.08);
}

.tn-projet__card-title {
    margin: 0 0 0.5rem;
    padding: 0;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--tn-ink);
    border: 0;
}

.tn-projet__card-text {
    margin: 0 0 0.85rem;
    padding: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--tn-muted);
}

.tn-projet__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.tn-projet__card-tag {
    padding: 0.2rem 0.55rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--tn-blue);
    background: rgba(11, 60, 109, 0.06);
    border-radius: 4px;
}

/* ── Steps ── */
.tn-projet__steps {
    padding: 4.5rem 0;
    background: #fff;
}

.tn-projet__steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.tn-projet__step {
    position: relative;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
    border: 1px solid var(--tn-line);
    border-radius: 18px;
}

.tn-projet__step-num {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(0, 198, 213, 0.35);
}

.tn-projet__step-title {
    margin: 0 0 0.5rem;
    padding: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--tn-blue);
    border: 0;
}

.tn-projet__step-text {
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--tn-muted);
}

/* ── Reassurance pills ── */
.tn-projet__reassure {
    padding: 2.5rem 0;
    background: var(--tn-blue);
}

.tn-projet__reassure-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.tn-projet__pill {
    padding: 0.45rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

/* ── FAQ ── */
.tn-projet__faq {
    padding: 4.5rem 0;
    background: #f7fafc;
}

.tn-projet__faq-wrap {
    max-width: 760px;
}

.tn-projet__faq-wrap .tn-projet__section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.tn-projet__faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.tn-projet__faq-item {
    background: #fff;
    border: 1px solid var(--tn-line);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.tn-projet__faq-item[open] {
    border-color: rgba(0, 198, 213, 0.4);
    box-shadow: 0 4px 16px rgba(11, 60, 109, 0.06);
}

.tn-projet__faq-q {
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tn-ink);
    cursor: pointer;
    list-style: none;
}

.tn-projet__faq-q::-webkit-details-marker {
    display: none;
}

.tn-projet__faq-q::after {
    content: "+";
    float: right;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--tn-cyan);
    transition: transform 0.2s ease;
}

.tn-projet__faq-item[open] .tn-projet__faq-q::after {
    content: "−";
}

.tn-projet__faq-a {
    margin: 0;
    padding: 0 1.25rem 1.1rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--tn-muted);
}

/* ── Final CTA ── */
.tn-projet__final {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.tn-projet__final-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 100%, rgba(0, 198, 213, 0.2), transparent 60%),
        linear-gradient(145deg, #061f3a, var(--tn-blue) 50%, var(--tn-blue-light));
    z-index: 0;
}

.tn-projet__final-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
}

.tn-projet__final-title {
    margin: 0 0 1rem;
    padding: 0;
    font-size: clamp(1.65rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    border: 0;
}

.tn-projet__final-text {
    margin: 0 0 1.75rem;
    padding: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.tn-projet__final-note {
    margin: 1.25rem 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ── Sticky mobile CTA ── */
.tn-projet__sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--tn-line);
    box-shadow: 0 -8px 24px rgba(11, 60, 109, 0.1);
    backdrop-filter: blur(8px);
}

.tn-projet__sticky-btn {
    display: block;
    width: 100%;
    padding: 0.9rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--tn-blue), var(--tn-blue-light));
    border-radius: 999px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .tn-projet__objection-grid,
    .tn-projet__steps-grid {
        grid-template-columns: 1fr;
    }

    .tn-projet__split-grid {
        grid-template-columns: 1fr;
    }

    .tn-projet__split-or {
        padding: 0.5rem 0;
    }

    .tn-projet__trust-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .tn-projet__trust-item:nth-child(2) {
        border-right: 0;
    }

    .tn-projet__trust-item {
        border-bottom: 1px solid var(--tn-line);
    }

    .tn-projet__trust-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

@media (max-width: 575px) {
    .tn-projet__hero {
        padding: 3.5rem 0 3rem;
    }

    .tn-projet__hero-cta {
        flex-direction: column;
    }

    .tn-projet__btn {
        width: 100%;
    }

    .tn-projet__trust-list {
        grid-template-columns: 1fr 1fr;
    }

    .tn-projet__sticky {
        display: block;
    }

    .tn-projet__final {
        padding-bottom: 6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tn-projet__objection,
    .tn-projet__card,
    .tn-projet__btn {
        transition: none;
    }
}
