/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/

/* =========================================================
   LOGICIEL-KINE.FR — PREMIUM LIGHT TYPO
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root{

    --bg:#f5f7fc;
    --card:#ffffff;

    --text:#101828;
    --text-light:#667085;

    --primary:#3767ff;
    --primary2:#6a4cff;

    --border:#edf1f7;

    --radius:30px;

    --shadow:
        0 10px 30px rgba(15,23,42,.04),
        0 2px 8px rgba(15,23,42,.03);

}

/* =========================================================
   BASE
========================================================= */

body{

    background:
        linear-gradient(
            to bottom,
            #fafcff 0%,
            #f4f7fc 100%
        );

    font-family:'Inter',sans-serif;

    font-size:15px;

    line-height:1.75;

    color:var(--text);

    font-weight:400;

    -webkit-font-smoothing:antialiased;
}

/* =========================================================
   CONTAINER
========================================================= */

.grid-container{
    max-width:1360px;
}

/* =========================================================
   HEADER
========================================================= */

.site-header{

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(15,23,42,.04);

    position:sticky;

    top:0;

    z-index:999;
}

.inside-header{
    padding:24px 0;
}

/* =========================================================
   LOGO
========================================================= */

.main-title{
    margin:0;
}

.main-title a{

    font-size:26px;

    font-weight:700;

    letter-spacing:-1px;

    color:#0f172a;

    text-decoration:none;

    display:flex;

    align-items:center;

    gap:14px;
}

/* logo icon */

.main-title a::before{

    content:'';

    width:38px;
    height:38px;

    border-radius:12px;

    background:
        linear-gradient(
            135deg,
            #76b7ff,
            #3767ff 50%,
            #6a4cff
        );

    transform:rotate(45deg);

    box-shadow:
        0 8px 18px rgba(55,103,255,.15);
}

/* =========================================================
   NAV
========================================================= */

.main-navigation .main-nav ul li a{

    color:#3767ff;

    font-size:12px;

    font-weight:600;

    letter-spacing:0;
}

/* =========================================================
   SPACING
========================================================= */

.site-content{
    padding-top:40px;
}

/* =========================================================
   LAYOUT
========================================================= */

.content-area{
    width:69%;
}

.sidebar{
    width:31%;
}

/* =========================================================
   MAIN CARD
========================================================= */

.inside-article{

    background:rgba(255,255,255,.85);

    border-radius:34px;

    padding:52px;

    border:1px solid rgba(255,255,255,.9);

    box-shadow:var(--shadow);

    position:relative;

    overflow:hidden;
}

/* glow */

.inside-article::after{

    content:'';

    position:absolute;

    right:-120px;
    top:-120px;

    width:320px;
    height:320px;

    background:
        radial-gradient(
            circle,
            rgba(106,76,255,.08) 0%,
            rgba(55,103,255,.04) 40%,
            transparent 72%
        );

    pointer-events:none;
}

/* =========================================================
   HERO TITLE
========================================================= */

.entry-title{

    font-size:58px;

    line-height:1.04;

    letter-spacing:-3px;

    font-weight:700;

    max-width:700px;

    margin-bottom:28px;

    color:#0f172a;

    position:relative;

    padding-left:34px;
}

/* vertical line */

.entry-title::before{

    content:'';

    position:absolute;

    left:0;
    top:6px;

    width:3px;
    height:220px;

    border-radius:30px;

    background:
        linear-gradient(
            to bottom,
            #3767ff,
            #a05dff
        );
}

/* =========================================================
   INTRO
========================================================= */

.entry-content > p:first-of-type{

    font-size:17px;

    line-height:1.9;

    color:#667085;

    max-width:760px;

    margin-bottom:42px;

    padding-left:34px;
}

/* =========================================================
   TITLES
========================================================= */

h2{

    font-size:18px;

    font-weight:700;

    letter-spacing:-0.5px;

    margin-top:50px;

    margin-bottom:18px;

    color:#101828;
}

h3{

    font-size:15px;

    font-weight:700;

    margin-bottom:14px;
}

p{
    color:#667085;
}

/* =========================================================
   FEATURES
========================================================= */

.entry-content ul{

    display:flex;

    flex-wrap:wrap;

    gap:34px;

    padding-left:0;

    margin-bottom:40px;
}

