/* ============================================================
   SIGNIFIO.CA — Site Vitrine
   Design: Pro, confiance, moderne
   Colors: Bleu profond + accents verts (sécurité/confiance)
   ============================================================ */

:root {
    --primary: #1a3a5c;
    --primary-light: #2d5a8a;
    --primary-dark: #0f2440;
    --accent: #1a3a5c;
    --accent-light: #2d5a8a;
    --accent-dark: #0f2440;
    --success: #10b981;
    --success-light: #34d399;
    --trust: #0ea5e9;
    --proof: #f59e0b;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e5e7eb;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
    --max-width: 1200px;
    --nav-height: 72px;
    --trustbar-height: 36px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.55;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(26,58,92,.02) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

a { color: var(--primary-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

/* ============================================================
   TRUST BAR
   ============================================================ */

.trustbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,.9);
    font-size: .75rem;
    font-weight: 500;
    height: var(--trustbar-height);
    display: flex;
    align-items: center;
}

.trustbar__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
}

.trustbar span {
    display: flex;
    align-items: center;
    gap: .35rem;
    opacity: .85;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
    position: fixed;
    top: var(--trustbar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all .3s;
    height: var(--nav-height);
}

.nav--scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow);
}

.nav__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.nav__logo-icon {
    font-size: 1.5rem;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: .1rem;
}

.nav__links a {
    padding: .5rem .75rem;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: .85rem;
    font-weight: 500;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
    background: var(--bg-alt);
    color: var(--primary);
}

.nav__dropdown { position: relative; }
.nav__arrow { font-size: .7rem; opacity: .6; }
.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: .5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s;
    list-style: none;
}
.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav__dropdown-menu a {
    display: block;
    padding: .6rem 1rem;
    border-radius: var(--radius-sm);
    font-size: .875rem;
}
.nav__dropdown-menu a:hover { background: var(--bg-alt); }

/* Mega menu */
.nav__mega {
    display: flex;
    gap: 1.5rem;
    min-width: 480px;
    padding: 1.25rem;
}
.nav__mega-col { flex: 1; }
.nav__mega-label {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-lighter);
    margin-bottom: .5rem;
    padding: 0 1rem;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.nav__mobile-toggle { display: none; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .2s;
    text-decoration: none;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
}
.btn--primary:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background: var(--success);
    color: #fff;
}
.btn--secondary:hover {
    background: #059669;
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn--ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn--ghost-light {
    background: transparent;
    color: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.3);
}
.btn--ghost-light:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

.btn--large {
    padding: .875rem 2rem;
    font-size: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    padding: calc(var(--nav-height) + var(--trustbar-height) + 5rem) 2rem 5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    position: relative;
    z-index: 1;
}

.hero__container {
    max-width: 800px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .375rem 1rem;
    background: rgba(16,185,129,.1);
    color: var(--accent-dark);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

.hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.hero__title span { color: var(--accent); }

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__proof {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: .85rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.hero__proof-item {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hero__microtrust {
    margin-top: 1.5rem;
    font-size: .8rem;
    color: var(--text-lighter);
    letter-spacing: .02em;
}

/* ============================================================
   LEGAL STEPS (Processus probatoire)
   ============================================================ */

.legal-steps {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.legal-steps::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--trust));
    opacity: .2;
}

.legal-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    position: relative;
}

.legal-step__number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.legal-step__content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .4rem;
    color: var(--primary-dark);
}

.legal-step__content p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #fff; }

.section__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section__label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: .75rem;
}

.section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section--dark .section__title { color: #fff; }

.section__subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   GRID & CARDS
   ============================================================ */

.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all .3s;
}

.card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: rgba(16,185,129,.1);
}

.card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.card__text {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.card__proof {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: .7rem;
    font-weight: 600;
    padding: .25rem .6rem;
    background: rgba(14,165,233,.1);
    color: var(--trust);
    border-radius: 999px;
}

.card { position: relative; }

/* ============================================================
   STEPS (Comment ça fonctionne)
   ============================================================ */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: step;
}

