/* ============================================
   LISTALAJEUXBONUS.COM — Premium Editorial Theme
   Palette: Light Lavender, Muted Violet, Dusty Blue-Gray
   Style: French digital magazine / editorial guide
   ============================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f0f8;
    color: #2d2d2d;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #7c6a9e;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #5d4a7a;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a2e;
}

h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #3d3d4a;
}

/* ----- LAYOUT ----- */
.ljb-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.ljb-section {
    padding: 70px 0;
}

.ljb-section--light {
    background-color: #faf8fc;
}

.ljb-section--white {
    background-color: #ffffff;
}

.ljb-section--lavender {
    background-color: #f0ebf5;
}

.ljb-section--dark {
    background-color: #1a1a2e;
    color: #e8e4ef;
}

.ljb-section--dark h2,
.ljb-section--dark h3,
.ljb-section--dark p {
    color: #e8e4ef;
}

.ljb-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.ljb-section-title h2 {
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.ljb-section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b8a9d4, #7c6a9e);
    margin: 16px auto 0;
    border-radius: 2px;
}

.ljb-section-title p {
    font-size: 1.1rem;
    color: #6a6a7a;
    max-width: 640px;
    margin: 0 auto;
}

/* ----- GRID ----- */
.ljb-grid {
    display: grid;
    gap: 30px;
}

.ljb-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ljb-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ljb-grid--4 { grid-template-columns: repeat(4, 1fr); }
.ljb-grid--5 { grid-template-columns: repeat(5, 1fr); }

/* ----- CARDS ----- */
.ljb-card {
    background: #ffffff;
    border: 1px solid #e8e2ee;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(124, 106, 158, 0.06);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.ljb-card:hover {
    box-shadow: 0 6px 24px rgba(124, 106, 158, 0.12);
    transform: translateY(-2px);
}

.ljb-card--lavender {
    background: #f8f5fb;
    border-color: #ddd4e8;
}

.ljb-card--dark {
    background: #22223a;
    border-color: #333355;
    color: #d0cce0;
}

/* ----- BUTTONS ----- */
.ljb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-decoration: none;
    line-height: 1.4;
}

.ljb-btn--primary {
    background: linear-gradient(135deg, #9b8abf, #7c6a9e);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(124, 106, 158, 0.25);
}

.ljb-btn--primary:hover {
    background: linear-gradient(135deg, #8a77b0, #6b5990);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(124, 106, 158, 0.35);
    transform: translateY(-1px);
}

.ljb-btn--secondary {
    background: transparent;
    color: #7c6a9e;
    border: 2px solid #d5cce3;
}

.ljb-btn--secondary:hover {
    border-color: #7c6a9e;
    background: rgba(124, 106, 158, 0.05);
    color: #5d4a7a;
}

.ljb-btn--outline-light {
    background: transparent;
    color: #e8e4ef;
    border: 2px solid rgba(232, 228, 239, 0.3);
}

.ljb-btn--outline-light:hover {
    border-color: #e8e4ef;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.ljb-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* ============================================
   HEADER
   ============================================ */
.ljb-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e2ee;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(124, 106, 158, 0.06);
}

.ljb-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    max-width: 1120px;
    margin: 0 auto;
}

.ljb-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.ljb-header__logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #b8a9d4, #7c6a9e);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}

.ljb-header__logo-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a2e;
    letter-spacing: -0.01em;
}

.ljb-header__logo-text span {
    color: #7c6a9e;
}

/* Navigation */
.ljb-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ljb-nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a4a5a;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.ljb-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7c6a9e;
    transition: width 0.25s ease;
}

.ljb-nav__link:hover::after,
.ljb-nav__link--active::after {
    width: 100%;
}

.ljb-nav__link:hover {
    color: #7c6a9e;
}

/* Mobile toggle */
.ljb-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.ljb-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #3d3d4a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */
.ljb-hero {
    position: relative;
    padding: 100px 0 90px;
    background: linear-gradient(135deg, #e8def0 0%, #d5cce3 50%, #c4b8d8 100%);
    overflow: hidden;
}

.ljb-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 138, 191, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ljb-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 106, 158, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ljb-hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.ljb-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 106, 158, 0.12);
    color: #5d4a7a;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.ljb-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.ljb-hero p {
    font-size: 1.1rem;
    color: #4a4a5e;
    max-width: 680px;
    margin: 0 auto 12px;
    line-height: 1.8;
}

