:root {
    --ink: #08070d;
    --charcoal: #121019;
    --panel: #1b1624;
    --panel-soft: #241d30;
    --violet: #4d1d7c;
    --violet-deep: #220b3a;
    --gold: #d8ad4f;
    --gold-soft: #f0d48a;
    --copper: #9f5f3f;
    --aqua: #63d7cc;
    --white: #ffffff;
    --muted: #c9bfcc;
    --line: rgba(255, 255, 255, .12);
    --shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--ink);
    color: var(--white);
    line-height: 1.6;
    text-rendering: geometricPrecision;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(240, 212, 138, .12), transparent 22rem),
        radial-gradient(circle at 88% 12%, rgba(99, 215, 204, .08), transparent 28rem),
        #08070d;
    transition: background .18s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: clamp(12px, 1.6vw, 24px);
    padding: 10px clamp(18px, 3vw, 46px);
    background: rgba(8, 7, 13, .78);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(240, 212, 138, .28), 0 16px 34px rgba(0, 0, 0, .3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(12px, 1.4vw, 22px);
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    min-width: 0;
}

.nav a:hover,
.site-footer a:hover {
    color: var(--gold-soft);
}

.nav-client-link {
    margin-left: auto;
}

.header-cta {
    border: 1px solid rgba(216, 173, 79, .52);
    color: var(--gold-soft);
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, .055);
}

.language-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 30px;
    border-radius: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.language-switch a.is-active {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #1a1023;
}

.floating-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: grid;
    gap: 1px;
    min-width: 136px;
    padding: 12px 14px;
    border: 1px solid rgba(240, 212, 138, .42);
    border-radius: 8px;
    background: rgba(10, 7, 16, .82);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .42);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .22s ease, transform .22s ease;
}

.floating-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-float {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 30;
    display: grid;
    gap: 1px;
    min-width: 148px;
    padding: 12px 14px;
    border: 1px solid rgba(99, 215, 204, .42);
    border-radius: 8px;
    background: rgba(9, 25, 21, .86);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .42);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .22s ease, transform .22s ease;
}

.whatsapp-float.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-float span {
    color: var(--aqua);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.whatsapp-float strong {
    font-size: 15px;
}

.floating-cta span {
    color: var(--gold-soft);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.floating-cta strong {
    font-size: 15px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 75px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .82fr);
    align-items: start;
    gap: clamp(28px, 5vw, 70px);
    overflow: hidden;
    padding: clamp(12px, 2vw, 28px) clamp(18px, 5vw, 76px) 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(77, 29, 124, .72), transparent 34%),
        radial-gradient(circle at 74% 24%, rgba(99, 215, 204, .14), transparent 22%),
        linear-gradient(130deg, #06050a 0%, #170d21 48%, #07060b 100%);
}

.hero-aurora {
    position: absolute;
    inset: -28%;
    z-index: 0;
    background:
        conic-gradient(from 180deg at 50% 50%, rgba(77, 29, 124, 0), rgba(77, 29, 124, .42), rgba(99, 215, 204, .16), rgba(216, 173, 79, .18), rgba(77, 29, 124, 0));
    opacity: .58;
    filter: blur(62px);
    animation: auroraDrift 14s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 7, 13, .98) 0%, rgba(8, 7, 13, .56) 52%, rgba(8, 7, 13, .12) 100%),
        linear-gradient(180deg, rgba(216, 173, 79, .1) 0 1px, transparent 1px 100%),
        linear-gradient(90deg, rgba(216, 173, 79, .08) 0 1px, transparent 1px 100%),
        radial-gradient(circle at 72% 36%, rgba(216, 173, 79, .24), transparent 24%);
    background-size: auto, 64px 64px, 64px 64px, auto;
    pointer-events: none;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 28%;
    background: linear-gradient(180deg, transparent, rgba(8, 7, 13, .94));
}

.hero-content,
.hero-person {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-kicker {
    display: inline-flex;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(240, 212, 138, .24);
    border-radius: 6px;
    background: rgba(255, 255, 255, .06);
    color: #f6edd3;
    font-size: 13px;
    font-weight: 800;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 860px;
    margin-bottom: 22px;
    font-size: clamp(42px, 5.3vw, 76px);
    line-height: .98;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(17px, 1.4vw, 21px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(760px, 100%);
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--line);
}

.hero-metrics span {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .055);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.hero-metrics strong {
    color: var(--gold-soft);
    font-size: 18px;
    line-height: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 6px;
    padding: 13px 20px;
    font-family: inherit;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .28) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .55s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:hover::after {
    transform: translateX(120%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    color: #1a1023;
    box-shadow: 0 16px 34px rgba(216, 173, 79, .24);
}

.btn-secondary {
    background: rgba(255, 255, 255, .06);
    color: var(--white);
    border: 1px solid var(--line);
}

.btn-small {
    min-height: 36px;
    padding: 8px 12px;
    background: var(--gold);
    color: #1a1023;
    font-size: 12px;
}

.hero-person {
    align-self: start;
    justify-self: center;
    width: min(560px, 100%);
    height: clamp(600px, 36vw, 660px);
    margin-top: clamp(28px, 2vw, 42px);
    padding: 14px 14px 0;
    border: 1px solid rgba(240, 212, 138, .22);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .015)),
        radial-gradient(circle at 50% 16%, rgba(216, 173, 79, .18), transparent 44%);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
}

.orbit {
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(240, 212, 138, .28);
    border-radius: 50%;
    transform: rotate(-12deg) scaleX(1.12);
    pointer-events: none;
}

.orbit-one {
    animation: orbitFloat 7s ease-in-out infinite;
}

.orbit-two {
    inset: 54px 10px 90px;
    border-color: rgba(99, 215, 204, .18);
    animation: orbitFloat 8s ease-in-out infinite reverse;
}

.hero-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 42% 34%;
    filter: drop-shadow(0 28px 60px rgba(0, 0, 0, .5));
    mask-image:
        linear-gradient(to right, transparent 0, #000 10%, #000 100%),
        linear-gradient(to bottom, #000 0 82%, transparent 100%);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-strip div {
    padding: 28px clamp(18px, 4vw, 52px);
    background: #100d17;
}

.diagnostic {
    background:
        linear-gradient(180deg, #100d17 0%, #08070d 100%);
}

.diagnostic-intro {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, .72fr);
    gap: clamp(26px, 5vw, 72px);
    align-items: end;
    margin-bottom: 28px;
}

.diagnostic-intro h2 {
    margin: 0;
}

.diagnostic-intro::after {
    content: "Diagnostic fiscal populaire";
    display: block;
    padding: 26px;
    border-left: 4px solid var(--gold);
    background: rgba(255, 255, 255, .055);
    color: var(--muted);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.22;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.pain-card {
    min-height: 270px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)),
        radial-gradient(circle at 86% 16%, rgba(99, 215, 204, .11), transparent 34%);
}

.reveal-card {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease, border-color .2s ease;
}

.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pain-card span {
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 900;
}

.pain-card h3 {
    margin: 24px 0 14px;
    font-size: clamp(22px, 2vw, 31px);
    line-height: 1.08;
}

.pain-card p {
    margin: 0;
    color: var(--muted);
}

.diagnostic-quiz,
.pulse-lab {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(320px, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    background:
        linear-gradient(135deg, rgba(99, 215, 204, .11), rgba(216, 173, 79, .08)),
        #0b0910;
}

.quiz-copy,
.pulse-copy {
    max-width: 650px;
}

.quiz-copy p:not(.eyebrow),
.pulse-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.quiz-card {
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 14% 12%, rgba(99, 215, 204, .12), transparent 38%),
        rgba(255, 255, 255, .06);
    box-shadow: var(--shadow);
}

.quiz-progress {
    height: 8px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255, 255, 255, .12);
}

.quiz-progress i {
    display: block;
    width: 16.666%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--aqua), var(--gold-soft));
    transition: width .25s ease;
}

.quiz-step {
    display: none;
    min-height: 360px;
    margin: 0;
    padding: 0;
    border: 0;
}

.quiz-step.is-active {
    display: grid;
    align-content: start;
    gap: 12px;
}

.quiz-step legend {
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.05;
}

.quiz-step label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    transition: border-color .2s ease, background .2s ease;
}

.quiz-step label:has(input:checked) {
    border-color: rgba(240, 212, 138, .5);
    background: rgba(216, 173, 79, .12);
}

.quiz-step input[type="radio"] {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
}

.quiz-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.quiz-card.has-error .quiz-step.is-active {
    animation: quizNudge .18s ease 2;
}