.step {
    text-align: center;
    position: relative;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 1.25rem;
}

.step__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.step__text {
    font-size: .9rem;
    color: var(--text-light);
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

.pricing__card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.pricing__card--popular {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
    position: relative;
}

.pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: .25rem .75rem;
    border-radius: 50px;
}

.pricing__name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.pricing__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: .25rem;
}

.pricing__price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }

.pricing__desc {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.pricing__features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing__features li {
    padding: .4rem 0;
    font-size: .875rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.pricing__features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

.pricing__cta { margin-top: auto; }
.pricing__cta .btn { width: 100%; justify-content: center; }

.pricing__bestfor {
    font-size: .8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.pricing__paygo {
    margin-top: 3rem;
}

.pricing__paygo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.pricing__paygo h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.pricing__paygo p { font-size: .9rem; color: var(--text-light); }
.pricing__paygo-price { font-size: 1.25rem; white-space: nowrap; }
.pricing__paygo-price strong { font-size: 1.75rem; color: var(--primary-dark); }

.pricing__enterprise { margin-top: 1.5rem; }
.pricing__enterprise-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    background: var(--primary-dark);
    color: #fff;
    border-radius: var(--radius);
}
.pricing__enterprise h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.pricing__enterprise p { font-size: .9rem; opacity: .8; }

/* Hero short variant */
.hero--short { padding-bottom: 3rem; }
.hero__title--sm { font-size: clamp(1.75rem, 4vw, 2.75rem); }

/* ============================================================
   FAQ
   ============================================================ */

.faq { max-width: 800px; margin: 0 auto; }

.faq__item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.faq__q {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--primary-dark);
}

.faq__a {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================================
   COMPARATIF
   ============================================================ */

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    background: var(--bg);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
    min-width: 700px;
}

.compare-table th,
.compare-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.compare-table th {
    background: var(--bg-alt);
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--text-light);
}

.compare-table__highlight {
    background: rgba(26, 58, 92, .03);
}

.compare-table th.compare-table__highlight {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.compare-table tbody tr:hover td {
    background: var(--bg-alt);
}

.compare-table tbody tr:hover td.compare-table__highlight {
    background: rgba(26, 58, 92, .06);
}

.compare-table .check { color: var(--accent); font-weight: 700; }
.compare-table .cross { color: #ef4444; }

/* Badges */
.badge {
    display: inline-block;
    padding: .25rem .6rem;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 500;
    white-space: nowrap;
}
.badge--green { background: rgba(16, 185, 129, .1); color: #059669; }
.badge--red { background: rgba(239, 68, 68, .08); color: #dc2626; }
.badge--yellow { background: rgba(245, 158, 11, .08); color: #d97706; }

/* Card highlight variant */
.card--highlight {
    border: 2px solid var(--primary);
    background: rgba(26, 58, 92, .02);
}

.card--centered {
    text-align: center;
}

/* ============================================================
   FORMS
   ============================================================ */

.form__group {
    margin-bottom: 1.25rem;
}

.form__label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .4rem;
}

.form__input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: border-color .2s, box-shadow .2s;
}

.form__input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 58, 92, .08);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   FAQ (details/summary)
   ============================================================ */

.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__question {
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    transition: transform .2s;
}

details[open] .faq__question::after {
    content: '−';
}

.faq__answer {
    padding: 0 0 1.25rem;
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   CODE BLOCKS
   ============================================================ */

.code-block {
    background: var(--bg-dark);
    border-radius: var(--radius);
    padding: 2rem;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
}

.code-block code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: .82rem;
    line-height: 1.7;
    color: #e2e8f0;
    white-space: pre;
}

/* ============================================================
   CONTACT / DEMO INFO
   ============================================================ */

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.contact-info__item strong {
    display: block;
    font-size: .85rem;
    color: var(--text);
    margin-bottom: .2rem;
}

.contact-info__item p {
    font-size: .9rem;
    color: var(--text-light);
}

.demo-info__list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.demo-info__list li {
    padding: .5rem 0;
    font-size: .9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.demo-info__list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.demo-info__details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: .5rem;
}

.demo-info__detail strong {
    display: block;
    font-size: .85rem;
    margin-bottom: .15rem;
}

.demo-info__detail p {
    font-size: .9rem;
    color: var(--text-light);
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
}

.cta-section__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section__text {
    font-size: 1.05rem;
    opacity: .85;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: var(--bg-dark);
    color: #cbd5e1;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer__proof {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: .8rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: rgba(255,255,255,.6);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer__logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer__tagline {
    margin-top: .75rem;
    font-size: .875rem;
    line-height: 1.6;
    opacity: .7;
}

.footer__col h4 {
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: .5rem; }
.footer__col a {
    color: #94a3b8;
    font-size: .82rem;
    transition: color .2s;
    white-space: nowrap;
}
.footer__col a:hover { color: #fff; }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    opacity: .6;
}

/* Footer — Infrastructure block */
.footer__infra {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
}

.footer__infra-header {
    margin-bottom: 1.5rem;
}

.footer__infra-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .35rem;
}

.footer__infra-header p {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}

.footer__infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.footer__infra-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.footer__infra-icon {
    font-size: 1.1rem;
    min-width: 1.5rem;
    padding-top: .1rem;
}

.footer__infra-item strong {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: .15rem;
}

.footer__infra-item span {
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    line-height: 1.4;
}

/* Footer — CTA band */
.footer__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    margin-bottom: 2.5rem;
    background: rgba(26, 58, 92, .4);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
}