.ljb-hero .ljb-btn-group {
    justify-content: center;
    margin-top: 32px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.ljb-trust {
    background: #ffffff;
    border-bottom: 1px solid #e8e2ee;
    padding: 36px 0;
}

.ljb-trust__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ljb-trust__item {
    text-align: center;
    padding: 16px 12px;
}

.ljb-trust__icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    background: #f0ebf5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ljb-trust__title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.ljb-trust__desc {
    font-size: 0.82rem;
    color: #6a6a7a;
    line-height: 1.5;
}

/* ============================================
   PLATFORM CARDS
   ============================================ */
.ljb-platform-card {
    display: grid;
    grid-template-columns: 200px 1fr 220px;
    grid-template-rows: auto auto 1fr;
    gap: 28px;
    align-items: start;
    background: #ffffff;
    border: 1px solid #e8e2ee;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(124, 106, 158, 0.06);
    transition: box-shadow 0.3s ease;
}

.ljb-platform-card:hover {
    box-shadow: 0 8px 32px rgba(124, 106, 158, 0.12);
}

.ljb-platform-card__image {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 140px;
    background: #f0ebf5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #7c6a9e;
    overflow: hidden;
}

.ljb-platform-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ljb-platform-card__compliance {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
}

.ljb-platform-card__content {
    grid-column: 2;
    grid-row: 1 / 3;
}

.ljb-platform-card__actions {
    grid-column: 3;
    grid-row: 1 / 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: center;
}

.ljb-platform-card__content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.ljb-platform-card__content p {
    font-size: 0.92rem;
    color: #4a4a5a;
    margin-bottom: 10px;
    line-height: 1.7;
}

.ljb-platform-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.ljb-platform-card__tag {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: #f0ebf5;
    color: #5d4a7a;
    border-radius: 6px;
    font-weight: 500;
}

.ljb-platform-card__score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ljb-platform-card__score-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #7c6a9e;
}

.ljb-platform-card__score-label {
    font-size: 0.75rem;
    color: #8a8a9a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ljb-platform-card__compliance {
    grid-column: 1;
    width: 100%;
    margin-top: -12px;
}

.ljb-compliance-badge {
    display: block;
    font-size: 0.7rem;
    color: #6a6a7a;
    background: #faf8fc;
    border: 1px solid #ddd4e8;
    padding: 8px 10px;
    border-radius: 6px;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.ljb-platform-card__criteria {
    margin-top: 16px;
    padding: 14px;
    background: #f8f5fb;
    border: 1px solid #e8e0f0;
    border-radius: 8px;
}

.ljb-criteria-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5d4a7a;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ljb-criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
    color: #4a4a5a;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 8px;
}

.ljb-criteria-list li {
    padding: 0;
    margin: 0;
    line-height: 1.5;
}

.ljb-criteria-list li::before {
    content: '✓ ';
    color: #7c6a9e;
    font-weight: 600;
    margin-right: 4px;
}

/* ============================================
   CRITERIA / FEATURES
   ============================================ */
.ljb-criterion {
    background: #ffffff;
    border: 1px solid #e8e2ee;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.ljb-criterion:hover {
    box-shadow: 0 4px 20px rgba(124, 106, 158, 0.1);
}

.ljb-criterion__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #e8def0, #d5cce3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.ljb-criterion h4 {
    margin-bottom: 10px;
}

.ljb-criterion p {
    font-size: 0.9rem;
    color: #5a5a6a;
    line-height: 1.7;
}

/* ============================================
   STEPS / PROCESS
   ============================================ */
.ljb-steps {
    counter-reset: step-counter;
}

.ljb-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e8e2ee;
    border-radius: 12px;
    transition: box-shadow 0.2s;
}

.ljb-step:hover {
    box-shadow: 0 2px 12px rgba(124, 106, 158, 0.08);
}

.ljb-step__number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b8a9d4, #7c6a9e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.ljb-step__content h4 {
    margin-bottom: 6px;
}

.ljb-step__content p {
    font-size: 0.92rem;
    color: #5a5a6a;
    margin-bottom: 0;
}