.typeform-embed {
    grid-column: 1 / -1;
    min-height: 620px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    box-shadow: var(--shadow);
}

.typeform-embed iframe {
    width: 100%;
    height: 620px;
    border: 0;
}

.pulse-widget {
    display: grid;
    grid-template-columns: minmax(170px, .45fr) minmax(0, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.pulse-options,
.pulse-readout {
    background:
        radial-gradient(circle at 12% 12%, rgba(99, 215, 204, .1), transparent 42%),
        rgba(255, 255, 255, .055);
}

.pulse-options {
    display: grid;
    gap: 1px;
    background-color: var(--line);
}

.pulse-options button {
    border: 0;
    padding: 18px;
    background: rgba(255, 255, 255, .055);
    color: var(--white);
    font: inherit;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.pulse-options button:hover,
.pulse-options button.is-active {
    background: linear-gradient(135deg, rgba(216, 173, 79, .24), rgba(99, 215, 204, .1));
    color: var(--gold-soft);
}

.pulse-readout {
    padding: clamp(24px, 4vw, 42px);
}

.pulse-readout > span {
    color: var(--aqua);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.pulse-readout strong {
    display: block;
    margin: 12px 0 16px;
    color: var(--gold-soft);
    font-size: clamp(56px, 7vw, 96px);
    line-height: .85;
}

.pulse-readout strong b {
    font: inherit;
}

.pulse-meter {
    height: 10px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255, 255, 255, .12);
}

.pulse-meter i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--aqua), var(--gold-soft));
    transition: width .35s ease;
}

.pulse-readout p {
    margin: 20px 0 24px;
    color: var(--muted);
    font-size: 18px;
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip strong {
    color: var(--gold-soft);
    font-size: 22px;
}

.trust-strip span {
    color: var(--muted);
}

.section {
    padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 76px);
}

.section-heading {
    max-width: 850px;
    margin-bottom: 42px;
}

.section-heading.compact {
    max-width: 760px;
}

h2 {
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.03;
    letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 17px;
}

.about {
    background: #0d0a12;
}

.clef-method {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(300px, 520px);
    gap: clamp(28px, 5vw, 68px);
    align-items: center;
    background:
        radial-gradient(circle at 82% 26%, rgba(216, 173, 79, .22), transparent 24rem),
        radial-gradient(circle at 88% 18%, rgba(99, 215, 204, .13), transparent 28rem),
        linear-gradient(135deg, #08070d 0%, #160d20 48%, #0c0911 100%);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.method-copy {
    max-width: 760px;
}

.method-copy h2 {
    margin: 10px 0 18px;
    font-size: clamp(42px, 6vw, 82px);
}

.method-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
}

.method-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.method-poster {
    position: relative;
    margin: 0;
    padding: clamp(12px, 2vw, 18px);
    border: 1px solid rgba(240, 212, 138, .22);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(216, 173, 79, .16), rgba(255, 255, 255, .045)),
        rgba(255, 255, 255, .035);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.method-poster::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle, rgba(240, 212, 138, .28), transparent 36%),
        radial-gradient(circle at 72% 18%, rgba(99, 215, 204, .14), transparent 28%);
    filter: blur(28px);
    opacity: .7;
}

.method-poster img {
    position: relative;
    display: block;
    width: min(100%, 470px);
    max-height: min(76vh, 760px);
    margin: 0 auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.portrait-card {
    position: sticky;
    top: 96px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.portrait-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 44% top;
}

.about-copy {
    color: #ede8ef;
    font-size: 17px;
}

.about-copy blockquote {
    margin: 30px 0 0;
    padding: 24px;
    border-left: 4px solid var(--gold);
    background: rgba(216, 173, 79, .08);
    color: var(--gold-soft);
    font-weight: 700;
}

.services {
    background: linear-gradient(180deg, #120d18 0%, #0b0910 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-item {
    min-height: 220px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 212, 138, .42);
    background:
        linear-gradient(180deg, rgba(216, 173, 79, .14), rgba(255, 255, 255, .04));
}

.service-item span {
    display: block;
    width: 32px;
    height: 3px;
    margin-bottom: 22px;
    background: var(--gold);
}

.service-item small {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 6px 9px;
    border: 1px solid rgba(240, 212, 138, .22);
    border-radius: 6px;
    color: var(--gold-soft);
    font-weight: 900;
    text-transform: uppercase;
}

.service-item h3 {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.24;
}

.service-item p {
    margin: 0;
    color: var(--muted);
}

.journey {
    background: #f7f3eb;
    color: #18121e;
}

.journey .eyebrow {
    color: #6a408b;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(18, 16, 25, .14);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(18, 16, 25, .14);
}

.journey-step {
    min-height: 300px;
    padding: 30px;
    background: #fff;
}

.journey-step span {
    display: inline-flex;
    margin-bottom: 60px;
    padding: 7px 10px;
    border: 1px solid rgba(106, 64, 139, .22);
    border-radius: 6px;
    color: #6a408b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.journey-step h3 {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.05;
}

.journey-step p {
    margin: 0;
    color: #53475a;
}

.content-feed {
    background:
        radial-gradient(circle at 85% 20%, rgba(216, 173, 79, .12), transparent 28rem),
        #0d0a12;
}

.content-card-grid,
.resource-grid-app,
.publication-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.content-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    min-height: 210px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.content-card img,
.resource-card-app img,
.publication-admin-card img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    border-radius: 8px;
}

.content-placeholder,
.publication-placeholder {
    display: grid;
    place-items: center;
    min-height: 170px;
    border: 1px dashed rgba(216, 173, 79, .38);
    border-radius: 8px;
    background: rgba(216, 173, 79, .1);
    color: var(--gold-soft);
    font-weight: 900;
}

.content-card h3,
.resource-card-app h2 {
    margin: 14px 0 8px;
    color: var(--white);
    font-size: 24px;
    line-height: 1.1;
}

.content-card p,
.resource-card-app p {
    color: var(--muted);
}

.social-links {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.social-follow {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.social-link {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .065);
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
}

.social-link svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.social-link:hover {
    border-color: rgba(216, 173, 79, .56);
    background: rgba(216, 173, 79, .16);
    color: var(--gold-soft);
}

.tool-stack {
    background:
        radial-gradient(circle at 80% 10%, rgba(99, 215, 204, .12), transparent 32%),
        linear-gradient(180deg, #0b0910, #14101c);
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.tool-card {
    position: relative;
    min-height: 245px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.tool-card::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 212, 138, .22), transparent 62%);
    transition: transform .22s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 212, 138, .44);
}

.tool-card:hover::after {
    transform: scale(1.35);
}

.tool-card span,
.tool-card em {
    display: inline-flex;
    position: relative;
    z-index: 1;
    padding: 6px 9px;
    border: 1px solid rgba(240, 212, 138, .22);
    border-radius: 6px;
    color: var(--gold-soft);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.tool-card strong {
    display: block;
    position: relative;
    z-index: 1;
    margin: 38px 0 12px;
    font-size: 31px;
    line-height: 1;
}

.tool-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    color: var(--muted);
}

.tool-card em {
    color: var(--aqua);
    border-color: rgba(99, 215, 204, .28);
}

.booking-panel {
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(320px, 1fr);
    gap: clamp(26px, 5vw, 70px);
    align-items: center;
    background: #f7f3eb;
    color: #18121e;
}

.booking-panel .eyebrow {
    color: #6a408b;
}

.booking-copy p {
    color: #53475a;
}

