/* ============================================================
   JUPITAR — Composants partagés
   Cookies, Calendly modal, Founders, FAQ, Blog, Pages services
   ============================================================ */

/* ===== VIDEO HERO BACKGROUND ===== */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-video-bg video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(1.1) contrast(1.05);
}
.hero-video-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(255, 106, 0, 0.18), transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 106, 0, 0.10), transparent 60%),
        linear-gradient(180deg, rgba(5, 8, 15, 0.7) 0%, rgba(10, 15, 28, 0.85) 50%, rgba(17, 24, 39, 0.9) 100%);
}
@media (max-width: 1024px) {
    .hero-video-bg { display: none; }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    position: relative;
    margin-right: 12px;
}
.lang-current {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    border-radius: 100px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all .25s var(--ease);
}
.lang-current:hover {
    border-color: var(--orange);
    background: rgba(255, 106, 0, 0.10);
}
.lang-flag {
    width: 18px; height: 18px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: inline-block;
}
.flag-fr { background: linear-gradient(90deg, #002395 33%, #fff 33% 66%, #ED2939 66%); }
.flag-en { background: linear-gradient(135deg, #012169 0%, #fff 25%, #C8102E 50%, #fff 75%, #012169 100%); }
.flag-nl { background: linear-gradient(180deg, #AE1C28 33%, #fff 33% 66%, #21468B 66%); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--space-1);
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    padding: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all .25s var(--ease);
    z-index: 100;
}
.lang-dropdown.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.lang-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: background .2s;
}
.lang-dropdown a:hover {
    background: rgba(255, 106, 0, 0.10);
    color: var(--orange);
}
.lang-dropdown a.current {
    background: rgba(255, 106, 0, 0.15);
    color: var(--orange);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 540px;
    margin: 0 auto;
    background: rgba(10, 15, 28, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 106, 0, 0.30);
    border-radius: 16px;
    padding: 20px 22px;
    color: var(--white);
    z-index: 95;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: translateY(150%);
    transition: transform .5s var(--ease-bounce);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
    display: flex; gap: 16px;
    align-items: flex-start;
}
.cookie-icon {
    width: 44px; height: 44px;
    background: rgba(255, 106, 0, 0.15);
    color: var(--orange);
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 20px;
    flex-shrink: 0;
}
.cookie-content { flex: 1; min-width: 0; }
.cookie-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.cookie-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
    margin-bottom: 14px;
}
.cookie-content p a {
    color: var(--orange);
    text-decoration: underline;
}
.cookie-actions {
    display: flex; gap: 8px; flex-wrap: wrap;
}
.cookie-actions button {
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s var(--ease);
    border: 1px solid transparent;
}
.cookie-actions .accept {
    background: var(--orange);
    color: var(--white);
}
.cookie-actions .accept:hover {
    background: var(--orange-bright);
    transform: translateY(-1px);
}
.cookie-actions .reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.20);
}
.cookie-actions .reject:hover {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

/* ===== CALENDLY MODAL ===== */
.cal-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 15, 0.88);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFade .3s var(--ease);
}
.cal-modal.open { display: flex; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.cal-modal-inner {
    background: var(--white);
    border-radius: 18px;
    width: 100%;
    max-width: 1000px;
    height: 720px;
    max-height: 92vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    animation: modalSlideUp .4s var(--ease-bounce);
}
@keyframes modalSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cal-modal-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 38px; height: 38px;
    background: var(--space-1);
    color: var(--white);
    border-radius: 50%;
    display: grid; place-items: center;
    cursor: pointer;
    z-index: 5;
    transition: all .25s var(--ease);
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.cal-modal-close:hover {
    background: var(--orange);
    transform: rotate(90deg);
}
.cal-modal iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== FOUNDERS / LEADERSHIP SECTION ===== */
.leadership {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.leader-card {
    background: linear-gradient(180deg, var(--white), var(--off-white));
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .45s var(--ease);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
}
.leader-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-bright), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .5s var(--ease);
}
.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 106, 0, 0.18);
    border-color: rgba(255, 106, 0, 0.30);
}
.leader-card:hover::before { transform: scaleX(1); }
.leader-photo {
    flex-shrink: 0;
    width: 200px;
    align-self: stretch;
    overflow: hidden;
    position: relative;
    background: var(--off-white);
}
.leader-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform .8s var(--ease);
    display: block;
}
.leader-card:hover .leader-photo img {
    transform: scale(1.06);
}
.leader-photo::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 40px;
    background: linear-gradient(270deg, rgba(255,255,255,0.6), transparent);
    pointer-events: none;
}
.leader-body {
    padding: 26px 28px 28px;
    position: relative;
    flex: 1;
    min-width: 0;
}
.leader-role-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(255, 106, 0, 0.3);
}
.leader-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--space-1);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.leader-title {
    font-size: 14px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 18px;
}
.leader-quote {
    background: rgba(255, 106, 0, 0.05);
    border-left: 3px solid var(--orange);
    padding: 14px 18px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 18px;
    font-style: italic;
    color: var(--gray-700);
    font-size: 14.5px;
    line-height: 1.6;
}
.leader-bio {
    color: var(--gray-500);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 22px;
}
.leader-linkedin {
    display: inline-flex; align-items: center; gap: 8px;
    color: #0077b5;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(0, 119, 181, 0.08);
    border: 1px solid rgba(0, 119, 181, 0.20);
    transition: all .3s var(--ease);
}
.leader-linkedin:hover {
    background: #0077b5;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 120px 0;
    background: var(--off-white);
}
.faq-list {
    max-width: 840px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all .35s var(--ease);
}
.faq-item.open {
    border-color: rgba(255, 106, 0, 0.30);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.10);
}
.faq-q {
    width: 100%;
    padding: 22px 26px;
    background: transparent;
    text-align: left;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--space-1);
    transition: color .25s;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
    width: 32px; height: 32px;
    background: rgba(255, 106, 0, 0.10);
    color: var(--orange);
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: all .35s var(--ease);
    font-size: 14px;
}
.faq-item.open .faq-icon {
    background: var(--orange);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
    padding: 0 26px;
}
.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 26px 22px;
}
.faq-a p {
    color: var(--gray-500);
    line-height: 1.7;
    font-size: 15px;
}
.faq-a p + p { margin-top: 10px; }