.entry-content ul li{

    list-style:none;

    position:relative;

    padding-left:38px;

    font-size:14px;

    line-height:1.55;

    color:#344054;

    font-weight:500;

    max-width:150px;
}

/* check */

.entry-content ul li::before{

    content:'✓';

    position:absolute;

    left:0;
    top:1px;

    width:26px;
    height:26px;

    border-radius:50%;

    background:#edf9ef;

    color:#2cab55;

    font-size:14px;

    font-weight:700;

    display:flex;

    align-items:center;
    justify-content:center;
}

/* =========================================================
   HR
========================================================= */

.wp-block-separator{

    border:none;

    height:1px;

    background:#edf1f7;

    margin:40px 0;
}

/* =========================================================
   BUTTONS
========================================================= */

.wp-element-button,
button,
input[type="submit"]{

    background:
        linear-gradient(
            135deg,
            #3767ff,
            #6a4cff
        );

    color:white !important;

    border:none;

    border-radius:16px;

    padding:15px 28px;

    font-size:15px;

    font-weight:600;

    box-shadow:
        0 10px 25px rgba(55,103,255,.18);

    transition:.25s ease;
}

.wp-element-button:hover,
button:hover,
input[type="submit"]:hover{

    transform:translateY(-2px);

    box-shadow:
        0 16px 34px rgba(55,103,255,.20);
}

/* =========================================================
   SIDEBAR
========================================================= */

.sidebar .widget{

    background:white;

    border-radius:30px;

    padding:36px;

    border:1px solid rgba(15,23,42,.04);

    box-shadow:var(--shadow);

    margin-bottom:32px;
}

/* widget titles */

.sidebar .widget h2{

    font-size:18px;

    font-weight:700;

    margin-top:0;

    margin-bottom:30px;

    position:relative;

    padding-bottom:16px;
}

.sidebar .widget h2::after{

    content:'';

    position:absolute;

    left:0;
    bottom:0;

    width:42px;
    height:3px;

    border-radius:30px;

    background:
        linear-gradient(
            90deg,
            #3767ff,
            #6a4cff
        );
}

/* =========================================================
   SEARCH
========================================================= */

.wp-block-search__inside-wrapper{
    gap:14px;
}

.wp-block-search__input{

    border:1px solid #edf1f7;

    border-radius:16px;

    height:54px;

    padding:0 18px;

    font-size:14px;

    color:#101828;

    background:white;
}

.wp-block-search__input:focus{
    outline:none;
    border-color:#3767ff;
}

/* =========================================================
   TABLE
========================================================= */

.wp-block-table table{

    border-collapse:separate;

    border-spacing:0;

    overflow:hidden;

    border-radius:22px;

    background:white;

    box-shadow:var(--shadow);

    border:none;
}

.wp-block-table th{

    background:#0f172a;

    color:white;

    font-size:12px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.4px;

    padding:18px;
}

.wp-block-table td{

    padding:18px;

    border-bottom:1px solid #edf1f7;

    font-size:14px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer{

    margin-top:70px;

    background:white;

    border-top:1px solid #edf1f7;

    padding:36px 0;
}

.site-info{

    color:#98a2b3;

    font-size:13px;
}

.site-info a{
    color:#3767ff;
}

/* =========================================================
   HOMEPAGE PREMIUM SECTIONS
   LOGICIEL-KINE.FR
========================================================= */

/* =========================================================
   GENERIC SECTIONS
========================================================= */

section{

    position:relative;

    margin-bottom:42px;
}

.section-title{

    font-size:34px;

    line-height:1.15;

    letter-spacing:-1.5px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:18px;
}

.section-description{

    font-size:16px;

    line-height:1.9;

    color:#667085;

    max-width:850px;

    margin-bottom:36px;
}

/* =========================================================
   HERO
========================================================= */

.homepage-hero{

    position:relative;

    overflow:hidden;

    padding-bottom:30px;
}

/* glow */

.homepage-hero::after{

    content:'';

    position:absolute;

    right:-180px;
    top:-180px;

    width:520px;
    height:520px;

    background:
        radial-gradient(
            circle,
            rgba(55,103,255,.10) 0%,
            rgba(106,76,255,.06) 40%,
            transparent 72%
        );

    pointer-events:none;
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#edf4ff;

    color:#3767ff;

    padding:12px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    margin-bottom:26px;

    border:1px solid rgba(55,103,255,.08);
}

.hero-title{

    font-size:68px;

    line-height:1.02;

    letter-spacing:-4px;

    font-weight:700;

    max-width:900px;

    margin-bottom:28px;

    color:#0f172a;
}

.hero-description{

    font-size:18px;

    line-height:1.9;

    color:#667085;

    max-width:820px;

    margin-bottom:18px;
}

.hero-description.secondary{

    font-size:15px;

    max-width:760px;
}

/* =========================================================
   TRUST LIST
========================================================= */

.hero-trust-list{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-top:38px;

    margin-bottom:42px;
}

.hero-trust-list span{

    display:flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.9);

    border-radius:18px;

    padding:14px 18px;

    font-size:14px;

    font-weight:600;

    color:#344054;

    box-shadow:var(--shadow);
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

    margin-top:12px;
}