.footer__cta-text {
    font-size: .9rem;
    color: rgba(255,255,255,.8);
    font-weight: 500;
}

.footer__cta .btn--primary {
    white-space: nowrap;
    background: #fff;
    color: var(--primary-dark);
    font-size: .85rem;
}

.footer__cta .btn--primary:hover {
    background: #f1f5f9;
    color: var(--primary);
}

/* Footer — Column "Core" badge */
.footer__col--core h4 {
    color: #10b981;
}

.footer__col-badge {
    display: inline-block;
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .15rem .4rem;
    background: rgba(16, 185, 129, .15);
    color: #34d399;
    border-radius: 3px;
    margin-left: .4rem;
    vertical-align: middle;
}

/* Footer — Legal column dimmed */
.footer__col--legal h4 {
    color: #64748b;
    font-weight: 500;
}

.footer__col--legal a {
    color: #64748b;
}

.footer__col--legal a:hover {
    color: #94a3b8;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */

.blog-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s;
    text-decoration: none;
    color: var(--text);
}

.blog-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    color: var(--text);
}

.blog-card__category {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--primary-light);
    margin-bottom: .75rem;
}

.blog-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: .75rem;
    line-height: 1.4;
}

.blog-card__excerpt {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.blog-card__date {
    font-size: .78rem;
    color: var(--text-lighter);
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* ============================================================
   LEGAL CONTENT (conditions, confidentialité, etc.)
   ============================================================ */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}

.legal-content p {
    font-size: .92rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: .5rem 0 1.25rem 1.5rem;
}

.legal-content li {
    font-size: .92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: .4rem;
}

.legal-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: .88rem;
}

.legal-table th,
.legal-table td {
    padding: .75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
}

.legal-table th {
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--text);
}

.legal-table td {
    color: var(--text-light);
}

/* ============================================================
   BLOG ARTICLE
   ============================================================ */

.article-content {
    max-width: 760px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: .75rem;
}

.article-content p {
    font-size: .95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
    margin: .5rem 0 1.5rem 1.5rem;
}

.article-content li {
    font-size: .95rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: .5rem;
}

.article-content strong {
    color: var(--text);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: .82rem;
    color: var(--text-lighter);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.article-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}

.article-cta h3 {
    margin-top: 0;
    margin-bottom: .5rem;
}