/* ===== LEAD MAGNET ===== */
.lead-magnet {
    padding: 100px 0;
    background:
        linear-gradient(135deg, rgba(255, 106, 0, 0.10), rgba(255, 106, 0, 0.02)),
        var(--white);
    position: relative;
    overflow: hidden;
}
.lead-magnet::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.18), transparent 70%);
    border-radius: 50%;
}
.lead-magnet-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.lm-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--space-1);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.lm-content h2 .text-orange { color: var(--orange); }
.lm-content p {
    font-size: 16.5px;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 22px;
}
.lm-bullets {
    margin-bottom: 28px;
}
.lm-bullets li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-700);
}
.lm-bullets i {
    color: var(--orange);
    font-size: 16px;
    margin-top: 3px;
}
.lm-form {
    display: flex; gap: 10px;
    max-width: 480px;
    flex-wrap: wrap;
}
.lm-form input {
    flex: 1;
    min-width: 220px;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-100);
    border-radius: 100px;
    font-size: 15px;
    outline: none;
    transition: border-color .25s;
}
.lm-form input:focus { border-color: var(--orange); }
.lm-form button { white-space: nowrap; }
.lm-note {
    font-size: 12.5px;
    color: var(--gray-500);
    margin-top: 12px;
}
.lm-note i { color: var(--orange); margin-right: 4px; }

.lm-visual {
    position: relative;
    display: flex; justify-content: center;
}
.lm-ebook {
    width: 280px;
    height: 380px;
    background: linear-gradient(135deg, var(--space-1), var(--space-3));
    border-radius: 8px 18px 18px 8px;
    padding: 32px 26px;
    color: var(--white);
    box-shadow:
        -8px 0 0 -1px rgba(255, 106, 0, 0.5),
        0 30px 60px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-15deg);
    position: relative;
    overflow: hidden;
    animation: ebookFloat 6s ease-in-out infinite;
}
@keyframes ebookFloat {
    0%,100% { transform: perspective(1000px) rotateY(-15deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-15deg) translateY(-12px); }
}
.lm-ebook::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.3), transparent 60%);
}
.lm-ebook-tag {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.10em;
    margin-bottom: 16px;
    position: relative;
}
.lm-ebook h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    position: relative;
}
.lm-ebook h3 .text-orange { color: var(--orange-bright); }
.lm-ebook p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 28px;
    position: relative;
}
.lm-ebook-pages {
    position: absolute;
    bottom: 30px; left: 26px; right: 26px;
    display: flex; flex-direction: column; gap: 6px;
}
.lm-ebook-line {
    height: 4px;
    background: rgba(255, 106, 0, 0.4);
    border-radius: 2px;
}
.lm-ebook-line:nth-child(2) { width: 80%; }
.lm-ebook-line:nth-child(3) { width: 60%; }

/* ===== INNER PAGES (services, faq, legal, etc.) ===== */
.page-hero {
    padding: 160px 0 80px;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(255, 106, 0, 0.18), transparent 50%),
        linear-gradient(180deg, var(--space-0), var(--space-1));
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero .container { position: relative; z-index: 3; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { color: var(--orange-bright); }
.breadcrumb i { font-size: 10px; opacity: 0.5; }
.page-hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    max-width: 900px;
}
.page-hero h1 .text-orange { color: var(--orange); }
.page-hero p.lead {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    max-width: 720px;
    line-height: 1.65;
    margin-bottom: 26px;
}
.page-hero .btn-group {
    display: flex; gap: 12px; flex-wrap: wrap;
}