.booking-frame {
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(18, 16, 25, .12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(18, 16, 25, .16);
}

.booking-frame iframe {
    width: 100%;
    height: 620px;
    border: 0;
}

.connect-placeholder {
    display: grid;
    align-content: center;
    gap: 16px;
    min-height: 100%;
    padding: clamp(24px, 5vw, 54px);
    background:
        radial-gradient(circle at 18% 22%, rgba(77, 29, 124, .16), transparent 36%),
        linear-gradient(135deg, #ffffff, #f4ecdc);
}

.connect-placeholder.compact {
    min-height: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.connect-placeholder span {
    color: #6a408b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.connect-placeholder strong {
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.04;
}

.newsletter-panel {
    background:
        radial-gradient(circle at 10% 10%, rgba(216, 173, 79, .16), transparent 34%),
        #0b0910;
}

.newsletter-card {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(300px, .68fr);
    gap: clamp(24px, 5vw, 62px);
    align-items: center;
    padding: clamp(24px, 5vw, 54px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    box-shadow: var(--shadow);
}

.newsletter-card p {
    color: var(--muted);
}

.newsletter-form {
    display: grid;
    gap: 14px;
}

.social-proof {
    background: linear-gradient(180deg, #120d18, #08070d);
}

.reviews-placeholder {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.reviews-placeholder article {
    min-height: 180px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
}

.reviews-placeholder strong,
.reviews-placeholder span {
    display: block;
}

.reviews-placeholder strong {
    color: var(--gold-soft);
    font-size: 36px;
    line-height: 1;
}

.reviews-placeholder span {
    margin-top: 14px;
    color: var(--muted);
}

.tracking-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: clamp(32px, 5vw, 62px) clamp(18px, 5vw, 76px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(120deg, rgba(99, 215, 204, .1), rgba(216, 173, 79, .12)),
        #0b0910;
}

.tracking-panel h2 {
    margin: 0;
}

.tracking-status {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tracking-status span {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 6px;
    background: rgba(255, 255, 255, .055);
    color: var(--muted);
    font-weight: 900;
}

.tracking-status span.is-on {
    border-color: rgba(99, 215, 204, .42);
    color: var(--aqua);
}

.results {
    background:
        radial-gradient(circle at 12% 12%, rgba(77, 29, 124, .22), transparent 30%),
        #08070d;
}

.featured-proof {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .62fr);
    gap: 0;
    align-items: stretch;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.featured-proof img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
}

.featured-proof div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 4vw, 44px);
    background:
        radial-gradient(circle at 18% 22%, rgba(216, 173, 79, .16), transparent 36%),
        linear-gradient(180deg, #1b1624, #0e0b14);
}

.featured-proof span {
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.featured-proof strong {
    display: block;
    margin-top: 14px;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.02;
}

.proof-carousel {
    position: relative;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.proof-carousel .proof-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.proof-carousel .proof-grid::-webkit-scrollbar {
    display: none;
}

.proof-carousel .proof-card {
    flex: 0 0 min(310px, 78vw);
    scroll-snap-align: start;
}

.proof-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(240, 212, 138, .35);
    border-radius: 50%;
    background: rgba(10, 7, 16, .84);
    color: var(--gold-soft);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.proof-prev {
    left: -14px;
}

.proof-next {
    right: -14px;
}

.proof-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .25);
}

.proof-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .25s ease;
}

.conversion-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 76px);
    background:
        linear-gradient(120deg, rgba(216, 173, 79, .2), rgba(99, 215, 204, .08)),
        #120d18;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.conversion-band h2 {
    max-width: 820px;
    margin: 0;
}

.proof-card:hover img {
    transform: scale(1.04);
}

.vision {
    background: #f5f0e7;
    color: #17121d;
}

.vision .eyebrow {
    color: #6a408b;
}

.vision-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vision-list span {
    padding: 12px 16px;
    border: 1px solid rgba(18, 16, 25, .16);
    border-radius: 6px;
    background: #ffffff;
    font-weight: 800;
}

.contact {
    background:
        radial-gradient(circle at 18% 12%, rgba(216, 173, 79, .18), transparent 32%),
        linear-gradient(135deg, #0a0710 0%, #261139 100%);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.contact-copy {
    max-width: 640px;
}

.contact-copy p {
    color: var(--muted);
}

.contact-promise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.contact-promise span {
    padding: 10px 12px;
    border: 1px solid rgba(240, 212, 138, .22);
    border-radius: 6px;
    background: rgba(255, 255, 255, .06);
    color: var(--gold-soft);
    font-weight: 800;
}

.contact-details {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(240, 212, 138, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    color: var(--muted);
    font-style: normal;
}

.contact-details strong {
    color: var(--gold-soft);
}

.contact-details a {
    width: fit-content;
    color: var(--white);
    font-weight: 800;
}

.contact-details a:hover {
    color: var(--gold-soft);
}

.lead-form,
.admin-login {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: clamp(20px, 4vw, 34px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    box-shadow: var(--shadow);
}

label {
    display: grid;
    gap: 7px;
    color: #efe9f4;
    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 6px;
    background: rgba(255, 255, 255, .92);
    color: #17121d;
    padding: 13px 13px;
    font: inherit;
}

textarea {
    resize: vertical;
}

.full {
    grid-column: 1 / -1;
}

.notice {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 6px;
    font-weight: 800;
}

.notice.success {
    background: rgba(51, 171, 102, .16);
    color: #b9ffd5;
}

.notice.error {
    background: rgba(219, 80, 80, .16);
    color: #ffd1d1;
}

.prospect-popup {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.prospect-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.prospect-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 3, 8, .72);
    backdrop-filter: blur(12px);
}

.prospect-popup-card {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(240, 212, 138, .34);
    border-radius: 8px;
    background:
        radial-gradient(circle at 14% 0%, rgba(216, 173, 79, .22), transparent 36%),
        radial-gradient(circle at 94% 12%, rgba(99, 215, 204, .12), transparent 36%),
        linear-gradient(145deg, rgba(22, 14, 32, .98), rgba(8, 7, 13, .98));
    box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
    transform: translateY(14px) scale(.98);
    transition: transform .22s ease;
}

.prospect-popup.is-visible .prospect-popup-card {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.popup-copy {
    max-width: 520px;
    padding-right: 34px;
}

.popup-copy h2,
.popup-success h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
}

.popup-copy p:not(.eyebrow),
.popup-success p,
.popup-privacy {
    color: var(--muted);
}

.popup-form {
    margin-top: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.popup-privacy {
    display: block;
    margin-top: 14px;
    font-weight: 700;
}

.account-popup-card {
    border-color: rgba(99, 215, 204, .28);
    background:
        radial-gradient(circle at 12% 0%, rgba(99, 215, 204, .18), transparent 34%),
        radial-gradient(circle at 92% 14%, rgba(216, 173, 79, .2), transparent 34%),
        linear-gradient(145deg, rgba(14, 18, 26, .98), rgba(10, 7, 16, .98));
}

.popup-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.popup-benefits span {
    display: grid;
    align-content: center;
    min-height: 72px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    background: rgba(255, 255, 255, .065);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}

.popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.popup-success {
    display: grid;
    gap: 16px;
    text-align: center;
}

.popup-success span {
    justify-self: center;
    padding: 8px 12px;
    border: 1px solid rgba(216, 173, 79, .36);
    border-radius: 999px;
    background: rgba(216, 173, 79, .12);
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px clamp(18px, 5vw, 76px);
    background: #050408;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin: 0;
}

.footer-contact {
    display: grid;
    gap: 8px;
}

.footer-contact address {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    color: var(--muted);
    font-style: normal;
}

.footer-contact address a {
    color: var(--white);
    font-weight: 700;
}

.site-overlays {
    display: contents;
}

.footer-link {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.site-footer a,
.footer-link {
    transition: color .2s ease;
}

.site-footer a:hover,
.footer-link:hover {
    color: var(--gold-soft);
}

.form-website-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.cookie-consent {
    position: fixed;
    inset: auto clamp(14px, 3vw, 34px) clamp(14px, 3vw, 34px) auto;
    z-index: 80;
    width: min(620px, calc(100vw - 28px));
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .24s ease, transform .24s ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cookie-consent-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 20px;
    padding: 20px;
    border: 1px solid rgba(216, 173, 79, .32);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(32, 29, 38, .98), rgba(9, 8, 14, .98)),
        var(--panel);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

.cookie-copy {
    display: grid;
    gap: 8px;
}

.cookie-copy h2,
.cookie-copy p {
    margin: 0;
}

.cookie-copy h2 {
    color: var(--text);
    font-size: 22px;
    line-height: 1.1;
}

.cookie-copy p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.client-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 10%, rgba(216, 173, 79, .18), transparent 28rem),
        radial-gradient(circle at 86% 16%, rgba(99, 215, 204, .1), transparent 30rem),
        linear-gradient(135deg, #08070d 0%, #1b0e28 48%, #08070d 100%);
}

.app-body {
    min-height: 100vh;
    background: #0b0a10;
}

.app-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
}

.app-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 22px;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    background: #0f0d15;
}

.app-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    font-size: 18px;
    font-weight: 900;
}

.app-brand img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 7px;
}

.app-nav {
    display: grid;
    align-content: start;
    gap: 6px;
}

.app-nav a,
.app-link {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.app-nav a:hover,
.app-nav a.is-active,
.app-link:hover {
    border-color: rgba(216, 173, 79, .26);
    background: rgba(216, 173, 79, .1);
    color: var(--gold-soft);
}

.app-sidebar-footer {
    display: grid;
    gap: 10px;
}

.app-main {
    min-width: 0;
    background:
        radial-gradient(circle at 80% 0%, rgba(99, 215, 204, .08), transparent 30rem),
        #0b0a10;
}

.app-topbar,
.admin-top {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 78px;
    padding: 16px clamp(18px, 3vw, 34px);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: rgba(11, 10, 16, .9);
    backdrop-filter: blur(14px);
}

.app-topbar h1,
.admin-top h1 {
    margin: 2px 0 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}

.app-kicker {
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.app-user-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
}

.app-user-chip > div {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.app-avatar {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid rgba(216, 173, 79, .38);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(216, 173, 79, .96), rgba(240, 212, 138, .88));
    color: #17121d;
    font-size: 15px;
    font-weight: 900;
}

.app-user-chip span {
    color: var(--muted);
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-content {
    display: grid;
    gap: 22px;
    padding: clamp(18px, 3vw, 34px);
}

.app-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.app-stats article,
.app-panel {
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 20px 54px rgba(0, 0, 0, .24);
}

.app-stats article {
    padding: 18px;
}

.app-stats span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.app-stats strong {
    display: block;
    margin-top: 6px;
    color: var(--white);
    font-size: 30px;
    line-height: 1;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.app-panel {
    overflow: hidden;
}

.app-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 20px 0;
}

.app-panel-head h2 {
    margin: 3px 0 0;
    font-size: 22px;
    line-height: 1.2;
}

.app-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 20px;
}

.app-list {
    display: grid;
    gap: 10px;
    padding: 18px 20px 20px;
}

.app-list-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(0, 0, 0, .16);
}

.app-list-item > div {
    display: grid;
    gap: 3px;
}

.app-list-item span,
.app-list-item small {
    color: var(--muted);
}

.app-info-card,
.service-follow-card,
.service-card-app {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(0, 0, 0, .16);
}

.app-info-card p,
.service-card-app p {
    margin: 8px 0 0;
    color: var(--muted);
}

.service-catalog-app {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card-app {
    display: grid;
    align-content: space-between;
    gap: 14px;
    min-height: 260px;
}

.service-card-app h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
}

.resource-grid-app {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 20px;
}

.resource-grid-app .empty-state {
    grid-column: 1 / -1;
}

.resource-card-app {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(0, 0, 0, .16);
}

.resource-card-app video,
.resource-card-app .webinar-video-embed,
.publication-admin-card video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #050409;
    object-fit: cover;
}