.article-cta p {
    margin-bottom: 1.25rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .trustbar__container { gap: 1rem; font-size: .65rem; }
    .nav { top: var(--trustbar-height); }
    .nav__links,
    .nav__actions { display: none; }
    .nav__links.show,
    .nav__actions.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 1rem 2rem;
        box-shadow: var(--shadow-lg);
    }
    .nav__actions.show { padding-bottom: 1.5rem; }
    .nav__mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: .5rem;
    }
    .nav__mobile-toggle span {
        width: 24px;
        height: 2px;
        background: var(--text);
        transition: all .3s;
    }
    .nav__mega { flex-direction: column; min-width: auto; }
    .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer__infra-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .trustbar__container { display: none; }
    .trustbar { display: none; }
    .nav { top: 0; }
    .hero { padding-top: calc(var(--nav-height) + 3rem); }
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .hero__title { font-size: 2rem; }
    .hero__cta { flex-direction: column; }
    .hero__proof { flex-direction: column; gap: .5rem; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
    .footer__proof { flex-direction: column; gap: .75rem; }
    .footer__infra-grid { grid-template-columns: 1fr; }
    .footer__cta { flex-direction: column; gap: 1rem; text-align: center; }
    .compare-table { font-size: .75rem; }
    .cta-section__actions { flex-direction: column; }
}


/* =========================
   PREMIUM POLISH — Conversion Upgrade
   ========================= */

/* 1. Visual Hierarchy Levels */
.level-1 { box-shadow: 0 12px 40px rgba(26,58,92,.12); transform: translateY(-6px); }
.level-2 { box-shadow: 0 4px 16px rgba(26,58,92,.08); }
.level-3 { box-shadow: 0 1px 4px rgba(0,0,0,.04); }

.focus {
    border: 1px solid rgba(26,58,92,.2);
    background: linear-gradient(180deg, rgba(26,58,92,.03), transparent);
}

/* 2. Hero Trustline */
.hero__trustline {
    margin-top: 1.25rem;
    font-size: .78rem;
    color: #64748b;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.hero__trustline span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

/* 3. Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1a3a5c;
    color: white;
    padding: .75rem 1.25rem;
    border-radius: 999px;
    box-shadow: 0 8px 32px rgba(26,58,92,.3);
    display: flex;
    align-items: center;
    gap: .5rem;
    z-index: 9999;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    opacity: 0;
    transform: translateY(20px);
    animation: stickyIn .4s ease forwards;
    animation-delay: 2s;
}
.sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26,58,92,.4);
}
@keyframes stickyIn {
    to { opacity: 1; transform: translateY(0); }
}

/* 4. Card Hover Intelligence */
.card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 32px rgba(26,58,92,.1);
}
.card:hover .card__icon,
.card:hover .feature-card__icon {
    transform: rotate(-3deg) scale(1.05);
}
.card__icon, .feature-card__icon {
    transition: transform .25s ease;
}

/* 5. Footer breathing + hover */
.footer__grid {
    gap: 3rem;
}
.footer__col ul li {
    transition: transform .2s;
}
.footer__col ul li:hover {
    transform: translateX(3px);
}

/* 6. Section scroll anchors */
.section {
    scroll-margin-top: 100px;
}

/* 7. Subtle body texture */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(120deg, rgba(26,58,92,.015), transparent);
    pointer-events: none;
    z-index: 0;
}
body > * {
    position: relative;
    z-index: 1;
}

/* 8. Pricing card highlight (popular) */
.pricing__card--popular {
    box-shadow: 0 12px 40px rgba(26,58,92,.12);
    transform: translateY(-6px);
    border: 2px solid rgba(26,58,92,.2);
}

/* 9. Compare table winner */
.compare-highlight {
    position: relative;
}
.compare-highlight::after {
    content: "✔ recommandé";
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: .6rem;
    background: #1a3a5c;
    color: white;
    padding: .15rem .5rem;
    border-radius: 999px;
}