/* Service page sections */
.service-detail {
    padding: 100px 0;
    background: var(--white);
}
.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.feature-block {
    background: var(--off-white);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all .35s var(--ease);
    border: 1px solid transparent;
}
.feature-block:hover {
    transform: translateY(-6px);
    background: var(--white);
    border-color: rgba(255, 106, 0, 0.20);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.10);
}
.feature-block .fb-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: var(--white);
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.30);
}
.feature-block h3 {
    font-size: 18px; font-weight: 700;
    color: var(--space-1);
    margin-bottom: 10px;
}
.feature-block p {
    color: var(--gray-500);
    font-size: 14.5px; line-height: 1.6;
}

.service-deliverables {
    background: var(--off-white);
    padding: 80px 0;
}
.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.deliverables-list li {
    padding: 14px 0;
    border-bottom: 1px dashed var(--gray-100);
    display: flex; align-items: center; gap: 12px;
    font-size: 15.5px;
    color: var(--gray-700);
}
.deliverables-list li i {
    color: var(--orange);
    font-size: 18px;
}
.deliverables-list li strong {
    color: var(--space-1);
    font-weight: 600;
}
.deliverables-visual {
    background: linear-gradient(135deg, var(--space-1), var(--space-2));
    border-radius: 22px;
    padding: 40px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.deliverables-stat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.deliverables-stat .stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255, 106, 0, 0.20);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
}
.deliverables-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange-bright), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}
.deliverables-stat span {
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

/* Other services strip */
.other-services {
    padding: 80px 0;
    background: var(--white);
}
.other-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.other-service-card {
    background: var(--off-white);
    padding: 24px 16px;
    border-radius: 14px;
    text-align: center;
    transition: all .35s var(--ease);
    border: 1px solid transparent;
}
.other-service-card:hover {
    background: var(--white);
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.15);
}
.other-service-card i {
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 10px;
}
.other-service-card h4 {
    font-size: 13.5px;
    color: var(--space-1);
    font-weight: 600;
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 18px;
    overflow: hidden;
    transition: all .4s var(--ease);
    display: flex; flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 106, 0, 0.30);
    box-shadow: 0 25px 50px rgba(255, 106, 0, 0.15);
}
.blog-card-img {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--space-1), var(--space-3));
    display: grid; place-items: center;
    color: var(--orange);
    font-size: 42px;
    position: relative;
    overflow: hidden;
}
.blog-card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.3), transparent 60%);
}
.blog-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex; flex-direction: column;
}
.blog-card-meta {
    display: flex; gap: 12px;
    align-items: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 12px;
}
.blog-tag {
    background: rgba(255, 106, 0, 0.10);
    color: var(--orange);
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.blog-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--space-1);
    line-height: 1.35;
    margin-bottom: 10px;
    flex-grow: 1;
}
.blog-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}
.blog-card .read-more {
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap .25s;
}
.blog-card:hover .read-more { gap: 12px; }

.blog-empty {
    text-align: center;
    padding: 60px 30px;
    background: var(--off-white);
    border-radius: 20px;
}
.blog-empty i {
    font-size: 48px;
    color: var(--orange);
    margin-bottom: 18px;
}
.blog-empty h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--space-1);
    margin-bottom: 10px;
}
.blog-empty p {
    color: var(--gray-500);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto;
}

/* ===== LEGAL / PRIVACY PAGES (long text) ===== */
.legal-page {
    padding: 80px 0;
    background: var(--white);
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-700);
    font-size: 15.5px;
    line-height: 1.75;
}
.legal-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--space-1);
    margin: 40px 0 16px;
    letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--space-1);
    margin: 24px 0 10px;
}
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 10px 0 18px 20px; }
.legal-content ul li {
    list-style: disc;
    margin-bottom: 8px;
    padding-left: 4px;
}
.legal-content strong { color: var(--space-1); }
.legal-content a { color: var(--orange); text-decoration: underline; }
.legal-content .legal-meta {
    background: var(--off-white);
    padding: 16px 22px;
    border-radius: 12px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 30px;
    border-left: 3px solid var(--orange);
}