/* ============================================
   FAQ
   ============================================ */
.ljb-faq {
    max-width: 780px;
    margin: 0 auto;
}

.ljb-faq__item {
    border: 1px solid #e8e2ee;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #ffffff;
    overflow: hidden;
}

.ljb-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    transition: background 0.2s;
}

.ljb-faq__question:hover {
    background: #f8f5fb;
}

.ljb-faq__question .ljb-faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #7c6a9e;
}

.ljb-faq__item--open .ljb-faq__question .ljb-faq__icon {
    transform: rotate(180deg);
}

.ljb-faq__answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
}

.ljb-faq__item--open .ljb-faq__answer {
    max-height: 400px;
    padding: 0 22px 18px;
}

.ljb-faq__answer p {
    font-size: 0.92rem;
    color: #5a5a6a;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.ljb-testimonial {
    background: #ffffff;
    border: 1px solid #e8e2ee;
    border-radius: 14px;
    padding: 28px;
    position: relative;
}

.ljb-testimonial::before {
    content: '\201C';
    font-size: 3rem;
    color: #d5cce3;
    position: absolute;
    top: 12px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.ljb-testimonial p {
    font-size: 0.92rem;
    color: #4a4a5a;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
    padding-top: 10px;
}

.ljb-testimonial__author {
    font-weight: 600;
    font-size: 0.85rem;
    color: #7c6a9e;
}

/* ============================================
   INFO HUB
   ============================================ */
.ljb-hub-card {
    background: #ffffff;
    border: 1px solid #e8e2ee;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.2s;
}

.ljb-hub-card:hover {
    box-shadow: 0 6px 24px rgba(124, 106, 158, 0.12);
    transform: translateY(-3px);
}

.ljb-hub-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    background: #f0ebf5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ljb-hub-card h4 {
    margin-bottom: 8px;
}

.ljb-hub-card p {
    font-size: 0.85rem;
    color: #6a6a7a;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.ljb-footer {
    background: #1a1a2e;
    color: #c8c4d8;
    padding: 60px 0 0;
}

.ljb-footer__logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(232, 228, 239, 0.1);
}

.ljb-footer__logo-item {
    height: 50px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: rgba(232, 228, 239, 0.4);
    overflow: hidden;
}

.ljb-footer__logo-item img {
    max-height: 36px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.ljb-footer__logo-item img:hover {
    opacity: 1;
}

.ljb-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.ljb-footer__col h5 {
    color: #e8e4ef;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.ljb-footer__col p {
    font-size: 0.85rem;
    color: #a8a4b8;
    line-height: 1.7;
    margin-bottom: 0;
}

.ljb-footer__links {
    list-style: none;
    padding: 0;
}

.ljb-footer__links li {
    margin-bottom: 10px;
}

.ljb-footer__links a {
    font-size: 0.85rem;
    color: #a8a4b8;
    text-decoration: none;
    transition: color 0.2s;
}

.ljb-footer__links a:hover {
    color: #d5cce3;
}

.ljb-footer__bottom {
    border-top: 1px solid rgba(232, 228, 239, 0.08);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.ljb-footer__bottom p {
    font-size: 0.8rem;
    color: #8884a0;
    margin-bottom: 0;
}

.ljb-footer__responsible {
    background: rgba(124, 106, 158, 0.1);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: #b8b4c8;
    text-align: center;
    line-height: 1.6;
}

/* ============================================
   POPUP 18+
   ============================================ */
.ljb-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ljb-popup-overlay--active {
    display: flex;
}

.ljb-popup {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.ljb-popup__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: #f0ebf5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.ljb-popup h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.ljb-popup p {
    font-size: 0.92rem;
    color: #5a5a6a;
    margin-bottom: 24px;
    line-height: 1.6;
}

.ljb-popup__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ljb-popup__actions .ljb-btn {
    width: 100%;
}

/* ============================================
   COOKIE NOTICE
   ============================================ */
.ljb-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e8e2ee;
    padding: 18px 24px;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.ljb-cookie-notice--active {
    display: block;
}

.ljb-cookie-notice__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ljb-cookie-notice p {
    font-size: 0.88rem;
    color: #4a4a5a;
    margin-bottom: 0;
}

.ljb-cookie-notice__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIBLE SECTION
   ============================================ */
.ljb-responsible-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 106, 158, 0.1);
    border: 1px solid rgba(124, 106, 158, 0.2);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #5d4a7a;
    font-weight: 500;
}