/* 10. Discount badge style */
.pricing__discount {
    font-size: .7rem;
    background: #dcfce7;
    color: #166534;
    padding: .2rem .5rem;
    border-radius: 4px;
    font-weight: 600;
    vertical-align: middle;
    margin-left: .25rem;
}


/* =========================
   HERO DUAL LAYOUT + PROOF PANEL
   ========================= */

.hero--dual { padding-bottom: 80px; }
.hero__split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    max-width: 1280px;
    margin: 0 auto;
}
.hero__split .hero__title { font-size: 2.4rem; }
.hero__split .hero__subtitle { font-size: 1rem; max-width: 480px; }
.hero__split .hero__cta { justify-content: flex-start; }
.hero__split .hero__trustline { justify-content: flex-start; }

/* Proof Panel */
.proof-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(26,58,92,.12), 0 4px 12px rgba(0,0,0,.04);
    overflow: hidden;
    font-size: 13px;
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
    transition: transform .4s ease;
}
.proof-panel:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}
.proof-panel__header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.proof-panel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.proof-panel__dot--green { background: #16a34a; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}
.proof-panel__title {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.proof-panel__body { padding: 18px; }
.proof-panel__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}
.proof-panel__label {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    min-width: 80px;
}
.proof-panel__value {
    font-size: 12px;
    color: #1e293b;
    font-weight: 500;
}
.proof-panel__hash {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #94a3b8;
    letter-spacing: -.3px;
}
.proof-panel__badge {
    background: #dcfce7;
    color: #166534;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
}
.proof-panel__divider {
    height: 1px;
    background: #f1f5f9;
    margin: 10px 0;
}
.proof-panel__timeline {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px 0;
}
.proof-panel__event {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #475569;
}
.proof-panel__event small {
    color: #94a3b8;
    margin-left: auto;
    font-family: monospace;
    font-size: 10px;
}
.proof-panel__event-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.proof-panel__footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-size: 11px;
    color: #16a34a;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 900px) {
    .hero__split {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__split .hero__cta { justify-content: center; }
    .hero__split .hero__trustline { justify-content: center; }
    .proof-panel { transform: none; }
}


/* =========================
   FONCTIONNEMENT PAGE — Polish fixes
   ========================= */

/* Legal steps hover */
.legal-step {
    transition: all .3s ease;
}
.legal-step:hover {
    transform: translateX(6px);
}
.legal-step__number {
    box-shadow: 0 0 0 6px rgba(26,58,92,.08);
}

/* Section alt gradient */
.section--alt {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Card proof status badge */
.card__status {
    font-size: .75rem;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: .5rem;
}

/* Card hover border */
.card:hover {
    border-color: rgba(26,58,92,.2);
}

/* Proof preview block (for pages without the panel) */
.proof-preview {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}
.proof-preview__header {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.proof-preview__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    font-size: 13px;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
    color: #334155;
}
.proof-preview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
}
@media (max-width: 768px) {
    .proof-preview__grid {
        grid-template-columns: 1fr;
    }
}
.proof-preview__col--tech {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 12px;
}
.proof-preview__row {
    display: flex;
    gap: 8px;
    align-items: baseline;
    padding: 4px 0;
}
.proof-preview__label {
    font-weight: 600;
    color: #64748b;
    min-width: 90px;
    flex-shrink: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.proof-preview__value {
    color: #1e293b;
}
.proof-preview__hash {
    color: #2563eb;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 12px;
    word-break: break-all;
}
.proof-preview__footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.proof-preview__link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
}
.proof-preview__link:hover {
    text-decoration: underline;
}

/* Nav proof link */
.nav__proof-link {
    color: #2563eb !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    padding: 4px 8px !important;
    background: #eff6ff;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav__proof-link:hover {
    background: #dbeafe !important;
    border-color: #93c5fd;
}

/* Card code block (for comparatif technical density) */
.card__code {
    display: block;
    margin-top: 10px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 11px;
    color: #2563eb;
    background: #f1f5f9;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    word-break: break-all;
}

/* Card highlight (comparatif) */
.card--highlight {
    border: 2px solid #2563eb;
    background: #f0f7ff;
}
.card--highlight .card__title {
    color: #1d4ed8;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testimonial__stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
}
.testimonial__text {
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
    font-style: italic;
    flex: 1;
}
.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}
.testimonial__author strong {
    font-size: 14px;
    color: #1e293b;
}
.testimonial__author span {
    font-size: 12px;
    color: #64748b;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 32px;
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2439 100%);
    border-radius: 16px;
    color: #fff;
    gap: 24px;
    flex-wrap: wrap;
}
.stats-bar__item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stats-bar__number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}
.stats-bar__label {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}