.btn-primary,
.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-height:56px;

    padding:0 28px;

    border-radius:18px;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:.25s ease;
}

.btn-primary{

    background:
        linear-gradient(
            135deg,
            #3767ff,
            #6a4cff
        );

    color:white;

    box-shadow:
        0 14px 28px rgba(55,103,255,.16);
}

.btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:
        0 18px 34px rgba(55,103,255,.20);
}

.btn-secondary{

    background:rgba(255,255,255,.7);

    border:1px solid rgba(15,23,42,.06);

    color:#101828;

    backdrop-filter:blur(10px);
}

.btn-secondary:hover{

    transform:translateY(-2px);

    background:white;
}

/* =========================================================
   SOFTWARE GRID
========================================================= */

.software-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(160px,1fr));

    gap:18px;

    margin-top:36px;
}

.software-card{

    background:rgba(255,255,255,.78);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.9);

    border-radius:24px;

    padding:28px 20px;

    text-align:center;

    font-size:15px;

    font-weight:700;

    color:#0f172a;

    box-shadow:var(--shadow);

    transition:.25s ease;
}

.software-card:hover{

    transform:translateY(-4px);
}

/* =========================================================
   TRUST CONTENT
========================================================= */

.trust-content{

    margin-top:34px;

    font-size:16px;

    line-height:1.9;

    color:#667085;

    max-width:820px;
}

/* =========================================================
   TABLE CTA
========================================================= */

.section-cta{

    margin-top:34px;
}

/* =========================================================
   CRITERIA GRID
========================================================= */

.criteria-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:24px;
}

.criteria-card{

    background:rgba(255,255,255,.82);

    border-radius:28px;

    padding:34px;

    border:1px solid rgba(255,255,255,.95);

    box-shadow:var(--shadow);

    transition:.25s ease;
}

.criteria-card:hover{

    transform:translateY(-5px);
}

.criteria-card h3{

    font-size:18px;

    margin-bottom:14px;

    color:#101828;
}

.criteria-card p{

    font-size:15px;

    line-height:1.8;

    color:#667085;

    margin-bottom:0;
}

/* =========================================================
   BEST SOFTWARE
========================================================= */

.best-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap:28px;
}

.best-card{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,.84);

    backdrop-filter:blur(10px);

    border-radius:34px;

    padding:40px;

    border:1px solid rgba(255,255,255,.95);

    box-shadow:var(--shadow);

    transition:.25s ease;
}

.best-card::after{

    content:'';

    position:absolute;

    right:-80px;
    top:-80px;

    width:220px;
    height:220px;

    background:
        radial-gradient(
            circle,
            rgba(106,76,255,.08),
            transparent 70%
        );
}

.best-card:hover{

    transform:translateY(-6px);
}

.card-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#edf4ff;

    color:#3767ff;

    border-radius:999px;

    padding:10px 14px;

    font-size:12px;

    font-weight:700;

    margin-bottom:22px;
}

.best-card h3{

    font-size:30px;

    letter-spacing:-1px;

    margin-bottom:18px;
}

.best-card p{

    font-size:15px;

    line-height:1.85;

    margin-bottom:26px;
}

.card-link{

    color:#3767ff;

    font-size:14px;

    font-weight:700;

    text-decoration:none;
}

.card-link:hover{
    text-decoration:underline;
}

/* =========================================================
   GUIDE LINKS / IA LINKS
========================================================= */