.resource-card-app .webinar-video-embed {
    border: 0;
    display: block;
}

.resource-card-app > div:last-child {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 16px;
}

.resource-mini-item {
    align-items: center;
}

.webinar-card-app small {
    color: var(--gold-soft);
    font-weight: 800;
}

.app-social-links {
    justify-content: flex-start;
}

.service-follow-card {
    display: grid;
    gap: 14px;
}

.service-follow-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.service-follow-head div {
    display: grid;
    gap: 4px;
}

.service-follow-head small {
    color: var(--muted);
}

.service-follow-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-follow-metrics span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.month-switcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.appointment-book-form {
    grid-template-columns: 1fr;
}

.appointment-slot-grid,
.admin-slot-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    gap: 10px;
}

.appointment-slot,
.admin-slot {
    display: grid;
    gap: 4px;
    min-height: 94px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    cursor: pointer;
}

.appointment-slot input,
.admin-slot input[type="checkbox"] {
    width: auto;
}

.appointment-slot strong,
.admin-slot strong {
    color: var(--white);
    font-size: 20px;
    line-height: 1;
}

.appointment-slot small,
.admin-slot small {
    color: var(--muted);
    font-weight: 800;
}

.appointment-slot.is-available:has(input:checked) {
    border-color: rgba(216, 173, 79, .72);
    background: rgba(216, 173, 79, .16);
}

.appointment-slot.is-unavailable,
.admin-slot.is-booked {
    opacity: .58;
    background: rgba(120, 120, 130, .12);
    cursor: not-allowed;
}

.appointment-slot.is-mine,
.admin-slot.is-blocked {
    border-color: rgba(216, 173, 79, .38);
    background: rgba(216, 173, 79, .11);
}

.client-prefill {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.client-prefill span {
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    color: var(--muted);
    font-weight: 800;
}

.admin-appointments {
    display: grid;
    gap: 18px;
    padding-bottom: 18px;
}

.appointment-generator {
    grid-template-columns: minmax(150px, .8fr) minmax(260px, 1.4fr) minmax(100px, .6fr) repeat(5, auto) auto;
}

.admin-calendar-card {
    overflow: hidden;
}

.admin-year-form,
.slot-settings,
.day-slot-actions {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-year-form label,
.slot-settings label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-year-form input,
.slot-settings input {
    min-height: 42px;
}

.admin-month-grid,
.admin-day-grid {
    display: grid;
    gap: 10px;
    padding: 18px 20px 0;
}

.admin-month-grid {
    grid-template-columns: repeat(6, minmax(100px, 1fr));
}

.admin-day-grid {
    grid-template-columns: repeat(7, minmax(92px, 1fr));
    padding-bottom: 20px;
}

.admin-month-link,
.admin-day-link {
    display: grid;
    gap: 4px;
    min-height: 78px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    color: var(--white);
    text-decoration: none;
}

.admin-month-link:hover,
.admin-day-link:hover,
.admin-month-link.is-active,
.admin-day-link.is-active {
    border-color: rgba(216, 173, 79, .62);
    background: rgba(216, 173, 79, .14);
}

.admin-month-link span,
.admin-day-link span,
.admin-month-link small,
.admin-day-link small {
    color: var(--muted);
    font-weight: 800;
}

.admin-day-link strong {
    font-size: 24px;
    line-height: 1;
}

.appointment-helper {
    margin: 14px 20px 0;
    color: var(--muted);
    font-weight: 800;
}

.appointment-month-card,
.appointment-bookings-panel {
    margin: 0 clamp(18px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 20px 54px rgba(0, 0, 0, .24);
}

.appointment-month-card {
    padding-bottom: 18px;
}

.admin-slot-grid {
    padding: 18px 20px;
}

.day-slot-actions {
    justify-content: flex-end;
    padding: 0 20px 20px;
}

.booking-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.client-auth-shell,
.client-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.client-auth-shell {
    min-height: 100vh;
    display: grid;
    align-content: center;
    gap: 22px;
    padding: 42px 0;
}

.auth-brand {
    justify-self: center;
}

.auth-card {
    width: min(620px, 100%);
    justify-self: center;
    padding: clamp(24px, 5vw, 42px);
    border: 1px solid rgba(240, 212, 138, .2);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035)),
        rgba(12, 9, 18, .86);
    box-shadow: var(--shadow);
}

.auth-card h1,
.portal-hero h1,
.portal-panel h2 {
    margin: 0;
    line-height: 1.05;
}

.auth-card p,
.portal-hero p,
.portal-profile small,
.portal-item span,
.portal-item small,
.empty-state {
    color: var(--muted);
}

.portal-lang-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.portal-lang-row .eyebrow {
    margin: 0;
}

.auth-form {
    margin-top: 22px;
    box-shadow: none;
}

.auth-link {
    margin: 18px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.auth-link a {
    color: var(--gold-soft);
}

.portal-header {
    position: sticky;
}

.client-shell {
    padding: clamp(28px, 5vw, 54px) 0 70px;
}

.portal-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}

.portal-hero > div:first-child,
.portal-profile,
.portal-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .075);
    box-shadow: var(--shadow);
}

.portal-hero > div:first-child {
    padding: clamp(24px, 5vw, 42px);
}

.portal-profile {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 24px;
}

.portal-profile span,
.status-pill {
    justify-self: start;
    padding: 7px 10px;
    border: 1px solid rgba(216, 173, 79, .36);
    border-radius: 999px;
    background: rgba(216, 173, 79, .12);
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.portal-profile strong {
    font-size: 24px;
    line-height: 1.1;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 22px;
}

.portal-panel {
    overflow: hidden;
}

.portal-panel-head {
    padding: 24px 24px 0;
}

.portal-form {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.upload-zone small {
    color: var(--muted);
    font-weight: 600;
}

.portal-list {
    display: grid;
    gap: 12px;
    padding: 22px 24px 24px;
}

.portal-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 0, 0, .18);
}

.portal-item > div {
    display: grid;
    gap: 3px;
}