/* ============================================
   TRANSITION / QUOTE BLOCK
   ============================================ */
.ljb-transition {
    background: #f8f5fb;
    border-left: 4px solid #7c6a9e;
    border-radius: 0 12px 12px 0;
    padding: 36px 40px;
    margin: 0;
}

.ljb-transition p {
    font-size: 1.05rem;
    color: #3d3d4a;
    line-height: 1.8;
    font-style: normal;
    margin-bottom: 0;
}

/* ============================================
   INNER PAGE
   ============================================ */
.ljb-page-header {
    background: linear-gradient(135deg, #e8def0 0%, #d5cce3 100%);
    padding: 60px 0 50px;
    text-align: center;
}

.ljb-page-header h1 {
    margin-bottom: 10px;
}

.ljb-page-header p {
    color: #5a5a6a;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.ljb-content {
    padding: 60px 0;
}

.ljb-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.ljb-content h2:first-child {
    margin-top: 0;
}

.ljb-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.ljb-content ul, .ljb-content ol {
    margin: 12px 0 24px;
    padding-left: 24px;
}

.ljb-content li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #4a4a5a;
}

/* Form */
.ljb-form {
    max-width: 560px;
    margin: 0 auto;
}

.ljb-form__group {
    margin-bottom: 20px;
}

.ljb-form__group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.ljb-form__group input,
.ljb-form__group textarea,
.ljb-form__group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d5cce3;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #2d2d2d;
    background: #ffffff;
    transition: border-color 0.2s;
}

.ljb-form__group input:focus,
.ljb-form__group textarea:focus {
    outline: none;
    border-color: #7c6a9e;
    box-shadow: 0 0 0 3px rgba(124, 106, 158, 0.1);
}

.ljb-form__group textarea {
    min-height: 140px;
    resize: vertical;
}

.ljb-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ljb-form__checkbox input {
    width: auto;
    margin-top: 4px;
}

.ljb-form__checkbox label {
    font-weight: 400;
    font-size: 0.88rem;
    color: #5a5a6a;
    margin-bottom: 0;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.ljb-thankyou {
    text-align: center;
    padding: 80px 20px;
}

.ljb-thankyou__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: #e8def0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .ljb-platform-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ljb-platform-card__image {
        height: 120px;
    }

    .ljb-platform-card__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .ljb-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ljb-footer__logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .ljb-trust__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .ljb-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid #e8e2ee;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }

    .ljb-nav--open {
        display: flex;
    }

    .ljb-mobile-toggle {
        display: flex;
    }

    .ljb-hero {
        padding: 60px 0 50px;
    }

    .ljb-hero h1 {
        font-size: 1.8rem;
    }

    .ljb-grid--2,
    .ljb-grid--3,
    .ljb-grid--4,
    .ljb-grid--5 {
        grid-template-columns: 1fr;
    }

    .ljb-trust__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ljb-footer__grid {
        grid-template-columns: 1fr;
    }

    .ljb-footer__logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .ljb-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .ljb-cookie-notice__inner {
        flex-direction: column;
        text-align: center;
    }

    .ljb-section {
        padding: 40px 0;
    }

    .ljb-btn-group {
        justify-content: center;
    }

    .ljb-platform-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .ljb-trust__grid {
        grid-template-columns: 1fr;
    }

    .ljb-footer__logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes ljb-fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.ljb-animate-in {
    animation: ljb-fadeIn 0.5s ease forwards;
}

/* ============================================
   MISC
   ============================================ */
.ljb-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #d5cce3, transparent);
    margin: 0;
    border: none;
}

.ljb-text-center { text-align: center; }
.ljb-mt-20 { margin-top: 20px; }
.ljb-mt-40 { margin-top: 40px; }
.ljb-mb-40 { margin-bottom: 40px; }
.ljb-hidden { display: none; }

/* Star rating visual */
.ljb-stars {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.ljb-stars__star {
    color: #d5cce3;
    font-size: 1.1rem;
}

.ljb-stars__star--filled {
    color: #7c6a9e;
}