/* ============================================================
   INLINE DEMO
   ============================================================ */
.inline-demo {
    max-width: 600px;
    margin: 0 auto;
}
.inline-demo__form {
    text-align: center;
}
.inline-demo__fields {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.inline-demo__input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s;
}
.inline-demo__input:focus {
    outline: none;
    border-color: #2563eb;
}
.inline-demo__note {
    font-size: 12px;
    color: #64748b;
    margin-top: 8px;
}
@media (max-width: 640px) {
    .inline-demo__fields {
        flex-direction: column;
    }
}

/* ============================================================
   STATUS PAGE
   ============================================================ */
.status-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 15px;
}
.status-banner--ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.status-banner__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s infinite;
}
.status-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}
.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}
.status-item__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.status-item__dot--ok { background: #10b981; }
.status-item__dot--warn { background: #f59e0b; }
.status-item__dot--down { background: #ef4444; }
.status-item__name {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
    color: #1e293b;
}
.status-item__status {
    font-size: 13px;
    color: #065f46;
    font-weight: 500;
}
.status-item__uptime {
    font-size: 13px;
    color: #64748b;
    min-width: 60px;
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
}
.status-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 768px) {
    .status-summary { grid-template-columns: repeat(2, 1fr); }
}
.status-summary__item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.status-summary__item strong {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.status-summary__item span {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}
.status-history {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.status-history__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}
.status-history__item--ok { background: #ecfdf5; color: #065f46; }
.status-history__date { font-weight: 600; min-width: 100px; }

/* ============================================================
   TEMPLATE CARDS (modeles.php)
   ============================================================ */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.template-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .2s, border-color .2s;
}
.template-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    border-color: #cbd5e1;
}
.template-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.template-card__icon { font-size: 28px; }
.template-card__badge {
    font-size: 11px;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    padding: 3px 8px;
    border-radius: 4px;
}
.template-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}
.template-card__desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}
.template-card__includes {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: #334155;
    margin-top: 8px;
}
.template-card__includes span::before {
    color: #10b981;
    font-weight: 700;
}
.template-card__footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}
.template-card__use {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ============================================================
   VIDEO PLACEHOLDER
   ============================================================ */
.video-placeholder {
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2439 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.video-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26,58,92,.2);
}
.video-placeholder__inner { color: #fff; }
.video-placeholder__play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.video-placeholder__text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.video-placeholder__sub {
    font-size: 14px;
    opacity: .7;
}

/* ============================================================
   LEGAL OPINION
   ============================================================ */
.legal-opinion {
    background: #fff;
    border-left: 4px solid #2563eb;
    border-radius: 0 12px 12px 0;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.legal-opinion__quote {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    font-style: italic;
    margin-bottom: 20px;
}
.legal-opinion__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.legal-opinion__author strong {
    font-size: 15px;
    color: #1e293b;
    font-style: normal;
}
.legal-opinion__author span {
    font-size: 13px;
    color: #64748b;
    font-style: normal;
}

/* ============================================================
   FORM NOTE
   ============================================================ */
.form__note {
    font-size: 12px;
    color: #64748b;
    margin-top: 8px;
    text-align: center;
}