.guide-links,
.ia-links{

    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(240px,1fr));
    gap:0px;
    margin-top:30px;
}

.guide-links a,
.ia-links a{
    display:flex;
    align-items:center;
    min-height:90px;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.95);
    border-radius:24px;
    padding:24px;
    text-decoration:none;
    color:#101828;
    font-size:15px;
    font-weight:600;
    line-height:1.6;
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.guide-links a:hover,
.ia-links a:hover{
    transform:translateY(-4px);
    color:#3767ff;
}
/* =========================================================
   RANK MATH TOC COMPACT
========================================================= */

.wp-block-rank-math-toc-block{
    width:100%;
    max-width:100%;
    overflow:hidden;
    box-sizing:border-box;
    margin:24px auto;
    padding:18px 20px;
    border-radius:16px;
    background:#fff;
    border:1px solid #e5e7eb;
}

/* UL */

.wp-block-rank-math-toc-block nav ul{

    display:flex !important;
    flex-direction:column !important;
    width:100%;
    margin:0;
    padding:0;
	gap:0px;
}

/* LI */

.wp-block-rank-math-toc-block nav li{
    width:100%;
    max-width:100% !important;
    list-style:none;
    padding-left:0 !important;
    box-sizing:border-box;
}

/* reset */

.wp-block-rank-math-toc-block nav li::before{
    display:none !important;
}

/* liens */

.wp-block-rank-math-toc-block nav a{
    display:block;
    width:100%;
    text-decoration:none;
    line-height:1.45;
    word-break:break-word;
    transition:.2s ease;
}

/* niveau principal */

.wp-block-rank-math-toc-block > nav > ul > li{
    margin-bottom:10px;
}

.wp-block-rank-math-toc-block > nav > ul > li > a{
    background:#f8fafc;
    padding:12px 14px;
    border-radius:10px;
    font-size:17px;
    font-weight:700;
    color:#101828;
}

/* hover */

.wp-block-rank-math-toc-block > nav > ul > li > a:hover{

    background:#eff6ff;

    color:#2563eb;
}

/* sous-listes */

.wp-block-rank-math-toc-block nav ul ul{

    margin-top:6px;

    margin-left:14px;

    padding-left:14px;

    border-left:1px dashed #d1d5db;
}

/* sous niveaux */

.wp-block-rank-math-toc-block nav ul ul li{

    margin-bottom:2px;
}

.wp-block-rank-math-toc-block nav ul ul li > a{

    padding:6px 8px;

    font-size:13px;

    color:#4b5563;

    border-radius:6px;
}

/* hover sous niveaux */

.wp-block-rank-math-toc-block nav ul ul li > a:hover{

    background:#f3f4f6;

    color:#111827;
}
/* =========================================================
   RANK MATH HTML SITEMAP FIX
========================================================= */

.rank-math-html-sitemap__list{

    display:block !important;

    columns:1 !important;

    column-count:1 !important;

    padding-left:20px !important;

    margin:0 !important;
}

.rank-math-html-sitemap__item{

    display:list-item !important;

    width:100% !important;

    max-width:100% !important;

    margin-bottom:14px !important;

    padding-left:0 !important;
}

/* enlève le style check vert */

.rank-math-html-sitemap__item::before{

    display:none !important;
}

/* sous listes */

.rank-math-html-sitemap__item ul{

    display:block !important;

    margin-top:10px !important;

    margin-left:20px !important;

    padding-left:20px !important;
}

/* liens */

.rank-math-html-sitemap__link{

    text-decoration:none;

    color:#3767ff;
}

/* dates */

.rank-math-html-sitemap__date{

    color:#667085;

    font-size:14px;
}
/* =========================================================
   PREMIUM FOOTER
========================================================= */

.premium-footer{

    margin-top:80px;

    padding:70px 0 30px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.96),
            rgba(248,250,252,.98)
        );

    border-top:1px solid rgba(15,23,42,.06);

    position:relative;

    overflow:hidden;
}

/* glow */

.premium-footer::before{

    content:'';

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    background:
        radial-gradient(
            circle,
            rgba(55,103,255,.08),
            transparent 70%
        );

    pointer-events:none;
}

.premium-footer-container{

    max-width:1360px;

    margin:auto;

    padding:0 40px;

    position:relative;

    z-index:2;
}