.portal-item strong {
    color: var(--white);
}

.client-method-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, .65fr);
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
    padding: 22px;
    border: 1px solid rgba(240, 212, 138, .22);
    border-radius: 8px;
    background:
        radial-gradient(circle at 90% 20%, rgba(99, 215, 204, .12), transparent 18rem),
        linear-gradient(145deg, rgba(216, 173, 79, .12), rgba(255, 255, 255, .045));
}

.client-method-panel h2 {
    margin: 8px 0 10px;
    font-size: clamp(26px, 3vw, 40px);
}

.client-method-panel p {
    max-width: 820px;
    margin: 0;
    color: var(--muted);
}

.client-method-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.client-method-pillars span {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: var(--gold-soft);
    background: rgba(8, 7, 13, .52);
    font-weight: 900;
}

.empty-state {
    margin: 0;
    padding: 16px;
    border: 1px dashed var(--line);
    border-radius: 8px;
}

.admin-body {
    min-height: 100vh;
    background: #0d0a12;
}

.admin-shell {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0;
}

.app-main.admin-shell {
    width: auto;
    margin: 0;
    padding: 0 0 clamp(18px, 3vw, 34px);
}

.admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.admin-shell > .notice {
    margin: 18px clamp(18px, 3vw, 34px) 0;
}

.admin-top h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
}

.app-main .admin-top {
    margin-bottom: 0;
}

.app-main .admin-top h1 {
    font-size: clamp(24px, 3vw, 34px);
}

.admin-login {
    max-width: 520px;
    grid-template-columns: 1fr;
}

.app-main .admin-login {
    margin: 24px clamp(18px, 3vw, 34px);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
    padding: clamp(18px, 3vw, 34px) clamp(18px, 3vw, 34px) 0;
}

.admin-stats article {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.crm-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-stats span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-stats strong {
    display: block;
    margin-top: 5px;
    color: var(--gold-soft);
    font-size: 30px;
    line-height: 1;
}

.admin-stats small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-weight: 800;
}

.admin-prospect-app {
    display: grid;
    gap: 18px;
    padding-bottom: 20px;
}

.admin-workbench,
.prospect-card {
    margin: 0 clamp(18px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 20px 54px rgba(0, 0, 0, .24);
}

.pipeline-tabs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    padding: 18px 20px 0;
}

.pipeline-tabs a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 54px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(0, 0, 0, .15);
    color: var(--muted);
    font-weight: 900;
}

.pipeline-tabs a:hover,
.pipeline-tabs a.is-active {
    border-color: rgba(216, 173, 79, .55);
    background: rgba(216, 173, 79, .13);
    color: var(--gold-soft);
}

.pipeline-tabs span {
    display: inline-grid;
    place-items: center;
    min-width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
}

.app-panel-head small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.5;
}

.admin-filters {
    display: grid;
    grid-template-columns: 1fr 1fr auto minmax(220px, 1.4fr) auto auto;
    gap: 12px;
    align-items: end;
    margin: 18px clamp(18px, 3vw, 34px);
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
}

.admin-workbench .admin-filters {
    margin: 0;
    padding: 18px 20px 20px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
    border-radius: 0;
    background: transparent;
}

.admin-check {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
}

.admin-check input {
    width: auto;
}

.lead-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    margin: 0 clamp(18px, 3vw, 34px);
}

.lead-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
}

.marketing-table {
    min-width: 1220px;
}

.lead-table th,
.lead-table td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.lead-table th {
    color: var(--gold-soft);
    font-size: 12px;
    text-transform: uppercase;
}

.lead-table td span,
.lead-table td small,
.lead-table td a {
    display: block;
    color: var(--muted);
}

.lead-table tr.is-due td {
    background: rgba(216, 173, 79, .06);
}

.prospect-board {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    padding: 0 clamp(18px, 3vw, 34px);
}

.prospect-board .empty-state {
    grid-column: 1 / -1;
}

.prospect-list-panel,
.prospect-detail-panel {
    min-width: 0;
}

.prospect-list-panel {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 20px 54px rgba(0, 0, 0, .24);
}

.prospect-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.prospect-list-head h2 {
    margin: 2px 0 0;
    color: var(--white);
    font-size: 22px;
    line-height: 1.1;
}

.prospect-list-head > span {
    display: inline-grid;
    place-items: center;
    min-width: 36px;
    height: 36px;
    border: 1px solid rgba(216, 173, 79, .32);
    border-radius: 999px;
    background: rgba(216, 173, 79, .12);
    color: var(--gold-soft);
    font-weight: 900;
}

.prospect-list {
    display: grid;
    overflow: hidden;
}

.prospect-list-panel .pagination {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.prospect-row {
    display: grid;
    grid-template-columns: minmax(180px, 1.3fr) minmax(150px, 1fr) 90px minmax(120px, .9fr) minmax(120px, auto) auto;
    gap: 12px;
    align-items: center;
    min-height: 68px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: var(--white);
}

.prospect-row:hover,
.prospect-row.is-active {
    background: rgba(216, 173, 79, .11);
}

.prospect-row.is-active {
    box-shadow: inset 3px 0 0 var(--gold-soft);
}

.prospect-row.is-due {
    background: rgba(216, 173, 79, .07);
}

.prospect-row > div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.prospect-row strong,
.prospect-row small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.prospect-row small {
    color: var(--muted);
    font-weight: 800;
}

.prospect-row-field span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.prospect-row-field strong,
.prospect-row-status small {
    color: var(--white);
    font-size: 13px;
    line-height: 1.2;
}

.prospect-row-status {
    justify-items: end;
}

.prospect-row .status-pill {
    justify-self: end;
}

.prospect-row-button {
    justify-self: end;
    white-space: nowrap;
}

.client-row {
    cursor: default;
}

.admin-detail-toolbar {
    display: flex;
    justify-content: flex-start;
    padding: 0 clamp(18px, 3vw, 34px);
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 16px;
}

.pagination a {
    display: inline-grid;
    place-items: center;
    min-width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: var(--muted);
    font-weight: 900;
}

.pagination a:hover,
.pagination a.is-active {
    border-color: rgba(216, 173, 79, .55);
    background: rgba(216, 173, 79, .13);
    color: var(--gold-soft);
}

.prospect-card {
    margin: 0;
    overflow: hidden;
}

.prospect-card.is-due {
    border-color: rgba(216, 173, 79, .45);
    box-shadow: 0 20px 54px rgba(216, 173, 79, .09);
}

.prospect-card form {
    display: grid;
    gap: 16px;
    padding: 18px;
}

.crm-context-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.crm-context-strip div,
.crm-record-card,
.crm-mini-list div {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(0, 0, 0, .16);
}

.crm-context-strip div {
    display: grid;
    gap: 4px;
    padding: 12px;
}

.crm-context-strip span,
.crm-record-head span,
.crm-mini-list strong,
.crm-timeline-item time {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.crm-context-strip strong {
    color: var(--white);
    font-size: 20px;
    line-height: 1.1;
}

.crm-context-strip small,
.crm-mini-list span,
.crm-timeline-item span {
    color: var(--muted);
    font-weight: 700;
    line-height: 1.45;
}

.prospect-card-head,
.prospect-actions,
.prospect-card-meta,
.prospect-insights {
    display: flex;
    gap: 12px;
}

.prospect-card-head,
.prospect-actions {
    align-items: flex-start;
    justify-content: space-between;
}

.prospect-card-head h2 {
    margin: 10px 0 2px;
    color: var(--white);
    font-size: 24px;
    line-height: 1.1;
}

.prospect-card-head small,
.prospect-card-meta a,
.prospect-card-meta span,
.prospect-insights span,
.prospect-insights small {
    color: var(--muted);
    font-weight: 800;
}

.lead-score-ring {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    border: 1px solid rgba(216, 173, 79, .42);
    border-radius: 999px;
    background: radial-gradient(circle at 50% 30%, rgba(240, 212, 138, .25), rgba(216, 173, 79, .08));
}

.lead-score-ring strong {
    color: var(--white);
    font-size: 26px;
    line-height: .9;
}

.lead-score-ring span {
    color: var(--gold-soft);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.prospect-card-meta {
    flex-wrap: wrap;
}

.prospect-card-meta a,
.prospect-card-meta span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    background: rgba(0, 0, 0, .14);
}

.prospect-insights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prospect-insights div {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(0, 0, 0, .16);
}

.prospect-insights strong {
    color: var(--white);
    line-height: 1.2;
}

.prospect-message {
    margin: 0;
    padding: 13px 14px;
    border-left: 3px solid var(--gold-soft);
    border-radius: 0 8px 8px 0;
    background: rgba(216, 173, 79, .09);
    color: var(--white);
    font-weight: 700;
}

.prospect-editor {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.prospect-editor .full {
    grid-column: 1 / -1;
}

.prospect-editor textarea,
.prospect-editor select,
.prospect-editor input {
    padding: 10px;
}

.prospect-actions {
    align-items: center;
    padding-top: 2px;
}

.prospect-actions > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.crm-record-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 14px;
    padding: 0 18px 18px;
}

.crm-record-card {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.crm-record-head h3 {
    margin: 4px 0 0;
    color: var(--white);
    font-size: 19px;
}

.crm-timeline {
    display: grid;
    gap: 10px;
}

.crm-timeline-item {
    position: relative;
    display: grid;
    gap: 4px;
    padding: 0 0 0 18px;
}

.crm-timeline-item::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold-soft);
    box-shadow: 0 0 0 4px rgba(216, 173, 79, .12);
}

.crm-timeline-item strong {
    color: var(--white);
}

.crm-mini-list {
    display: grid;
    gap: 10px;
}

.crm-mini-list div {
    display: grid;
    gap: 5px;
    padding: 11px 12px;
}

.status-nouveau {
    border-color: rgba(99, 215, 204, .34);
    background: rgba(99, 215, 204, .1);
    color: #91fff4;
}

.status-contacte,
.status-rdv_planifie {
    border-color: rgba(216, 173, 79, .36);
    background: rgba(216, 173, 79, .12);
    color: var(--gold-soft);
}

.status-converti {
    border-color: rgba(110, 231, 183, .34);
    background: rgba(110, 231, 183, .12);
    color: #b9f8da;
}

.status-perdu {
    border-color: rgba(248, 113, 113, .34);
    background: rgba(248, 113, 113, .1);
    color: #fecaca;
}

.admin-publications {
    display: grid;
    gap: 18px;
    padding: clamp(18px, 3vw, 34px);
}

.publication-grid {
    grid-template-columns: 1fr 1fr;
}

.publication-form-card,
.publication-list {
    margin: 0;
}

.publication-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.publication-admin-list {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.publication-admin-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(0, 0, 0, .16);
}

.publication-admin-fields {
    display: grid;
    gap: 12px;
}

.publication-card-head,
.publication-admin-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.publication-admin-row label {
    flex: 1 1 160px;
}

.publication-admin-card textarea,
.publication-admin-card input,
.publication-admin-card select {
    padding: 10px;
}

.inline-admin-form {
    display: grid;
    gap: 9px;
}

.inline-admin-form textarea,
.inline-admin-form select,
.inline-admin-form input {
    padding: 9px;
}

.admin-education .blog-editor-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-intent-card {
    align-self: start;
}

.blog-admin-guidance {
    display: grid;
    gap: 12px;
    padding: 20px;
    color: var(--muted);
}

.blog-admin-guidance strong {
    color: var(--gold-soft);
}

.blog-admin-guidance p {
    margin: 0 0 8px;
}

.blog-admin-card {
    grid-template-columns: 280px minmax(0, 1fr);
}

.blog-admin-preview {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(240, 212, 138, .14);
    border-radius: 8px;
    background: linear-gradient(155deg, rgba(216, 173, 79, .08), rgba(255, 255, 255, .025));
}

.blog-admin-preview strong {
    color: var(--white);
    font-size: 20px;
    line-height: 1.15;
}

.blog-admin-preview small {
    color: var(--muted);
    overflow-wrap: anywhere;
}

.education-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 78% 12%, rgba(216, 173, 79, .12), transparent 28rem),
        radial-gradient(circle at 12% 24%, rgba(77, 29, 124, .42), transparent 30rem),
        var(--ink);
}