/* ===== SERVICE DETAIL PAGES (new layout) ===== */
.service-detail h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--space-1);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.service-detail h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--space-1);
    margin: 36px 0 18px;
}
.service-detail p {
    color: var(--gray-700);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 14px;
}
.sd-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.sd-main {}
.sd-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; align-self: start; }
.sd-card {
    background: var(--off-white);
    border-radius: 18px;
    padding: 26px 24px;
    border: 1px solid var(--gray-100);
}
.sd-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--space-1);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
}
.sd-card h4 i { color: var(--orange); }
.sd-card ul li {
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 14.5px;
    border-bottom: 1px dashed var(--gray-100);
}
.sd-card ul li:last-child { border-bottom: 0; }
.sd-card ul li strong { color: var(--orange); font-weight: 700; }
.sd-card-cta {
    background: linear-gradient(135deg, var(--space-1), var(--space-2));
    color: var(--white);
    border-color: transparent;
}
.sd-card-cta h4 { color: var(--white); }
.sd-card-cta p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 16px; }

/* Service features list (vertical list, not grid - overrides earlier) */
.service-detail .service-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    grid-template-columns: none;
    margin-bottom: 30px;
}
.service-detail .service-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--off-white);
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: all .3s var(--ease);
}
.service-detail .service-features li:hover {
    background: var(--white);
    border-color: rgba(255, 106, 0, 0.20);
    transform: translateX(4px);
}
.service-detail .service-features li > i {
    width: 42px; height: 42px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: var(--white);
    border-radius: 11px;
    display: grid; place-items: center;
    font-size: 17px;
}
.service-detail .service-features li > div { flex: 1; }
.service-detail .service-features li strong {
    display: block;
    font-size: 16px;
    color: var(--space-1);
    margin-bottom: 4px;
    font-weight: 700;
}
.service-detail .service-features li p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* Method ordered list */
.method-list {
    counter-reset: method;
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.method-list li {
    counter-increment: method;
    position: relative;
    padding: 16px 20px 16px 64px;
    background: var(--off-white);
    border-radius: 12px;
    margin-bottom: 10px;
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.6;
}
.method-list li::before {
    content: counter(method);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: var(--white);
    border-radius: 50%;
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 6px 14px rgba(255, 106, 0, 0.30);
}
.method-list li strong { color: var(--space-1); }

/* Deliverables grid (4 cards horizontal) */
.deliverables-grid {
    display: block;
    background: linear-gradient(135deg, var(--space-1), var(--space-2));
    border-radius: 22px;
    padding: 40px;
    color: var(--white);
    margin-top: 40px;
}
.dg-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}
.dg-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.dg-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255, 106, 0, 0.20);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    transition: all .3s var(--ease);
}
.dg-item:hover {
    background: rgba(255, 106, 0, 0.08);
    border-color: rgba(255, 106, 0, 0.45);
    transform: translateY(-4px);
}
.dg-item i {
    font-size: 26px;
    color: var(--orange-bright);
    margin-bottom: 12px;
}
.dg-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.dg-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Other services cards (.os-card) */
.os-card {
    background: var(--off-white);
    padding: 28px 18px;
    border-radius: 16px;
    text-align: center;
    transition: all .35s var(--ease);
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
}
.os-card:hover {
    background: var(--white);
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(255, 106, 0, 0.15);
}
.os-card i {
    font-size: 28px;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
}
.os-card h4 {
    font-size: 15px;
    color: var(--space-1);
    font-weight: 700;
    margin-bottom: 4px;
}
.os-card p {
    font-size: 12.5px;
    color: var(--gray-500);
    margin: 0;
}

/* FAQ section page-wide variant (long list) */
.faq-page {
    padding: 80px 0;
    background: var(--white);
}
.faq-page .faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-cat-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--space-1);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

/* btn-block helper */
.btn-block { display: flex; width: 100%; justify-content: center; }

/* inner page body offset for fixed header */
body.inner-page { background: var(--white); }

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
    .leadership-grid { grid-template-columns: 1fr; gap: 28px; }
    .leader-photo { width: 160px; }
    .lead-magnet-inner { grid-template-columns: 1fr; gap: 40px; }
    .lm-visual { order: -1; }
    .service-features { grid-template-columns: 1fr 1fr; }
    .deliverables-grid { grid-template-columns: 1fr; gap: 40px; }
    .other-services-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .sd-grid { grid-template-columns: 1fr; gap: 30px; }
    .sd-aside { position: static; }
    .dg-items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .leader-card { flex-direction: column; }
    .leader-photo { width: 100%; height: 260px; }
    .leader-photo img { object-position: center 25%; }
    .leader-photo::after { top: auto; bottom: 0; right: 0; left: 0; width: 100%; height: 60px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.85)); }
    .service-features { grid-template-columns: 1fr; }
    .other-services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .cookie-banner { left: 10px; right: 10px; padding: 16px; }
    .cookie-banner-inner { flex-direction: column; gap: 12px; }
    .cal-modal-inner { height: 100vh; max-height: 100vh; border-radius: 0; }
    .page-hero { padding: 130px 0 60px; }
    .lm-form { flex-direction: column; }
    .lm-form input { min-width: 0; width: 100%; }
}