/* =========================================================
   TOP
========================================================= */

.premium-footer-top{

    display:flex;

    justify-content:space-between;

    gap:80px;

    padding-bottom:50px;

    border-bottom:1px solid #edf1f7;
}

/* =========================================================
   BRAND
========================================================= */

.premium-footer-brand{

    max-width:420px;
}

.footer-logo{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:24px;
}

.footer-logo span{

    width:38px;
    height:38px;

    border-radius:12px;

    background:
        linear-gradient(
            135deg,
            #76b7ff,
            #3767ff 50%,
            #6a4cff
        );

    transform:rotate(45deg);

    box-shadow:
        0 8px 18px rgba(55,103,255,.15);
}

.footer-logo strong{

    font-size:24px;

    letter-spacing:-1px;

    color:#0f172a;
}

.premium-footer-brand p{

    color:#667085;

    line-height:1.9;

    font-size:15px;
}

/* =========================================================
   NAV
========================================================= */

.premium-footer-nav{

    display:flex;

    gap:70px;
}

.footer-column h3{

    font-size:16px;

    margin-bottom:18px;

    color:#101828;
}

.footer-column ul{

    padding:0;

    margin:0;

    list-style:none;
}

.footer-column li{

    margin-bottom:12px;
}

.footer-column a{

    color:#667085;

    text-decoration:none;

    transition:.2s ease;

    font-size:14px;
}

.footer-column a:hover{

    color:#3767ff;
}

/* =========================================================
   BOTTOM
========================================================= */

.premium-footer-bottom{

    padding-top:28px;

    display:flex;

    justify-content:space-between;

    gap:20px;

    flex-wrap:wrap;
}

.premium-footer-bottom p{

    margin:0;

    font-size:13px;

    color:#98a2b3;
}

.footer-disclaimer{

    text-align:right;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:900px){

    .premium-footer-top{

        flex-direction:column;

        gap:40px;
    }

    .premium-footer-nav{

        flex-direction:column;

        gap:34px;
    }

    .premium-footer-bottom{

        flex-direction:column;

        gap:12px;
    }

    .footer-disclaimer{

        text-align:left;
    }
}

@media(max-width:768px){

    .premium-footer{

        padding:50px 0 24px;
    }

    .premium-footer-container{

        padding:0 24px;
    }

    .footer-logo strong{

        font-size:20px;
    }
}

/* mobile */

@media(max-width:768px){

    .wp-block-rank-math-toc-block{

        padding:14px;
    }

    .wp-block-rank-math-toc-block > nav > ul > li > a{

        font-size:15px;

        padding:10px 12px;
    }

    .wp-block-rank-math-toc-block nav ul ul{

        margin-left:10px;

        padding-left:10px;
    }

    .wp-block-rank-math-toc-block nav ul ul li > a{

        font-size:12px;

        padding:5px 6px;
    }
}




/* =========================================================
   MOBILE
========================================================= */

@media(max-width:1200px){

    .entry-title{
        font-size:48px;
    }
        .hero-title{
        font-size:56px;
    }

}

@media(max-width:1024px){

    .content-area,
    .sidebar{
        width:100%;
    }

    .inside-article{
        padding:34px;
    }

    .entry-title{

        font-size:40px;

        padding-left:24px;
    }

    .entry-title::before{
        height:160px;
    }

    .entry-content > p:first-of-type{

        padding-left:24px;

        font-size:16px;
    }

    .sidebar{
        margin-top:30px;
    }
        .hero-title{

        font-size:46px;

        letter-spacing:-3px;
    }

    .section-title{
        font-size:28px;
    }

}

@media(max-width:768px){

    .entry-title{

        font-size:34px;

        letter-spacing:-2px;
    }
	.inside-header{
		padding:24px;
	}

    .inside-article{
        padding:28px;
        border-radius:24px;
    }

    .entry-content ul{
        flex-direction:column;
        gap:20px;
    }
        .hero-title{

        font-size:36px;

        line-height:1.08;

        letter-spacing:-2px;
    }

    .hero-description{
        font-size:16px;
    }

    .hero-buttons{

        flex-direction:column;

        align-items:stretch;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .criteria-card,
    .best-card{
        padding:28px;
    }

    .section-title{
        font-size:24px;
    }

}