.nav a.is-active {
    color: var(--gold-soft);
    background: rgba(240, 212, 138, .08);
}

.education-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    gap: clamp(24px, 5vw, 72px);
    align-items: end;
    padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 76px) clamp(44px, 7vw, 86px);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.education-hero h1 {
    max-width: 980px;
    margin: 12px 0 18px;
    font-size: clamp(42px, 6.8vw, 88px);
    line-height: .98;
    letter-spacing: 0;
}

.education-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 22px);
}

.education-hero aside {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(240, 212, 138, .2);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.education-hero aside strong {
    color: var(--gold-soft);
    font-size: 22px;
}

.education-hero aside span {
    color: var(--muted);
}

.education-error {
    display: block;
}

.education-foundation,
.education-faq {
    padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 76px);
}

.education-foundation {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01)),
        #0d0a12;
}

.education-topic-grid,
.education-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.education-topic-grid article,
.education-faq-grid article {
    display: grid;
    gap: 12px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
}

.education-topic-grid strong,
.education-faq-grid h3 {
    margin: 0;
    color: var(--gold-soft);
    font-size: 20px;
    line-height: 1.15;
}

.education-topic-grid p,
.education-faq-grid p {
    margin: 0;
    color: var(--muted);
}

.education-faq {
    background: #0a0710;
}

.education-faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-index {
    padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 76px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blog-card {
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
        #111018;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.blog-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(240, 212, 138, .16);
    background: rgba(255, 255, 255, .06);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .24s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 212, 138, .28);
    background:
        linear-gradient(150deg, rgba(216, 173, 79, .11), rgba(255, 255, 255, .03)),
        #111018;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.035);
}

.blog-card span {
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 0;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.05;
}

.blog-card p {
    margin: 0;
    color: var(--muted);
}

.blog-card-link {
    align-self: end;
    color: var(--gold-soft);
    font-weight: 800;
}

.blog-detail {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 42px);
}

.blog-detail-head {
    margin-bottom: 34px;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 13px;
    margin-bottom: 26px;
    border: 1px solid rgba(240, 212, 138, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    color: var(--gold-soft);
    font-weight: 800;
}

.blog-back-link:hover {
    border-color: rgba(240, 212, 138, .45);
    background: rgba(216, 173, 79, .11);
}

.blog-detail h1 {
    margin: 12px 0 18px;
    font-size: clamp(40px, 6vw, 78px);
    line-height: .98;
}

.blog-detail-head p:not(.eyebrow) {
    max-width: 820px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 22px);
}

.blog-feature-image {
    margin: 0 0 32px;
    overflow: hidden;
    border: 1px solid rgba(240, 212, 138, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.blog-feature-image img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
}

.blog-feature-poster {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    padding: clamp(10px, 2vw, 18px);
    background:
        radial-gradient(circle at 12% 8%, rgba(240, 212, 138, .18), transparent 18rem),
        linear-gradient(145deg, rgba(216, 173, 79, .12), rgba(255, 255, 255, .035));
}

.blog-feature-poster img {
    width: min(100%, 620px);
    max-height: 820px;
    margin: 0 auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 8px;
}

.cashflow-visual {
    display: grid;
    gap: 22px;
    margin: 0 0 34px;
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid rgba(240, 212, 138, .22);
    border-radius: 8px;
    background:
        radial-gradient(circle at 80% 20%, rgba(99, 215, 204, .16), transparent 28%),
        linear-gradient(145deg, rgba(216, 173, 79, .13), rgba(255, 255, 255, .045));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    overflow: hidden;
}

.cashflow-visual-head {
    display: grid;
    gap: 8px;
}

.cashflow-visual-head span,
.cashflow-path span {
    color: var(--aqua);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.cashflow-visual-head h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(26px, 3.6vw, 46px);
    line-height: 1.02;
}

.cashflow-quadrant {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    position: relative;
}

.cashflow-quadrant::before,
.cashflow-quadrant::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, .16);
}

.cashflow-quadrant::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
}

.cashflow-quadrant::after {
    right: 0;
    left: 0;
    top: 50%;
    height: 1px;
}

.cashflow-cell {
    display: grid;
    gap: 7px;
    min-height: 154px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(7, 5, 12, .72);
}

.cashflow-cell span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #1a1023;
    background: var(--gold-soft);
    font-weight: 900;
}

.cashflow-cell strong {
    font-size: clamp(20px, 2vw, 26px);
}

.cashflow-cell small {
    color: var(--muted);
    font-weight: 700;
}

.cashflow-right {
    border-color: rgba(99, 215, 204, .28);
    background: linear-gradient(145deg, rgba(99, 215, 204, .13), rgba(7, 5, 12, .72));
    animation: cashflowPulse 4s ease-in-out infinite;
}

.cashflow-path {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cashflow-path i {
    flex: 1 1 60px;
    min-width: 42px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--aqua));
}

@keyframes cashflowPulse {
    0%, 100% {
        box-shadow: inset 0 0 0 rgba(99, 215, 204, 0);
    }
    50% {
        box-shadow: inset 0 0 28px rgba(99, 215, 204, .12);
    }
}

.blog-content {
    display: grid;
    gap: 22px;
    color: #e8e2ec;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.75;
}

.blog-content p {
    margin: 0;
}

.article-gate {
    display: grid;
    gap: 16px;
    margin-top: 16px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(240, 212, 138, .28);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(216, 173, 79, .15), rgba(99, 215, 204, .06)),
        rgba(255, 255, 255, .04);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.article-gate span {
    color: var(--aqua);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.article-gate h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
}

.article-gate p {
    max-width: 760px;
    color: var(--muted);
}

.article-gate-actions,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.article-gate.is-open {
    border-color: rgba(110, 231, 183, .28);
}

.blog-article-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.reviews-hero {
    align-items: center;
}

.reviews-hero .hero-actions {
    margin-top: 28px;
}

.review-score-card p {
    margin: 0;
    color: var(--muted);
}

.review-score-card a {
    color: var(--gold-soft);
    font-weight: 900;
}

.review-steps-section,
.review-link-panel {
    padding: clamp(44px, 7vw, 78px) clamp(18px, 5vw, 76px);
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-heading-row h2,
.review-link-panel h2 {
    max-width: 880px;
    margin: 8px 0 0;
    font-size: clamp(32px, 4.4vw, 58px);
    line-height: 1.02;
}

.review-step-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.review-step-grid article,
.testimonial-grid article {
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(240, 212, 138, .08), rgba(99, 215, 204, .035)),
        rgba(255, 255, 255, .045);
}

.review-step-grid span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(240, 212, 138, .32);
    border-radius: 50%;
    color: var(--gold-soft);
    font-weight: 900;
}

.review-step-grid strong,
.testimonial-grid strong {
    display: block;
    color: #fff;
    font-size: 22px;
    line-height: 1.12;
}

.review-step-grid p,
.testimonial-grid p,
.review-link-panel p {
    color: var(--muted);
}

.reviews-guidance h2 {
    max-width: 880px;
    margin: 10px 0 28px;
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1.02;
}

.review-link-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: clamp(30px, 5vw, 56px) clamp(18px, 5vw, 76px) 0;
    border-top: 1px solid rgba(240, 212, 138, .18);
    border-bottom: 1px solid rgba(240, 212, 138, .18);
    background:
        radial-gradient(circle at 88% 18%, rgba(240, 212, 138, .12), transparent 28%),
        linear-gradient(120deg, rgba(13, 18, 24, .98), rgba(21, 12, 27, .96));
}

.review-link-panel span {
    color: var(--gold-soft);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.review-live-proof {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: 0 clamp(18px, 5vw, 76px);
    padding: clamp(28px, 5vw, 46px);
    border: 1px solid rgba(99, 215, 204, .2);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(99, 215, 204, .08), rgba(240, 212, 138, .08)),
        rgba(255, 255, 255, .045);
}

.review-live-proof h2 {
    margin: 8px 0 10px;
    font-size: clamp(28px, 3.8vw, 48px);
    line-height: 1.04;
}

.review-live-proof p:not(.eyebrow),
.client-review-panel p {
    color: var(--muted);
}

.google-review-section {
    padding: clamp(44px, 7vw, 78px) clamp(18px, 5vw, 76px);
}

.google-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.google-review-card {
    min-height: 220px;
    padding: 24px;
    border: 1px solid rgba(240, 212, 138, .18);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 12%, rgba(240, 212, 138, .12), transparent 28%),
        rgba(255, 255, 255, .045);
}

.google-review-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.google-review-card strong {
    color: #fff;
    font-size: 20px;
}

.google-review-card span {
    color: var(--gold-soft);
    font-weight: 900;
    white-space: nowrap;
}

.google-review-card p {
    color: var(--muted);
}

.admin-review-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.admin-review-summary article {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
}

.admin-review-summary span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-review-summary strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 28px;
}

.google-admin-review-card p {
    color: var(--muted);
}

.client-review-panel {
    background:
        radial-gradient(circle at 90% 18%, rgba(240, 212, 138, .16), transparent 26%),
        rgba(255, 255, 255, .045);
}

.client-review-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 24px 0;
}

.reviews-cta {
    max-width: 1120px;
    margin: clamp(54px, 7vw, 86px) auto;
}

.service-seo-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: clamp(24px, 5vw, 72px);
    align-items: end;
    padding: clamp(70px, 10vw, 118px) clamp(18px, 5vw, 76px) clamp(44px, 7vw, 78px);
}

.service-seo-hero h1 {
    max-width: 980px;
    margin: 12px 0 18px;
    font-size: clamp(42px, 6.4vw, 84px);
    line-height: .98;
}

.service-seo-hero p {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 22px);
}

.service-seo-hero aside {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(240, 212, 138, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
}

.service-seo-hero aside strong {
    color: var(--gold-soft);
    font-size: 22px;
}

.service-seo-hero aside span {
    color: var(--muted);
}

.service-seo-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0 clamp(18px, 5vw, 76px) clamp(54px, 8vw, 96px);
}

.service-seo-panel {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
}

.service-seo-panel h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
}

.seo-list {
    display: grid;
    gap: 12px;
}

.seo-list p {
    margin: 0;
    padding: 14px 16px;
    border-left: 3px solid var(--gold-soft);
    background: rgba(0, 0, 0, .16);
    color: var(--muted);
}

.related-services {
    padding-top: 0;
}

/* Public landing page polish */
body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(240, 212, 138, .28);
    color: var(--white);
}

.site-header {
    background: rgba(6, 5, 10, .88);
    box-shadow: 0 14px 42px rgba(0, 0, 0, .24);
}

.brand img {
    width: 58px;
    height: 58px;
}

.nav a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 8px;
    border-radius: 6px;
    white-space: nowrap;
    transition: color .18s ease, background .18s ease;
}

.nav a:hover {
    background: rgba(240, 212, 138, .08);
}

.header-cta,
.language-switch {
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.header-cta {
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.header-cta:hover {
    background: rgba(216, 173, 79, .12);
    color: var(--white);
    transform: translateY(-1px);
}

.eyebrow {
    letter-spacing: 0;
    color: var(--gold-soft);
}

h1,
h2,
h3 {
    font-weight: 800;
}

.hero {
    background:
        radial-gradient(circle at 14% 16%, rgba(77, 29, 124, .68), transparent 31%),
        radial-gradient(circle at 78% 24%, rgba(216, 173, 79, .18), transparent 24%),
        linear-gradient(130deg, #050409 0%, #160d20 50%, #08070d 100%);
}

.hero-copy {
    color: #d6ceda;
    line-height: 1.55;
}

.btn {
    min-height: 52px;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: 0;
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(135deg, #e2b85b 0%, #f2d98f 100%);
    box-shadow: 0 18px 42px rgba(216, 173, 79, .28);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .07);
}

.btn-secondary:hover {
    border-color: rgba(240, 212, 138, .4);
    background: rgba(216, 173, 79, .11);
}

.btn-danger {
    border: 1px solid rgba(248, 113, 113, .36);
    background: rgba(248, 113, 113, .12);
    color: #fecaca;
}

.btn-danger:hover {
    border-color: rgba(248, 113, 113, .58);
    background: rgba(248, 113, 113, .2);
}

.hero-metrics {
    border-color: rgba(240, 212, 138, .16);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 20px 46px rgba(0, 0, 0, .24);
}

.hero-metrics span {
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .045));
}

.hero-person {
    border-color: rgba(240, 212, 138, .28);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .02)),
        radial-gradient(circle at 50% 16%, rgba(216, 173, 79, .22), transparent 43%);
}

.trust-strip {
    border-color: rgba(240, 212, 138, .14);
}

.trust-strip div {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02)),
        #0f0c15;
}

.section-heading {
    margin-bottom: clamp(30px, 4vw, 46px);
}

.section-heading p:not(.eyebrow),
.quiz-copy p:not(.eyebrow),
.pulse-copy p:not(.eyebrow) {
    color: #d0c7d3;
    line-height: 1.7;
}

.pain-card,
.service-item,
.quiz-card,
.content-card,
.lead-form {
    box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
}

.pain-card,
.service-item {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .082), rgba(255, 255, 255, .034)),
        radial-gradient(circle at 86% 12%, rgba(216, 173, 79, .1), transparent 30%);
}

.pain-card:hover,
.service-item:hover {
    border-color: rgba(240, 212, 138, .42);
}

.diagnostic-quiz {
    background:
        radial-gradient(circle at 12% 16%, rgba(99, 215, 204, .12), transparent 28rem),
        radial-gradient(circle at 84% 22%, rgba(216, 173, 79, .12), transparent 28rem),
        #0a0810;
}

.quiz-card {
    border-color: rgba(240, 212, 138, .16);
    background:
        radial-gradient(circle at 14% 12%, rgba(99, 215, 204, .13), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .04));
}

.quiz-step label {
    min-height: 54px;
}

.about {
    background:
        radial-gradient(circle at 82% 8%, rgba(77, 29, 124, .24), transparent 28rem),
        #0d0a12;
}

.portrait-card,
.featured-proof,
.proof-card,
.contact-panel .lead-form {
    border-color: rgba(240, 212, 138, .16);
}

.journey,
.booking-panel,
.vision {
    background: #fbf7ee;
}

.journey-step,
.booking-frame,
.vision-list span {
    box-shadow: 0 18px 44px rgba(18, 16, 25, .08);
}

.journey-step span,
.connect-placeholder span,
.vision .eyebrow,
.journey .eyebrow,
.booking-panel .eyebrow {
    color: #5f2f86;
}

.booking-frame {
    min-height: 390px;
}

.connect-placeholder {
    background:
        radial-gradient(circle at 18% 22%, rgba(95, 47, 134, .15), transparent 36%),
        radial-gradient(circle at 92% 8%, rgba(216, 173, 79, .18), transparent 34%),
        linear-gradient(135deg, #ffffff, #f8f0de);
}

.connect-placeholder .btn {
    justify-self: start;
}

.results {
    background:
        radial-gradient(circle at 12% 12%, rgba(77, 29, 124, .2), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(216, 173, 79, .11), transparent 28rem),
        #08070d;
}

.conversion-band {
    background:
        radial-gradient(circle at 86% 20%, rgba(240, 212, 138, .18), transparent 28rem),
        linear-gradient(120deg, rgba(216, 173, 79, .16), rgba(99, 215, 204, .08)),
        #120d18;
}

.contact {
    background:
        radial-gradient(circle at 18% 12%, rgba(216, 173, 79, .16), transparent 32%),
        radial-gradient(circle at 86% 8%, rgba(99, 215, 204, .1), transparent 28rem),
        linear-gradient(135deg, #08070d 0%, #241135 100%);
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(240, 212, 138, .42);
    outline-offset: 2px;
}

@media (max-width: 980px) {
    .app-layout {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        position: static;
        height: auto;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto;
        align-items: center;
    }

    .app-nav {
        display: flex;
        overflow-x: auto;
    }

    .app-sidebar-footer {
        justify-items: end;
    }

    .site-header {
        align-items: flex-start;
        display: flex;
        flex-wrap: wrap;
    }

    .brand img {
        width: 52px;
        height: 52px;
    }

    .nav {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 6px 10px;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .nav-client-link {
        margin-left: 0;
    }

    .hero,
    .about-grid,
    .client-method-panel,
    .contact-panel,
    .diagnostic-intro,
    .featured-proof,
    .pulse-lab,
    .diagnostic-quiz,
    .booking-panel,
    .newsletter-card,
    .portal-hero,
    .portal-grid,
    .app-grid,
    .education-hero,
    .service-seo-hero,
    .service-seo-content {
        grid-template-columns: 1fr;
    }

    .clef-method {
        grid-template-columns: minmax(0, .9fr) minmax(260px, 420px);
    }

    .hero {
        min-height: auto;
        padding-top: 18px;
    }

    .hero-person {
        margin-top: 18px;
        height: auto;
    }

    .hero-person img {
        width: min(420px, 92vw);
        height: auto;
        aspect-ratio: .92 / 1;
        margin: 0 auto;
    }

    .trust-strip,
    .service-grid,
    .service-catalog-app,
    .appointment-slot-grid,
    .admin-slot-grid,
    .admin-month-grid,
    .admin-day-grid,
    .pipeline-tabs,
    .prospect-board,
    .crm-context-strip,
    .crm-record-grid,
    .content-card-grid,
    .resource-grid-app,
    .blog-grid,
    .review-step-grid,
    .testimonial-grid,
    .google-review-grid,
    .admin-review-summary,
    .education-topic-grid,
    .education-faq-grid,
    .service-seo-content,
    .publication-grid,
    .proof-grid,
    .admin-stats,
    .app-stats,
    .pain-grid,
    .journey-grid,
    .tool-grid,
    .reviews-placeholder {
        grid-template-columns: repeat(2, 1fr);
    }

    .conversion-band,
    .tracking-panel {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .prospect-insights,
    .prospect-editor {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prospect-board {
        grid-template-columns: 1fr;
    }

    .prospect-row {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .prospect-row-field,
    .prospect-row-status small {
        display: none;
    }

    .content-card,
    .publication-admin-card {
        grid-template-columns: 1fr;
    }

    .section-heading-row,
    .review-live-proof,
    .review-link-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .portrait-card {
        position: static;
        max-width: 420px;
    }
}

@media (max-width: 640px) {
    .clef-method {
        grid-template-columns: 1fr;
    }

    .cashflow-quadrant {
        grid-template-columns: 1fr;
    }

    .cashflow-quadrant::before,
    .cashflow-quadrant::after {
        display: none;
    }

    .app-sidebar {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .app-sidebar-footer {
        justify-items: stretch;
    }

    .app-topbar,
    .admin-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .app-user-chip {
        width: 100%;
    }

    .app-stats,
    .app-form {
        grid-template-columns: 1fr;
    }

    .app-list-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .booking-actions {
        justify-content: flex-start;
    }

    .header-cta {
        display: none;
    }

    .nav {
        gap: 4px 8px;
        font-size: 13px;
    }

    .nav a {
        min-height: 30px;
        padding: 0 5px;
    }

    h1 {
        font-size: 39px;
    }

    .hero-kicker {
        align-items: flex-start;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .orbit {
        display: none;
    }

    .pulse-widget {
        grid-template-columns: 1fr;
    }

    .quiz-step {
        min-height: 420px;
    }

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

    .floating-cta {
        right: 12px;
        bottom: 14px;
        min-width: 118px;
        padding: 10px 12px;
    }

    .whatsapp-float {
        left: 12px;
        bottom: 14px;
        min-width: 122px;
        padding: 10px 12px;
    }

    .trust-strip,
    .service-grid,
    .proof-grid,
    .pain-grid,
    .journey-grid,
    .tool-grid,
    .reviews-placeholder,
    .lead-form,
    .auth-form,
    .portal-form,
    .popup-form,
    .popup-benefits,
    .admin-stats,
    .admin-filters,
    .appointment-slot-grid,
    .admin-slot-grid,
    .admin-month-grid,
    .admin-day-grid,
    .pipeline-tabs,
    .prospect-board,
    .prospect-insights,
    .prospect-editor,
    .crm-context-strip,
    .crm-record-grid,
    .content-card-grid,
    .resource-grid-app,
    .blog-grid,
    .education-topic-grid,
    .education-faq-grid,
    .service-seo-content,
    .publication-grid,
    .publication-form,
    .client-method-pillars,
    .publication-admin-card {
        grid-template-columns: 1fr;
    }

    .prospect-card-head,
    .prospect-actions {
        flex-direction: column;
    }

    .prospect-row {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .prospect-row-status,
    .prospect-row-button {
        justify-self: start;
    }

    .popup-actions .btn {
        width: 100%;
    }

    .portal-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-actions {
        justify-content: flex-start;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-consent {
        inset: auto 14px 14px 14px;
        width: auto;
    }

    .cookie-consent-card {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
    }
}

@keyframes auroraDrift {
    from {
        transform: translate3d(-4%, -2%, 0) rotate(0deg) scale(1);
    }
    to {
        transform: translate3d(4%, 3%, 0) rotate(14deg) scale(1.06);
    }
}

@keyframes orbitFloat {
    0%, 100% {
        transform: rotate(-12deg) scaleX(1.12) translateY(0);
    }
    50% {
        transform: rotate(-6deg) scaleX(1.08) translateY(-10px);
    }
}

@keyframes signalPulse {
    0%, 100% {
        transform: scaleY(.72);
        opacity: .72;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes quizNudge {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(7px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
